Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 74 for GenerateName (0.46 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
              "items": { "type": "string", "default": "" },
              "x-kubernetes-patch-strategy": "merge"
            },
            "generateName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. pkg/controller/endpointslice/endpointslice_controller_test.go

    		endpointSlice := action.(k8stesting.CreateAction).GetObject().(*discovery.EndpointSlice)
    
    		if endpointSlice.ObjectMeta.GenerateName != "" {
    			endpointSlice.ObjectMeta.Name = fmt.Sprintf("%s-%s", endpointSlice.ObjectMeta.GenerateName, rand.String(8))
    			endpointSlice.ObjectMeta.GenerateName = ""
    		}
    		endpointSlice.Generation = 1
    		esIndexer.Add(endpointSlice)
    
    		return false, endpointSlice, nil
    	}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	//
    	// Applied only if Name is not specified.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency
    	// +optional
    	GenerateName string `json:"generateName,omitempty" protobuf:"bytes,2,opt,name=generateName"`
    
    	// Namespace defines the space within which each name must be unique. An empty namespace is
    	// equivalent to the "default" namespace, but "default" is the canonical representation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  4. pkg/controller/job/job_controller.go

    				if len(indexesToAdd) > 0 {
    					completionIndex = indexesToAdd[0]
    					indexesToAdd = indexesToAdd[1:]
    				}
    				go func() {
    					template := podTemplate
    					generateName := ""
    					if completionIndex != unknownCompletionIndex {
    						template = podTemplate.DeepCopy()
    						addCompletionIndexAnnotation(template, completionIndex)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                },
                "type": "array",
                "x-kubernetes-list-type": "set",
                "x-kubernetes-patch-strategy": "merge"
              },
              "generateName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"generateName":               "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // definition.
      // Cannot be updated.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      // +optional
      optional string name = 1;
    
      // GenerateName is an optional prefix, used by the server, to generate a unique
      // name ONLY IF the Name field has not been provided.
      // If this field is used, the name returned to the client will be different
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // definition.
      // Cannot be updated.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      // +optional
      optional string name = 1;
    
      // GenerateName is an optional prefix, used by the server, to generate a unique
      // name ONLY IF the Name field has not been provided.
      // If this field is used, the name returned to the client will be different
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
      //   request resource.
      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object. No other metadata properties are accessible.
      //
      // Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/types.go

    	// - 'authorizer.requestResource' - A CEL ResourceCheck constructed from the 'authorizer' and configured with the
    	//   request resource.
    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object. No other metadata properties are accessible.
    	//
    	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
Back to top