Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for claims0 (0.16 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodStatusResult.yaml

            signal: 2
            startedAt: "2005-01-01T01:01:01Z"
          waiting:
            message: messageValue
            reason: reasonValue
        name: nameValue
        ready: true
        resources:
          claims:
          - name: nameValue
          limits:
            limitsKey: "0"
          requests:
            requestsKey: "0"
        restartCount: 5
        started: true
        state:
          running:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. guava/pom.xml

                <offlineLink>
                  <url>https://docs.oracle.com/javase/9/docs/api/</url>
                  <location>https://docs.oracle.com/javase/9/docs/api/</location>
                </offlineLink>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

              notValues: ["not-presenter", "not-presenter-prefix-*", "*-not-suffix-presenter", "*"]
            - key: "request.auth.claims[iss]"
              values: ["iss", "iss-prefix-*", "*-suffix-iss", "*"]
              notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
            - key: "request.auth.claims[nested1][nested2]"
              values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. cmd/signature-v4-utils.go

    				return cred, false, ErrAccessKeyDisabled
    			}
    			return cred, false, ErrInvalidAccessKeyID
    		}
    		cred = u.Credentials
    	}
    
    	claims, s3Err := checkClaimsFromToken(r, cred)
    	if s3Err != ErrNone {
    		return cred, false, s3Err
    	}
    	cred.Claims = claims
    
    	owner := cred.AccessKey == globalActiveCred.AccessKey || (cred.ParentUser == globalActiveCred.AccessKey && cred.AccessKey != siteReplicatorSvcAcc)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/test/datasets/validation/dataset/security-v1beta1-AuthorizationPolicy.yaml

           namespaces: ["test"]
       to:
       - operation:
           methods: ["GET"]
           paths: ["/info*"]
       - operation:
           methods: ["POST"]
           paths: ["/data"]
       when:
       - key: request.auth.claims[iss]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 524 bytes
    - Viewed (0)
  6. pkg/test/datasets/validation/dataset/security-v1-AuthorizationPolicy.yaml

           namespaces: ["test"]
       to:
       - operation:
           methods: ["GET"]
           paths: ["/info*"]
       - operation:
           methods: ["POST"]
           paths: ["/data"]
       when:
       - key: request.auth.claims[iss]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 519 bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/types.go

    )
    
    // Manager manages all the DRA resource plugins running on a node.
    type Manager interface {
    	// Start starts the reconcile loop of the manager.
    	// This will ensure that all claims are unprepared even if pods get deleted unexpectedly.
    	Start(activePods ActivePodsFunc, sourcesReady config.SourcesReady) error
    
    	// PrepareResources prepares resources for a pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessorTest.groovy

            def roundEnv = Stub(RoundEnvironment)
    
            when:
            def claimed = tracker.process(typeElems, roundEnv)
    
            then:
            1 * delegate.process(typeElems, roundEnv) >> {
                simulateWorkWithDuration(42)
                true
            }
            claimed
            result.executionTimeInMillis == 42
    
            when:
            tracker.process(typeElems, roundEnv)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. pkg/registry/resource/resourceclaim/strategy.go

    	claim := obj.(*resource.ResourceClaim)
    	// Status must not be set by user on create.
    	claim.Status = resource.ResourceClaimStatus{}
    }
    
    func (resourceclaimStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	claim := obj.(*resource.ResourceClaim)
    	return validation.ValidateClaim(claim)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. security/pkg/server/ca/authenticate/oidc.go

    	// "aud" for trust domain, "sub" has "system:serviceaccount:$namespace:$serviceaccount".
    	// in future trust domain may use another field as a standard is defined.
    	if err := idToken.Claims(&sa); err != nil {
    		return nil, fmt.Errorf("failed to extract claims from ID token: %v", err)
    	}
    	if !strings.HasPrefix(sa.Sub, "system:serviceaccount") {
    		return nil, fmt.Errorf("invalid sub %v", sa.Sub)
    	}
    	parts := strings.Split(sa.Sub, ":")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top