Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 561 for claims0 (0.36 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    			}
    
    			slices := tc.slices
    			if slices == nil {
    				slices = sliceList{}
    			}
    			claims := tc.claims
    			if claims == nil {
    				claims = claimList{}
    			}
    			actualResources, actualErr := newResourceModel(tCtx.Logger(), slices, claims, &inFlightAllocations)
    
    			if actualErr != nil {
    				if !tc.wantErr {
    					tCtx.Fatalf("unexpected error: %v", actualErr)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. pkg/serviceaccount/claims_test.go

    			// comparing json spews has the benefit over
    			// reflect.DeepEqual that we are also asserting that
    			// claims structs are json serializable
    			spew := func(obj interface{}) string {
    				b, err := json.Marshal(obj)
    				if err != nil {
    					t.Fatalf("err, couldn't marshal claims: %v", err)
    				}
    				return string(b)
    			}
    
    			// set feature flags for the duration of the test case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. internal/config/identity/openid/jwt_test.go

    		{time.Duration(3) * time.Minute, "900", false},
    	}
    
    	for _, testCase := range testCases {
    		testCase := testCase
    		t.Run("", func(t *testing.T) {
    			claims := map[string]interface{}{}
    			claims["exp"] = testCase.exp
    			err := updateClaimsExpiry(testCase.dsecs, claims)
    			if err != nil && !testCase.expectedFailure {
    				t.Errorf("Expected success, got failure %s", err)
    			}
    			if err == nil && testCase.expectedFailure {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

        outputClaimToHeaders:
        - header: "x-jwt-nested-key"
          claim: "nested.nested-2.key2"
        - header: "x-jwt-iss"
          claim: "iss"
        - header: "x-jwt-wrong-header"
          claim: "wrong_claim"
    ---
    `
    	matchers := []match.Matcher{match.And(
    		// No waypoint here, these are all via ingress which doesn't forward to waypoint
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"shareable":      "Shareable indicates whether the allocated claim is meant to be shareable by multiple consumers at the same time.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// VendorClassParameters are the per-claim configuration parameters
    	// from the resource class at the time that the claim was allocated.
    	//
    	// +optional
    	VendorClassParameters runtime.RawExtension `json:"vendorClassParameters,omitempty" protobuf:"bytes,1,opt,name=vendorClassParameters"`
    
    	// VendorClaimParameters are the per-claim configuration parameters
    	// from the resource claim parameters at the time that the claim was
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    Contributor. If that Commercial Contributor then makes performance
    claims, or offers warranties related to Product X, those performance
    claims and warranties are such Commercial Contributor's responsibility
    alone. Under this section, the Commercial Contributor would have to
    defend claims against the other Contributors related to those performance
    claims and warranties, and if a court requires any other Contributor to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/volume_manager_test.go

    					RBDImage: "fake-device",
    				},
    			},
    			ClaimRef: &v1.ObjectReference{
    				Namespace: "nsA",
    				Name:      "claimA",
    			},
    			VolumeMode: &pvMode,
    		},
    	}
    	claim := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "claimA",
    			Namespace: "nsA",
    		},
    		Spec: v1.PersistentVolumeClaimSpec{
    			VolumeName: "pvA",
    			VolumeMode: &pvMode,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/apis/resource/types.go

    type StructuredResourceHandle struct {
    	// VendorClassParameters are the per-claim configuration parameters
    	// from the resource class at the time that the claim was allocated.
    	VendorClassParameters runtime.Object
    
    	// VendorClaimParameters are the per-claim configuration parameters
    	// from the resource claim parameters at the time that the claim was
    	// allocated.
    	VendorClaimParameters runtime.Object
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. security/pkg/util/jwtutil_test.go

    		"65xiNg"
    
    	// oneAudString includes one `aud` claim "abc" of type string.
    	oneAudString = "header.eyJhdWQiOiJhYmMiLCJleHAiOjQ3MzI5OTQ4MDEsImlhdCI6MTU3OTM5NDgwMSwiaXNzIjoidGVzdC1pc3N1ZXItMUBpc3Rpby5pbyIsInN1YiI6InN1Yi0xIn0.signature" // nolint: lll
    
    	// twoAudList includes two `aud` claims ["abc", "xyz"] of type []string.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:11 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top