Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for Boos (0.13 sec)

  1. src/internal/platform/supported.go

    }
    
    // CgoSupported reports whether goos/goarch supports cgo.
    func CgoSupported(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].CgoSupported
    }
    
    // FirstClass reports whether goos/goarch is considered a “first class” port.
    // (See https://go.dev/wiki/PortingPolicy#first-class-ports.)
    func FirstClass(goos, goarch string) bool {
    	return distInfo[OSArch{goos, goarch}].FirstClass
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/env_changed.txt

    stdout '"GO111MODULE": "auto"'
    stdout '"CGO_CFLAGS": "nodefault"'
    stdout '"CGO_CPPFLAGS": "nodefault"'
    
    [GOOS:windows] env GOOS=linux
    [!GOOS:windows] env GOOS=windows
    [GOARCH:amd64] env GOARCH=arm64
    [!GOARCH:amd64] env GOARCH=amd64
    
    go env -changed GOOS
    [GOOS:windows] stdout 'set GOOS=linux'
    [!GOOS:windows] stdout 'GOOS=''windows'''
    go env -changed GOARCH
    [GOARCH:amd64] stdout 'set GOARCH=arm64|GOARCH=''arm64'''
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:49:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    			validateError:   okFn,
    		},
    	}
    
    	for _, test := range tests {
    		t.Run(test.name, func(t *testing.T) {
    			crd := &apiextensions.CustomResourceDefinition{
    				ObjectMeta: metav1.ObjectMeta{Name: "foos." + test.group, Annotations: map[string]string{v1beta1.KubeAPIApprovedAnnotation: test.annotationValue}, ResourceVersion: "1"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group:    test.group,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	case "gc", "cmd_go_bootstrap", "go1.1":
    		return true
    	case "linux":
    		return goos == "linux" || goos == "android"
    	case "solaris":
    		return goos == "solaris" || goos == "illumos"
    	case "darwin":
    		return goos == "darwin" || goos == "ios"
    	case goos, goarch:
    		return true
    	case "unix":
    		return unixOS[goos]
    	default:
    		return false
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "delete",
    				APIGroup: "foo.bar",
    				Resource: "foos",
    			},
    			maxSeats:                  10,
    			initialSeatsExpected:      1,
    			finalSeatsExpected:        0,
    			additionalLatencyExpected: 0,
    		},
    		{
    			name:       "request verb is delete, watches registered",
    			requestURI: "http://server/apis/foo.bar/v1/foos/myfoo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. pkg/volume/util/util_test.go

    	}
    }
    
    func TestIsWindowsUNCPath(t *testing.T) {
    	tests := []struct {
    		goos      string
    		path      string
    		isUNCPath bool
    	}{
    		{
    			goos:      "linux",
    			path:      `/usr/bin`,
    			isUNCPath: false,
    		},
    		{
    			goos:      "linux",
    			path:      `\\.\pipe\foo`,
    			isUNCPath: false,
    		},
    		{
    			goos:      "windows",
    			path:      `C:\foo`,
    			isUNCPath: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testsanitizers/libfuzzer_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)
    	}
    	if !libFuzzerSupported(goos, goarch) {
    		t.Skipf("skipping on %s/%s; libfuzzer option is not supported.", goos, goarch)
    	}
    	config := configure("fuzzer")
    	config.skipIfCSanitizerBroken(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 00:12:03 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/telemetrystats/version_unix.go

    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-uname-error", runtime.GOOS))
    		return
    	}
    	major, minor, ok := majorMinor(convert(v.Release[:]))
    	if runtime.GOOS == "aix" {
    		major, minor, ok = convert(v.Version[:]), convert(v.Release[:]), true
    	}
    	if !ok {
    		telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:unknown-bad-format", runtime.GOOS))
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cfg/cfg.go

    		// Note that ctxt.GOOS/GOARCH are derived from the preference list
    		// (1) environment, (2) go/env file, (3) runtime constants,
    		// while go/build.Default.GOOS/GOARCH are derived from the preference list
    		// (1) environment, (2) runtime constants.
    		//
    		// We know ctxt.GOOS/GOARCH == runtime.GOOS/GOARCH;
    		// no matter how that happened, go/build.Default will make the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/cmd/distpack/pack.go

    	if goroot == "" {
    		log.Fatalf("missing $GOROOT")
    	}
    	gohostos = runtime.GOOS
    	gohostarch = runtime.GOARCH
    	goos = os.Getenv("GOOS")
    	if goos == "" {
    		goos = gohostos
    	}
    	goarch = os.Getenv("GOARCH")
    	if goarch == "" {
    		goarch = gohostarch
    	}
    	goosUnderGoarch := goos + "_" + goarch
    	goosDashGoarch := goos + "-" + goarch
    	exe := ""
    	if goos == "windows" {
    		exe = ".exe"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top