Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 259 for claim (0.1 sec)

  1. helm/minio/values.yaml

    trustedCertsSecret: ""
    
    ## Enable persistence using Persistent Volume Claims
    ## ref: http://kubernetes.io/docs/user-guide/persistent-volumes/
    ##
    persistence:
      enabled: true
      annotations: {}
    
      ## A manually managed Persistent Volume and Claim
      ## Requires persistence.enabled: true
      ## If defined, PVC must be created manually before volume will be bound
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types.go

    	// the full CSI spec. It is the default when CSIDriverSpec.VolumeLifecycleModes is not
    	// set. Such volumes are managed in Kubernetes via the persistent volume
    	// claim mechanism and have a lifecycle that is independent of the pods which
    	// use them.
    	VolumeLifecyclePersistent VolumeLifecycleMode = "Persistent"
    
    	// VolumeLifecycleEphemeral indicates that the driver can be used for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. cmd/auth-handler.go

    		return token
    	}
    	return r.Form.Get(xhttp.AmzSecurityToken)
    }
    
    // Fetch claims in the security token returned by the client, doesn't return
    // errors - upon errors the returned claims map will be empty.
    func mustGetClaimsFromToken(r *http.Request) map[string]interface{} {
    	claims, _ := getClaimsFromToken(getSessionToken(r))
    	return claims
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    		return
    	}
    	key, err := cache.MetaNamespaceKeyFunc(pvc)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("couldn't get key for Persistent Volume Claim %#v: %v", pvc, err))
    		return
    	}
    	logger.V(4).Info("Got event on PVC", "pvc", klog.KObj(pvc))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
      // +optional
      optional string storageClassName = 5;
    
      // volumeMode defines what type of volume is required by the claim.
      // Value of Filesystem is implied when not included in claim spec.
      // +optional
      optional string volumeMode = 6;
    
      // dataSource field can be used to specify either:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. pkg/volume/plugins.go

    	// If you choose not to use it as volume name, ensure uniqueness by either
    	// combining it with your value or create unique values of your own.
    	PVName string
    	// PVC is reference to the claim that lead to provisioning of a new PV.
    	// Provisioners *must* create a PV that would be matched by this PVC,
    	// i.e. with required capacity, accessMode, labels matching PVC.Selector and
    	// so on.
    	PVC *v1.PersistentVolumeClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.gen.go

    	// Description: Virtual service using JWT claim based routing without request authentication.
    	JwtClaimBasedRoutingWithoutRequestAuthN = diag.NewMessageType(diag.Error, "IST0149", "The virtual service uses the JWT claim based routing (key: %s) but found no request authentication for the gateway (%s) pod (%s). The request authentication must first be applied for the gateway pods to validate the JWT token and make the claims available for routing.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - When configuring a JWT authenticator:
      
      If `username.expression` used 'claims.email', then 'claims.email_verified' must have been used in `username.expression` or `extra[*].valueExpression` or `claimValidationRules[*].expression`. An example claim validation rule expression that matches the validation automatically applied when `username.claim` is set to 'email' is 'claims.?email_verified.orValue(true)'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/main.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ld
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/crypto/x509/verify.go

    		if !strings.EqualFold(constraintLabel, domainLabels[i]) {
    			return false, nil
    		}
    	}
    
    	return true, nil
    }
    
    // checkNameConstraints checks that c permits a child certificate to claim the
    // given name, of type nameType. The argument parsedName contains the parsed
    // form of name, suitable for passing to the match function. The total number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top