Your ROOT_URL in app.ini is http://git.slaventius.ru/ but you are visiting http://37.143.12.169/test3k/authDB/blame/commit/b80d509593fa578ce7ad621346a824143986966b/vendor/golang.org/x/sys/unix/ptrace_darwin.go You should set ROOT_URL correctly, otherwise the web may not work correctly.

13 lines
337 B

2 years ago
// Copyright 2020 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build darwin && !ios
// +build darwin,!ios
package unix
func ptrace(request int, pid int, addr uintptr, data uintptr) error {
return ptrace1(request, pid, addr, data)
}