Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 157 for createFn (0.52 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    		return provisionerName, err
    	}
    	claim = newClaim
    	msg := fmt.Sprintf("Waiting for a volume to be created either by the external provisioner '%s' "+
    		"or manually by the system administrator. If volume creation is delayed, please verify that "+
    		"the provisioner is running and correctly registered.", provisionerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    		nodeName,
    		nodeIPs)
    	if err != nil {
    		return fmt.Errorf("failed to create kubelet: %w", err)
    	}
    
    	// NewMainKubelet should have set up a pod source config if one didn't exist
    	// when the builder was run. This is just a precaution.
    	if kubeDeps.PodConfig == nil {
    		return fmt.Errorf("failed to create kubelet, pod source config was nil")
    	}
    	podCfg := kubeDeps.PodConfig
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    			tcfg, _, _ := globalBucketMetadataSys.GetTaggingConfig(bucket.Name)
    
    			acctInfo.Buckets = append(acctInfo.Buckets, madmin.BucketAccessInfo{
    				Name:                    bucket.Name,
    				Created:                 bucket.Created,
    				Size:                    size,
    				Objects:                 objectsCount,
    				ObjectSizesHistogram:    objectsHist,
    				ObjectVersionsHistogram: versionsHist,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"name":                       "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overvi...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // users must create.
    message ObjectMeta {
      // Name must be unique within a namespace. Is required when creating resources, although
      // some resources may allow a client to request the generation of an appropriate name
      // automatically. Name is primarily intended for creation idempotence and configuration
      // definition.
      // Cannot be updated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // users must create.
    message ObjectMeta {
      // Name must be unique within a namespace. Is required when creating resources, although
      // some resources may allow a client to request the generation of an appropriate name
      // automatically. Name is primarily intended for creation idempotence and configuration
      // definition.
      // Cannot be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  7. src/runtime/map.go

    func makemap_small() *hmap {
    	h := new(hmap)
    	h.hash0 = uint32(rand())
    	return h
    }
    
    // makemap implements Go map creation for make(map[k]v, hint).
    // If the compiler has determined that the map or the first bucket
    // can be created on the stack, h and/or bucket may be non-nil.
    // If h != nil, the map can be created directly in h.
    // If h.buckets != nil, bucket pointed to can be used as the first bucket.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    		},
    	}
    
    	created, err := apiExtensionClient.ApiextensionsV1().CustomResourceDefinitions().Create(context.TODO(), myCRD, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	if created.Spec.Versions[0].Schema.OpenAPIV3Schema.Properties["spec"].Properties["field"].XValidations[0].OptionalOldSelf != nil {
    		t.Errorf("Expected OpeiontalOldSelf field to be dropped for create when feature gate is disabled")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    				fmt.Sprintf("must include at least one of %v",
    					strings.Join(AcceptedAdmissionReviewVersions, ", "))))
    		}
    	}
    	return allErrors
    }
    
    // ValidateValidatingWebhookConfiguration validates a webhook before creation.
    func ValidateValidatingWebhookConfiguration(e *admissionregistration.ValidatingWebhookConfiguration) field.ErrorList {
    	return validateValidatingWebhookConfiguration(e, validationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    // Only a limited number of callbacks may be created in a single Go process, and any memory allocated
    // for these callbacks is never released.
    // Between NewCallback and NewCallbackCDecl, at least 1024 callbacks can always be created.
    func NewCallback(fn any) uintptr {
    	return compileCallback(fn, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top