Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for content_es (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	// expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
    	// CEL expressions have access to the contents of the SubjectAccessReview in v1 version.
    	// If version specified by subjectAccessReviewVersion in the request variable is v1beta1,
    	// the contents would be converted to the v1 version before evaluating the CEL expression.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    					"key": "b",
    					"val": 2,
    				},
    				map[string]interface{}{
    					"key": "a",
    					"val": 1,
    				},
    			}, &mapListSchema),
    			equal: true,
    		},
    		{
    			name: "map lists are not equal if contents differs",
    			lhs: UnstructuredToVal([]interface{}{
    				map[string]interface{}{
    					"key": "a",
    					"val": 1,
    				},
    				map[string]interface{}{
    					"key": "b",
    					"val": 2,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/bootstrap/bootstrap_test.go

    					CertFile: filepath.Join(fileDir, "mycertvalid.crt"),
    					KeyFile:  filepath.Join(fileDir, "mycertvalid.key"),
    				},
    				BearerToken: "",
    			},
    		},
    		{
    			name:           "bootstrap path is set and the contents of kubeconfigPath are valid",
    			kubeconfigPath: filevalid.Name(),
    			bootstrapPath:  fileboot.Name(),
    			certDir:        dir,
    			expectedCertConfig: &restclient.Config{
    				Host: "https://cluster-b.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	NewEmptyInstance() Unstructured
    	// UnstructuredContent returns a non-nil map with this object's contents. Values may be
    	// []interface{}, map[string]interface{}, or any primitive type. Contents are typically serialized to
    	// and from JSON. SetUnstructuredContent should be used to mutate the contents.
    	UnstructuredContent() map[string]interface{}
    	// SetUnstructuredContent updates the object content to match the provided map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    			expected: false,
    		},
    		{
    			name:     "no CurrentContext object",
    			config:   &clientcmdapi.Config{CurrentContext: "kubernetes"},
    			expected: false,
    		},
    		{
    			name: "CurrentContext object with bad contents",
    			config: &clientcmdapi.Config{
    				CurrentContext: "kubernetes",
    				Contexts:       map[string]*clientcmdapi.Context{"NOTkubernetes": {}},
    			},
    			expected: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/users/users_linux.go

    		total, min, max)
    }
    
    // addEntries takes /etc/passwd or /etc/group file content and appends entries to it based
    // on a createEntry function. Returns the updated contents of the file.
    func addEntries(file string, entries []*entry, createEntry func(*entry) string) string {
    	out := file
    	newLines := make([]string, 0, len(entries))
    	for _, e := range entries {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    		errs = append(errs, errors.Wrap(err, "error writing kubelet configuration to file"))
    	}
    
    	if dryRun { // Print what contents would be written
    		err := dryrunutil.PrintDryRunFile(kubeadmconstants.KubeletConfigurationFileName, kubeletDir, kubeadmconstants.KubeletRunDirectory, os.Stdout)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. pkg/kubelet/preemption/preemption_test.go

    		reqs = append(reqs, &admissionRequirement{
    			resourceName: v1.ResourcePods,
    			quantity:     int64(pods),
    		})
    	}
    	return admissionRequirementList(reqs)
    }
    
    // this checks if the lists contents contain all of the same elements.
    // this is not correct if there are duplicate pods in the list.
    // for example: podListEqual([a, a, b], [a, b, b]) will return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 10:04:08 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/apiserver/types.go

    	// expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
    	// CEL expressions have access to the contents of the SubjectAccessReview in v1 version.
    	// If version specified by subjectAccessReviewVersion in the request variable is v1beta1,
    	// the contents would be converted to the v1 version before evaluating the CEL expression.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 00:57:24 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	// remounted to reflect changes in the referencing pod. Atomically updating
    	// volumes, depend on this to update the contents of the volume.
    	// All volume mounting calls should be idempotent so a second mount call for
    	// volumes that do not need to update contents should not fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top