Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of about 10,000 for spring (5.38 sec)

  1. cni/pkg/config/config.go

    	// init container termination message and exit code.
    	SidecarAnnotation  string
    	InitContainerName  string
    	InitTerminationMsg string
    	InitExitCode       int
    
    	// Label and field selectors to select pods managed by race repair.
    	LabelSelectors string
    	FieldSelectors string
    }
    
    func (c InstallConfig) String() string {
    	var b strings.Builder
    	b.WriteString("CNINetDir: " + c.CNINetDir + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. tools/docker-builder/types.go

    	SupportsEmulation bool
    	NoClobber         bool
    	NoCache           bool
    	Targets           []string
    	Variants          []string
    	Architectures     []string
    	BaseVersion       string
    	BaseImageRegistry string
    	ProxyVersion      string
    	ZtunnelVersion    string
    	IstioVersion      string
    	Tags              []string
    	Hubs              []string
    	// Suffix on artifacts, used for multi-arch images where we cannot use manifests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. internal/color/color.go

    		if IsTerminal() {
    			return color.New(color.FgBlack).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    	FgRed = func() func(a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgRed).SprintFunc()
    		}
    		return fmt.Sprint
    	}()
    
    	BgRed = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.BgRed).SprintfFunc()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/go/build/constraint/expr_test.go

    				return
    			}
    			if x.String() != tt.x.String() {
    				t.Errorf("Constraint(%q):\nhave %v\nwant %v", tt.in, x, tt.x)
    			}
    		})
    	}
    }
    
    var plusBuildLinesTests = []struct {
    	in  string
    	out []string
    	err error
    }{
    	{"x", []string{"x"}, nil},
    	{"x && !y", []string{"x,!y"}, nil},
    	{"x || y", []string{"x y"}, nil},
    	{"x && (y || z)", []string{"x", "y z"}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 18 22:36:55 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  5. test/typeswitch1.go

    	*len = byte(x)
    }
    
    func whatis(x interface{}) string {
    	switch xx := x.(type) {
    	default:
    		return fmt.Sprint("default ", xx)
    	case int, int8, int16, int32:
    		return fmt.Sprint("signed ", xx)
    	case int64:
    		return fmt.Sprint("signed64 ", int64(xx))
    	case uint, uint8, uint16, uint32:
    		return fmt.Sprint("unsigned ", xx)
    	case uint64:
    		return fmt.Sprint("unsigned64 ", uint64(xx))
    	case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/universe.go

    	Float32:       {Float32, IsFloat, "float32"},
    	Float64:       {Float64, IsFloat, "float64"},
    	Complex64:     {Complex64, IsComplex, "complex64"},
    	Complex128:    {Complex128, IsComplex, "complex128"},
    	String:        {String, IsString, "string"},
    	UnsafePointer: {UnsafePointer, 0, "Pointer"},
    
    	UntypedBool:    {UntypedBool, IsBoolean | IsUntyped, "untyped bool"},
    	UntypedInt:     {UntypedInt, IsInteger | IsUntyped, "untyped int"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/go/types/universe.go

    	Float32:       {Float32, IsFloat, "float32"},
    	Float64:       {Float64, IsFloat, "float64"},
    	Complex64:     {Complex64, IsComplex, "complex64"},
    	Complex128:    {Complex128, IsComplex, "complex128"},
    	String:        {String, IsString, "string"},
    	UnsafePointer: {UnsafePointer, 0, "Pointer"},
    
    	UntypedBool:    {UntypedBool, IsBoolean | IsUntyped, "untyped bool"},
    	UntypedInt:     {UntypedInt, IsInteger | IsUntyped, "untyped int"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. src/internal/fmtsort/sort_test.go

    type sortTest struct {
    	data  any    // Always a map.
    	print string // Printed result using our custom printer.
    }
    
    var sortTests = []sortTest{
    	{
    		map[int]string{7: "bar", -3: "foo"},
    		"-3:foo 7:bar",
    	},
    	{
    		map[uint8]string{7: "bar", 3: "foo"},
    		"3:foo 7:bar",
    	},
    	{
    		map[string]string{"7": "bar", "3": "foo"},
    		"3:foo 7:bar",
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/config/config_test.go

    				Containers:  []string{"c4", "c5"},
    				Labels: map[string]string{
    					"l4": "lv4",
    					"l5": "lv5",
    				},
    				Annotations: map[string]string{
    					"a4": "av4",
    					"a5": "av5",
    				},
    			},
    		},
    		Exclude: []*SelectionSpec{
    			{
    				Namespaces:  []string{"ns7", "ns8"},
    				Deployments: []string{"d7", "d8"},
    				Pods:        []string{"p7", "p8"},
    				Containers:  []string{"c7", "c8"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 15 15:19:50 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/helpers_test.go

    	tests := []struct {
    		obj   *ObjectMeta
    		label string
    		value string
    		want  map[string]string
    	}{
    		{
    			obj:   &ObjectMeta{},
    			label: "foo",
    			value: "bar",
    			want:  map[string]string{"foo": "bar"},
    		},
    		{
    			obj:   &ObjectMeta{Labels: map[string]string{"foo": "bar"}},
    			label: "foo",
    			value: "baz",
    			want:  map[string]string{"foo": "baz"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top