Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for content_es (0.13 sec)

  1. pkg/proxy/util/linebuffer.go

    	// WriteBytes writes bytes to the buffer, and terminates with newline.
    	WriteBytes(bytes []byte)
    
    	// Reset clears the buffer
    	Reset()
    
    	// Bytes returns the contents of the buffer as a []byte
    	Bytes() []byte
    
    	// String returns the contents of the buffer as a string
    	String() string
    
    	// Lines returns the number of lines in the buffer. Note that more precisely, this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/diff_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/util/output"
    )
    
    func createTestRunDiffFile(contents []byte) (string, error) {
    	file, err := os.CreateTemp("", "kubeadm-upgrade-diff-config-*.yaml")
    	if err != nil {
    		return "", errors.Wrap(err, "failed to create temporary test file")
    	}
    	if _, err := file.Write(contents); err != nil {
    		return "", errors.Wrap(err, "failed to write to temporary test file")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 04:08:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. hack/verify-vendor.sh

      else
        echo "Removing ${_tmpdir}"
        rm -rf "${_tmpdir}"
      fi
    }
    kube::util::trap_add cleanup EXIT
    
    # Copy the contents of the kube directory into the nice clean place (which is NOT shaped like a GOPATH)
    _kubetmp="${_tmpdir}/kubernetes"
    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/kubelet_test.go

    	"k8s.io/kubernetes/cmd/kubeadm/app/constants"
    )
    
    func testKubeletConfigMap(contents string) *v1.ConfigMap {
    	return &v1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      constants.KubeletBaseConfigurationConfigMap,
    			Namespace: metav1.NamespaceSystem,
    		},
    		Data: map[string]string{
    			constants.KubeletBaseConfigurationConfigMapKey: dedent.Dedent(contents),
    		},
    	}
    }
    
    func TestKubeletDefault(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/test/cmd/util.go

    	for _, subCmd := range subCmds {
    		if subCmd.Name() == name {
    			return subCmd
    		}
    	}
    	t.Fatalf("Unable to find sub command %s", name)
    
    	return nil
    }
    
    // getKubeadmPath returns the contents of the environment variable KUBEADM_PATH
    // or panics if it's empty
    func getKubeadmPath() string {
    	kubeadmPath := os.Getenv("KUBEADM_PATH")
    	if len(kubeadmPath) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1/generated.proto

    option go_package = "k8s.io/api/discovery/v1";
    
    // Endpoint represents a single logical "backend" implementing a service.
    message Endpoint {
      // addresses of this endpoint. The contents of this field are interpreted
      // according to the corresponding EndpointSlice addressType field. Consumers
      // must handle different types of addresses in the context of their own
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top