Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for Clulow (0.24 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go

    	{"net.inet.esp.stats", []_C_int{4, 2, 50, 4}},
    	{"net.inet.esp.udpencap", []_C_int{4, 2, 50, 2}},
    	{"net.inet.esp.udpencap_port", []_C_int{4, 2, 50, 3}},
    	{"net.inet.etherip.allow", []_C_int{4, 2, 97, 1}},
    	{"net.inet.etherip.stats", []_C_int{4, 2, 97, 2}},
    	{"net.inet.gre.allow", []_C_int{4, 2, 47, 1}},
    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go

    	{"net.inet.esp.stats", []_C_int{4, 2, 50, 4}},
    	{"net.inet.esp.udpencap", []_C_int{4, 2, 50, 2}},
    	{"net.inet.esp.udpencap_port", []_C_int{4, 2, 50, 3}},
    	{"net.inet.etherip.allow", []_C_int{4, 2, 97, 1}},
    	{"net.inet.etherip.stats", []_C_int{4, 2, 97, 2}},
    	{"net.inet.gre.allow", []_C_int{4, 2, 47, 1}},
    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/testflag.go

    // Unfortunately for us, we need to do our own flag processing because go test
    // grabs some flags but otherwise its command line is just a holding place for
    // pkg.test's arguments.
    // We allow known flags both before and after the package name list,
    // to allow both
    //
    //	go test fmt -custom-flag-for-fmt-test
    //	go test -x math
    func testFlags(args []string) (packageNames, passToTest []string) {
    	base.SetFromGOFLAGS(&CmdTest.Flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/query.go

    //
    // If path is the path of the main module and the query is "latest",
    // Query returns Target.Version as the version.
    //
    // Query often returns a non-nil *RevInfo with a non-nil error,
    // to provide an info.Origin that can allow the error to be cached.
    func Query(ctx context.Context, path, query, current string, allowed AllowedFunc) (*modfetch.RevInfo, error) {
    	ctx, span := trace.StartSpan(ctx, "modload.Query "+path)
    	defer span.Done()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"net.inet.esp.stats", []_C_int{4, 2, 50, 4}},
    	{"net.inet.esp.udpencap", []_C_int{4, 2, 50, 2}},
    	{"net.inet.esp.udpencap_port", []_C_int{4, 2, 50, 3}},
    	{"net.inet.etherip.allow", []_C_int{4, 2, 97, 1}},
    	{"net.inet.etherip.stats", []_C_int{4, 2, 97, 2}},
    	{"net.inet.gre.allow", []_C_int{4, 2, 47, 1}},
    	{"net.inet.gre.wccp", []_C_int{4, 2, 47, 2}},
    	{"net.inet.icmp.bmcastecho", []_C_int{4, 2, 1, 2}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ld_test.go

    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestUndefinedRelocErrors(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// When external linking, symbols may be defined externally, so we allow
    	// undefined symbols and let external linker resolve. Skip the test.
    	testenv.MustInternalLink(t, false)
    
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/go/script_test.go

    	"LD_LIBRARY_PATH",    // must be preserved on Unix systems to find shared libraries
    	"LIBRARY_PATH",       // allow override of non-standard static library paths
    	"C_INCLUDE_PATH",     // allow override non-standard include paths
    	"CC",                 // don't lose user settings when invoking cgo
    	"GO_TESTING_GOTOOLS", // for gccgo testing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/vendor.go

    		// This should actually be impossible today, because the import map is the
    		// identity function for packages outside of the standard library.
    		//
    		// Part of the purpose of the vendor directory is to allow the packages in
    		// the module to continue to build in GOPATH mode, and GOPATH-mode users
    		// won't know about replacement aliasing. How important is it to maintain
    		// compatibility?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/shell.go

    			os.Remove(dst + "~")
    		}
    	}
    
    	mayberemovefile(dst)
    	df, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)
    	if err != nil && runtime.GOOS == "windows" {
    		// Windows does not allow deletion of a binary file
    		// while it is executing. Try to move it out of the way.
    		// If the move fails, which is likely, we'll try again the
    		// next time we do an install of this binary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/loong64/obj.go

    				q.Spadj = +autosize
    
    				q = c.ctxt.EndUnsafePoint(q, c.newprog, -1)
    
    				// On Linux, in a cgo binary we may get a SIGSETXID signal early on
    				// before the signal stack is set, as glibc doesn't allow us to block
    				// SIGSETXID. So a signal may land on the current stack and clobber
    				// the content below the SP. We store the LR again after the SP is
    				// decremented.
    				q = obj.Appendp(q, newprog)
    				q.As = mov
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
Back to top