Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for EXISTS (0.11 sec)

  1. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "type": "boolean"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "type": "string"
              },
              "values": {
                "description": "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    		if err != nil {
    			t.Error(err)
    		}
    		if len(pods) != 3 {
    			t.Errorf("Expected 3 pods, got %d", len(pods))
    		}
    		for _, pod := range pods {
    			podIndexFromLabel, exists := pod.Labels[apps.PodIndexLabel]
    			if !exists {
    				t.Errorf("Missing pod index label: %s", apps.PodIndexLabel)
    				continue
    			}
    			podIndexFromName := strconv.Itoa(getOrdinal(pod))
    			if podIndexFromLabel != podIndexFromName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

                ],
                "description": "targetRef is a reference to a Kubernetes object that represents this endpoint."
              },
              "zone": {
                "description": "zone is the name of the Zone this endpoint exists in.",
                "type": "string"
              }
            },
            "required": [
              "addresses"
            ],
            "type": "object"
          },
          "io.k8s.api.discovery.v1.EndpointConditions": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		"param1":  "description for param1",
    		"param2":  "description for param2",
    		"atAPath": "",
    	}
    	for _, p := range route.ParameterDocs {
    		data := p.Data()
    		if desc, exists := expectedParams[data.Name]; exists {
    			if desc != data.Description {
    				t.Errorf("unexpected description for parameter %s: %s\n", data.Name, data.Description)
    			}
    			delete(expectedParams, data.Name)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	return path
    
    HaveGoMod:
    	// This import is in a tree with a go.mod.
    	// Allow it to refer to code in GOPATH/src/x/y/z as x/y/v2/z
    	// if GOPATH/src/x/y/go.mod says module "x/y/v2",
    
    	// If x/y/v2/z exists, use it unmodified.
    	if bp, _ := cfg.BuildContext.Import(path, "", build.IgnoreVendor); bp.Dir != "" {
    		return path
    	}
    
    	// Otherwise look for a go.mod supplying a version element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			expectedTopologyHints: nil,
    			topologyHint:          &topologymanager.TopologyHint{},
    		},
    		{
    			description: "should do nothing once container already exists under the state file",
    			assignments: state.ContainerMemoryAssignments{
    				"pod1": map[string][]state.Block{
    					"container1": {
    						{
    							NUMAAffinity: []int{0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          // and internal nodes redundant, and so we do not import them. The TF
          // inliner however assumes no such dependency between function args and
          // internal nodes exists, unless explicitly stated. Since we drop control
          // dependencies here, it leads to loss of information. If the function is
          // inlined later, the inliner would not know of these explicit control
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/framework_test.go

    				PostBind: config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    			},
    		},
    		{
    			name: "Reorder MultiPoint plugins (specified extension only takes precedence when it exists in MultiPoint)",
    			plugins: &config.Plugins{
    				MultiPoint: config.PluginSet{
    					Enabled: []config.Plugin{
    						{Name: testPlugin},
    						{Name: scorePlugin1},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
Back to top