Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 259 for claim (0.04 sec)

  1. pkg/config/security/security.go

    	attrRequestPresenter = "request.auth.presenter" // authorized presenter of the credential.
    	attrRequestClaims    = "request.auth.claims"    // claim name is surrounded by brackets, e.g. "request.auth.claims[iss]".
    	attrDestIP           = "destination.ip"         // supports both single ip and cidr, e.g. "10.1.2.3" or "10.1.0.0/16".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// status field of the claim.
    	// +optional
    	Resources VolumeResourceRequirements
    	// VolumeName is the binding reference to the PersistentVolume backing this
    	// claim. When set to non-empty value Selector is not evaluated
    	// +optional
    	VolumeName string
    	// Name of the StorageClass required by the claim.
    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. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
          cross-claim or counterclaim in a lawsuit) alleging that the Work
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. internal/auth/credentials.go

    	return jwt.SignedString([]byte(tokenSecret))
    }
    
    // ExtractClaims extracts JWT claims from a security token using a secret key
    func ExtractClaims(token, secretKey string) (*jwt.MapClaims, error) {
    	if token == "" || secretKey == "" {
    		return nil, errors.New("invalid argument")
    	}
    
    	claims := jwt.NewMapClaims()
    	stsTokenCallback := func(claims *jwt.MapClaims) ([]byte, error) {
    		return []byte(secretKey), nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. pkg/volume/fc/fc.go

    	// fc volumes used directly in a pod have a ReadOnly flag set by the pod author.
    	// fc volumes used as a PersistentVolume gets the ReadOnly flag indirectly through the persistent-claim volume used to mount the PV
    	fc, readOnly, err := getVolumeSource(spec)
    	if err != nil {
    		return nil, err
    	}
    
    	wwns, lun, wwids, err := getWwnsLunWwids(fc)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.yaml

        code: IST0149
        level: Error
        description: "Virtual service using JWT claim based routing without request authentication."
        template: "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."
        args:
          - name: key
            type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1/generated.proto

      // volumeClaimTemplates is a list of claims that pods are allowed to reference.
      // The StatefulSet controller is responsible for mapping network identities to
      // claims in a way that maintains the identity of a pod. Every claim in
      // this list must have at least one matching (by name) volumeMount in one
      // container in the template. A claim in this list takes precedence over
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/core.go

    const defaultResourceClaimControllerWorkers = 10
    
    func newResourceClaimControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.ResourceClaimController,
    		aliases:  []string{"resource-claim-controller"},
    		initFunc: startResourceClaimController,
    		requiredFeatureGates: []featuregate.Feature{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. pkg/volume/util/util.go

    }
    
    // GetPersistentVolumeClaimQualifiedName returns a qualified name for pvc.
    func GetPersistentVolumeClaimQualifiedName(claim *v1.PersistentVolumeClaim) string {
    	return utilstrings.JoinQualifiedName(claim.GetNamespace(), claim.GetName())
    }
    
    // CheckVolumeModeFilesystem checks VolumeMode.
    // If the mode is Filesystem, return true otherwise return false.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/leaderelection_test.go

    	_, stop4 := createElection(t, "pod4", "green", watcher, false, client)
    	close(stop2)
    	close(stop3)
    	close(stop4)
    	// Now that revision "green" has stopped acting as leader, revision "red" should be able to claim lock.
    	_, stop5 := createElection(t, "pod2", "red", watcher, true, client)
    	close(stop5)
    	close(stop)
    	// Revision "green" can reclaim once "red" releases.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top