Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 234 for myname (0.2 sec)

  1. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    				{ObjectMeta: metav1.ObjectMeta{Name: "node1", Labels: label1}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node2", Labels: label2}},
    				{ObjectMeta: metav1.ObjectMeta{Name: "node3", Labels: label3}},
    			},
    			expectedList: []framework.NodeScore{{Name: "node1", Score: 0}, {Name: "node2", Score: 0}, {Name: "node3", Score: 0}},
    		},
    		{
    			// PreScore returns Skip.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
      // optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
      //
      // Required.
      optional string name = 1;
    
      // Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/types.go

    	// '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]') with an
    	// optional DNS subdomain prefix and '/' (e.g. 'example.com/MyName')
    	//
    	// Required.
    	Name string
    
    	// Expression represents the expression which will be evaluated by CEL. Must evaluate to bool.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    type MutatingWebhook struct {
    	// The name of the admission webhook.
    	// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    	// "imagepolicy" is the name of the webhook, and kubernetes.io is the name
    	// of the organization.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    
    	// ClientConfig defines how to communicate with the hook.
    	// Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/types.go

    type MutatingWebhook struct {
    	// The name of the admission webhook.
    	// Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where
    	// "imagepolicy" is the name of the webhook, and kubernetes.io is the name
    	// of the organization.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    
    	// ClientConfig defines how to communicate with the hook.
    	// Required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers_test.go

    	tests := []struct {
    		kind schema.GroupKind
    		name string
    		want string
    	}{
    		{schema.GroupKind{}, "", ""},
    		{schema.GroupKind{}, "name", "name"},
    		{schema.GroupKind{Kind: "Kind"}, "", "kind/"}, // should not happen in practice
    		{schema.GroupKind{Kind: "Kind"}, "name", "kind/name"},
    		{schema.GroupKind{Group: "group", Kind: "Kind"}, "name", "kind.group/name"},
    	}
    	for _, tt := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emit.go

    		return fmt.Errorf("closing meta data temp file: %v", err)
    	}
    
    	// Temp file has now been flushed and closed. Rename the temp to the
    	// final desired path.
    	if err := os.Rename(s.mftmp, s.mfname); err != nil {
    		return fmt.Errorf("writing %s: rename from %s failed: %v\n", s.mfname, s.mftmp, err)
    	}
    
    	return nil
    }
    
    // needMetaDataFile returns TRUE if we need to emit a meta-data file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation_test.go

    			opts: JobValidationOptions{RequirePrefixedLabels: true},
    		},
    		`spec.podFailurePolicy.rules[0].onPodConditions[0].type: Invalid value: "Invalid Condition Type": name part must consist of alphanumeric characters, '-', '_' or '.', and must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or '123-abc', regex used for validation is '([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9]')`: {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  9. CNAME

    Harshavardhana <******@****.***> 1624037668 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 18 17:34:28 UTC 2021
    - 14 bytes
    - Viewed (0)
  10. src/net/hosts.go

    	hosts.Lock()
    	defer hosts.Unlock()
    	readHosts()
    	if len(hosts.byName) != 0 {
    		if hasUpperCase(host) {
    			lowerHost := []byte(host)
    			lowerASCIIBytes(lowerHost)
    			host = string(lowerHost)
    		}
    		if byName, ok := hosts.byName[absDomainName(host)]; ok {
    			ipsCp := make([]string, len(byName.addrs))
    			copy(ipsCp, byName.addrs)
    			return ipsCp, byName.canonicalName
    		}
    	}
    	return nil, ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 07:21:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top