Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 651 for Boos (0.16 sec)

  1. src/cmd/go/testdata/script/build_unsupported_goos.txt

    [compiler:gccgo] skip # gccgo assumes cross-compilation is always possible
    
    env GOOS=windwos # intentional misspelling of windows
    
    ! go build -n exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 18:25:35 UTC 2023
    - 191 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    	runtime.GOOS == "openbsd" || // #60614
    	runtime.GOOS == "solaris" || // #60968 #60970
    	runtime.GOOS == "android" || // #60967
    	runtime.GOOS == "illumos" || // #65544
    	// These platforms fundamentally can't be supported:
    	runtime.GOOS == "js" || // #60971
    	runtime.GOOS == "wasip1" || // #60971
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	foos, err := fooClient.List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, foo := range foos.Items {
    		mustExist(foo.Object, [][]string{{"spec", "a"}, {"spec", "b"}, {"spec", "c"}, {"status", "a"}, {"status", "b"}, {"status", "c"}})
    	}
    
    	t.Logf("verify LIST from cache sees 'c' in both status and spec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testsanitizers/tsan_test.go

    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    
    	goos, err := goEnv("GOOS")
    	if err != nil {
    		t.Fatal(err)
    	}
    	goarch, err := goEnv("GOARCH")
    	if err != nil {
    		t.Fatal(err)
    	}
    	// The msan tests require support for the -msan option.
    	if !compilerRequiredTsanVersion(goos, goarch) {
    		t.Skipf("skipping on %s/%s; compiler version for -tsan option is too old.", goos, goarch)
    	}
    
    	t.Parallel()
    	requireOvercommit(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. src/net/platform_test.go

    	case "ip", "ip4", "ip6":
    		switch runtime.GOOS {
    		case "plan9":
    			return false
    		default:
    			if os.Getuid() != 0 {
    				return false
    			}
    		}
    	case "unix", "unixgram":
    		switch runtime.GOOS {
    		case "android", "ios", "plan9", "windows":
    			return false
    		case "aix":
    			return unixEnabledOnAIX
    		}
    	case "unixpacket":
    		switch runtime.GOOS {
    		case "aix", "android", "darwin", "ios", "plan9", "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/tool/tool.go

    	for _, p := range platform.List {
    		broken := platform.Broken(p.GOOS, p.GOARCH)
    		if broken && !*brokenFlag {
    			continue
    		}
    		if *jsonFlag {
    			results = append(results, jsonResult{
    				GOOS:         p.GOOS,
    				GOARCH:       p.GOARCH,
    				CgoSupported: platform.CgoSupported(p.GOOS, p.GOARCH),
    				FirstClass:   platform.FirstClass(p.GOOS, p.GOARCH),
    				Broken:       broken,
    			})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/goflags.txt

    go list asdfasdfasdf  # succeeds because of -e
    go list runtime
    stdout '[\\/]runtime$'
    
    env GOFLAGS=-race OLDGOARCH=$GOARCH OLDGOOS=$GOOS GOARCH=386 GOOS=linux
    ! go list runtime
    stderr 'race is not supported on linux/386'
    
    env GOARCH=$OLDGOARCH GOOS=$OLDGOOS
    
    # go env succeeds even though -f={{.Dir}} is inappropriate
    go env
    
    # bad flags are diagnosed
    env GOFLAGS=-typoflag
    ! go list runtime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:47:27 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. src/net/udpsock_test.go

    			if nerr, ok := err.(Error); (!ok || !nerr.Timeout()) && runtime.GOOS != "windows" { // Windows returns WSAEMSGSIZE
    				t.Fatal(err)
    			}
    		}
    	}
    }
    
    func TestUDPReadSizeError(t *testing.T) {
    	switch runtime.GOOS {
    	case "plan9":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    	if !testableNetwork("udp") {
    		t.Skipf("skipping: udp not available")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/list/context.go

    	InstallSuffix string   `json:",omitempty"` // suffix to use in the name of the install dir
    }
    
    func newContext(c *build.Context) *Context {
    	return &Context{
    		GOARCH:        c.GOARCH,
    		GOOS:          c.GOOS,
    		GOROOT:        c.GOROOT,
    		GOPATH:        c.GOPATH,
    		CgoEnabled:    c.CgoEnabled,
    		UseAllFiles:   c.UseAllFiles,
    		Compiler:      c.Compiler,
    		BuildTags:     c.BuildTags,
    		ToolTags:      c.ToolTags,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 21:56:16 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/nettest/nettest.go

    	case "ip+nopriv":
    		// This is an internal network name for testing on the
    		// package net of the standard library.
    		switch runtime.GOOS {
    		case "android", "fuchsia", "hurd", "ios", "js", "nacl", "plan9", "wasip1", "windows":
    			return false
    		}
    	case "ip", "ip4", "ip6":
    		switch runtime.GOOS {
    		case "fuchsia", "hurd", "js", "nacl", "plan9", "wasip1":
    			return false
    		default:
    			if os.Getuid() != 0 {
    				return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top