Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for content_es (0.12 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. staging/src/k8s.io/api/discovery/v1/types.go

    	// AddressTypeFQDN represents a FQDN.
    	AddressTypeFQDN = AddressType("FQDN")
    )
    
    // Endpoint represents a single logical "backend" implementing a service.
    type Endpoint struct {
    	// 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 May 23 17:42:49 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. 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)
Back to top