Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for nameslice (0.38 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                  namespace:
                                    description: "Namespace is the namespace of the referenced
                                      object. When unspecified, the local namespace is
                                      inferred. \n Note that when a namespace different
                                      than the local namespace is specified, a ReferenceGrant
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// Kind is the type of resource being referenced
    	Kind string
    	// Name is the name of resource being referenced
    	Name string
    	// Namespace is the namespace of resource being referenced
    	// Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                                  type: string
                                namespace:
                                  description: Namespace specifies the namespace of the
                                    given Service. If left empty, the rule will match
                                    within this policy's namespace.
                                  type: string
                              type: object
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // in any namespace
    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
      // namespace defines the space within which the secret name must be unique.
      // +optional
      optional string namespace = 2;
    }
    
    // Adapts a Secret into a volume.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"kind":      "Kind is the type of resource being referenced",
    	"name":      "Name is the name of resource being referenced",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    // in any namespace
    // +structType=atomic
    type SecretReference struct {
    	// name is unique within a namespace to reference a secret resource.
    	// +optional
    	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
    	// namespace defines the space within which the secret name must be unique.
    	// +optional
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

    // in any namespace
    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
      // namespace defines the space within which the secret name must be unique.
      // +optional
      optional string namespace = 2;
    }
    
    // Adapts a Secret into a volume.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. pkg/proxy/iptables/proxier_test.go

    		}
    		prevProbability = currProbability
    	}
    }
    
    func makeTestService(namespace, name string, svcFunc func(*v1.Service)) *v1.Service {
    	svc := &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Namespace:   namespace,
    			Annotations: map[string]string{},
    		},
    		Spec:   v1.ServiceSpec{},
    		Status: v1.ServiceStatus{},
    	}
    	svcFunc(svc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    	allErrs := field.ErrorList{}
    	// validate target configmap namespace
    	if source.Namespace == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("namespace"), "namespace must be set"))
    	} else {
    		for _, msg := range ValidateNameFunc(ValidateNamespaceName)(source.Namespace, false) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("namespace"), source.Namespace, msg))
    		}
    	}
    	// validate target configmap name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top