Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for content_es (0.09 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/util/sets/int32.go

    func (s1 Int32) Equal(s2 Int32) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int32 slice.
    func (s Int32) List() []int32 {
    	return List(cast(s))
    }
    
    // UnsortedList returns the slice with contents in random order.
    func (s Int32) UnsortedList() []int32 {
    	return cast(s).UnsortedList()
    }
    
    // PopAny returns a single element from the set.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream.go

    	protocols        map[string]ReaderProtocolConfig
    	selectedProtocol string
    
    	handleCrash func(additionalHandlers ...func(interface{})) // overridable for testing
    }
    
    // NewReader creates a WebSocket pipe that will copy the contents of r to a provided
    // WebSocket connection. If ping is true, a zero length message will be sent to the client
    // before the stream begins reading.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 5.2K 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/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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    	Index = "i"
    
    	// Key indicates that the content of this path element is a key value map
    	Key = "k"
    
    	// Separator separates the type of a path element from the contents
    	Separator = ":"
    )
    
    // NewPathElement parses a serialized path element
    func NewPathElement(s string) (fieldpath.PathElement, error) {
    	split := strings.SplitN(s, Separator, 2)
    	if len(split) < 2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K 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