Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 498 for String3 (0.13 sec)

  1. staging/src/k8s.io/api/rbac/v1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	repeatedStringForItems := "[]ClusterRoleBinding{"
    	for _, f := range this.Items {
    		repeatedStringForItems += strings.Replace(strings.Replace(f.String(), "ClusterRoleBinding", "ClusterRoleBinding", 1), `&`, ``, 1) + ","
    	}
    	repeatedStringForItems += "}"
    	s := strings.Join([]string{`&ClusterRoleBindingList{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/BUILD

            "//tensorflow/compiler/tf2xla/kernels:xla_ops",
            "//tensorflow/core:core_cpu_internal",
            "//tensorflow/core:lib",
            "@com_google_absl//absl/memory",
            "@com_google_absl//absl/strings",
            "@local_xla//xla/stream_executor:platform_manager",
            "@local_xla//xla/stream_executor/gpu:gpu_init",
        ] + if_libtpu(
            if_false = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    	string(admissionregistration.SideEffectClassNoneOnDryRun),
    )
    
    var noSideEffectClasses = sets.NewString(
    	string(admissionregistration.SideEffectClassNone),
    	string(admissionregistration.SideEffectClassNoneOnDryRun),
    )
    
    var supportedOperations = sets.NewString(
    	string(admissionregistration.OperationAll),
    	string(admissionregistration.Create),
    	string(admissionregistration.Update),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    	ResponseHeadersToAdd    []*core.HeaderValueOption
    	RequestHeadersToRemove  []string
    	ResponseHeadersToRemove []string
    	Authority               string
    }
    
    // isInternalHeader returns true if a header refers to an internal value that cannot be modified by Envoy
    func isInternalHeader(headerKey string) bool {
    	return strings.HasPrefix(headerKey, ":") || strings.EqualFold(headerKey, "host")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    }
    func (this *Carp) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Carp{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    		`Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "CarpSpec", "CarpSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    }
    func (this *Pod) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Pod{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    		`Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "PodSpec", "PodSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/core:framework",
            "@com_google_absl//absl/container:flat_hash_map",
            "@com_google_absl//absl/container:flat_hash_set",
            "@com_google_absl//absl/strings",
            "@eigen_archive//:eigen3",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:ArithDialect",
            "@llvm-project//mlir:DerivedAttributeOpInterface",
            "@llvm-project//mlir:Dialect",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof_test.go

    	tests := []struct {
    		profiler string
    		prefix   []string
    	}{
    		{"heap", []string{"runtime/pprof.allocDeep"}},
    		{"block", []string{"runtime.chanrecv1", "runtime/pprof.blockChanDeep"}},
    		{"mutex", []string{"sync.(*Mutex).Unlock", "runtime/pprof.blockMutexDeep"}},
    		{"goroutine", []string{"runtime.gopark", "runtime.chanrecv", "runtime.chanrecv1", "runtime/pprof.goroutineDeep"}},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	expectErr := func(err error) bool { return err != nil }
    	testCases := map[string]struct {
    		args        []string
    		subresource string
    		errFn       func(error) bool
    	}{
    		"valid": {
    			args:  []string{"pods/foo"},
    			errFn: expectNoErr,
    		},
    		"valid multiple with name indirection": {
    			args:  []string{"pods/foo", "pod/bar"},
    			errFn: expectNoErr,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  10. tests/migrate_test.go

    		ID  uint
    		F1  string
    		F2  string
    		F3  string
    		F4  string
    		F5  string
    		F6  string
    		F7  string
    		F8  string
    		F9  string
    		F10 string
    		F11 string
    		F12 string
    		F13 string
    		F14 string
    		F15 string
    		F16 string
    		F17 string
    		F18 string
    		F19 string
    		F20 string
    		F21 string
    		F22 string
    		F23 string
    		F24 string
    		F25 string
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top