Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Stateless (0.17 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/map.go

    	Supported language.Coverage
    
    	// We keep the following lists separate, instead of having a single per-
    	// language struct, to give the compiler a chance to remove unused code.
    
    	// Some uppercase mappers are stateless, so we can precompute the
    	// Transformers and save a bit on runtime allocations.
    	upperFunc = []struct {
    		upper mapFunc
    		span  spanFunc
    	}{
    		{nil, nil},                  // und
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	if err != nil {
    		return newClaim, err
    	}
    	_, err = ctrl.storeClaimUpdate(logger, newClaim)
    	if err != nil {
    		return newClaim, err
    	}
    	return newClaim, nil
    }
    
    // Stateless functions
    
    func getClaimStatusForLogging(claim *v1.PersistentVolumeClaim) string {
    	bound := metav1.HasAnnotation(claim.ObjectMeta, storagehelpers.AnnBindCompleted)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  3. pkg/features/kube_features.go

    	// owner: @rata, @giuseppe
    	// kep: https://kep.k8s.io/127
    	// alpha: v1.25
    	// beta: v1.30
    	//
    	// Enables user namespace support for stateless pods.
    	UserNamespacesSupport featuregate.Feature = "UserNamespacesSupport"
    
    	// owner: @mattcarry, @sunnylovestiramisu
    	// kep: https://kep.k8s.io/3751
    	// alpha: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top