Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 133 for index (0.12 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    	result.ReferencedNamespaceKeys = nsReferences
    	result.ResourceReferences = ctx.resourceReferences
    	return result
    }
    
    // convertReferencePolicies extracts all ReferencePolicy into an easily accessibly index.
    func convertReferencePolicies(r GatewayResources) AllowedReferences {
    	res := map[Reference]map[Reference]*Grants{}
    	type namespacedGrant struct {
    		Namespace string
    		Grant     *k8sbeta.ReferenceGrantSpec
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			wantResult: framework.NewPostFilterResultWithNominatedNode("node2"),
    			wantStatus: framework.NewStatus(framework.Success),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			// index the potential victim pods in the fake client so that the victims deletion logic does not fail
    			podItems := []v1.Pod{}
    			for _, pod := range tt.pods {
    				podItems = append(podItems, *pod)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    				return fmt.Errorf("failed to validate kubelet configuration, error: %w, path: %s", err, kubeletConfig)
    			}
    
    			if (kubeletConfig.KubeletCgroups != "" && kubeletConfig.KubeReservedCgroup != "") && (strings.Index(kubeletConfig.KubeletCgroups, kubeletConfig.KubeReservedCgroup) != 0) {
    				klog.InfoS("unsupported configuration:KubeletCgroups is not within KubeReservedCgroup")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    // 'f:<name>', where <name> is the name of a field in a struct, or key in a map
    // 'v:<value>', where <value> is the exact json formatted value of a list item
    // 'i:<index>', where <index> is position of a item in a list
    // 'k:<keys>', where <keys> is a map of  a list item's key fields to their unique values
    // If a key maps to an empty Fields value, the field that key represents is part of the set.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				continue
    			}
    		}
    	}
    }
    
    // findNextInitContainerToRun returns the status of the last failed container, the
    // index of next init container to start, or done if there are no further init containers.
    // Status is only returned if an init container is failed, in which case next will
    // point to the current container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    	}
    
    	setupCmd = func(cmd *exec.Cmd) {
    		setDir(cmd, filepath.Join(goroot, "src"))
    		if len(opts.env) != 0 {
    			for _, kv := range opts.env {
    				if i := strings.Index(kv, "="); i < 0 {
    					unsetEnv(cmd, kv[:len(kv)-1])
    				} else {
    					setEnv(cmd, kv[:i], kv[i+1:])
    				}
    			}
    		}
    		if runOnHost {
    			setEnv(cmd, "GOARCH", gohostarch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/debug/elf/file_test.go

    	//   Number of program headers:         0
    	//   Size of section headers:           40 (bytes)
    	//   Number of section headers:         0 (65298)
    	//   Section header string table index: 65535 (65297)
    	//
    	// $readelf -S y.o
    	// There are 65298 section headers, starting at offset 0x2dd44c:
    	// Section Headers:
    	//   [Nr]    Name              Type            Addr     Off    Size   ES Flg Lk Inf Al
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy_test.go

    	tcs := []struct {
    		name          string
    		indexFunc     cache.IndexFunc
    		pod           interface{}
    		expectedValue string
    		expectedErr   error
    	}{
    		{
    			name:      "node name index",
    			indexFunc: NodeNameIndexFunc,
    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					NodeName: "test-pod",
    				},
    			},
    			expectedValue: "test-pod",
    			expectedErr:   nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	if indexers == nil {
    		return nil
    	}
    	for indexName := range *indexers {
    		if len(indexName) <= 2 || (indexName[:2] != "l:" && indexName[:2] != "f:") {
    			return fmt.Errorf("index must prefix with \"l:\" or \"f:\"")
    		}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// - message: The validation failure message string
    	// - policy: The resource name of the ValidatingAdmissionPolicy
    	// - binding: The resource name of the ValidatingAdmissionPolicyBinding
    	// - expressionIndex: The index of the failed validations in the ValidatingAdmissionPolicy
    	// - validationActions: The enforcement actions enacted for the validation failure
    	// Example audit annotation:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top