Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 271 for claim (0.23 sec)

  1. tests/integration/pilot/gateway_conformance_test.go

    			// Precreate the GatewayConformance namespaces, and apply the Image Pull Secret to them.
    			if ctx.Settings().Image.PullSecret != "" {
    				for _, ns := range conformanceNamespaces {
    					namespace.Claim(ctx, namespace.Config{
    						Prefix: ns,
    						Inject: false,
    					})
    				}
    			}
    
    			mapper, _ := gatewayConformanceInputs.Client.UtilFactory().ToRESTMapper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. 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)
  3. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        day period You withdraw Your claim with respect to the Participant
        Software against such Participant either unilaterally or pursuant to
        a written agreement with Participant.
    
        6.3. If You assert a patent infringement claim against Participant
        alleging that the Participant Software directly or indirectly
        infringes any patent where such claim is resolved (such as by
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    		}
    
    		// Retrieve the credential's claims.
    		secret, err := getTokenSigningKey()
    		if err != nil {
    			c.Fatalf("Error getting token signing key: %v", err)
    		}
    		claims, err := getClaimsFromTokenWithSecret(value.SessionToken, secret)
    		if err != nil {
    			c.Fatalf("Error getting claims from token: %v", err)
    		}
    
    		// Validate claims. Check if the sshPublicKey claim is present.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. src/cmd/link/internal/sym/symkind.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 sym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_executor.go

    	// InnerVolumeSpecName.
    	VolumeSpec *volume.Spec
    
    	// outerVolumeSpecName is the podSpec.Volume[x].Name of the volume. If the
    	// volume was referenced through a persistent volume claim, this contains
    	// the podSpec.Volume[x].Name of the persistent volume claim.
    	OuterVolumeSpecName string
    
    	// Pod to mount the volume to. Used to create NewMounter.
    	Pod *v1.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. tests/integration/security/jwt_test.go

    					},
    				},
    				{
    					name: "valid-nested-claim-token",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/valid-token-noauthz"
    						opts.HTTP.Headers = headers.New().
    							With("Authorization", "Bearer "+jwt.TokenIssuer1WithNestedClaims2).
    							With("X-Jwt-Nested-Claim", "value_to_be_replaced").
    							Build()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  8. CREDITS

    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: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		return nil, "", fmt.Errorf(
    			"found PV object %s but it has a nil pv.Spec.ClaimRef indicating it is not yet bound to the claim",
    			name)
    	}
    
    	if pv.Spec.ClaimRef.UID != expectedClaimUID {
    		return nil, "", fmt.Errorf(
    			"found PV object %s but its pv.Spec.ClaimRef.UID %s does not point to claim.UID %s",
    			name,
    			pv.Spec.ClaimRef.UID,
    			expectedClaimUID)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    			description: "no old pod/ new with claims / disabled",
    			oldPod:      noPod,
    			newPod:      podWithClaims,
    			wantPod:     podWithoutClaims,
    		},
    
    		{
    			description: "old with claims / new without claims / disabled",
    			oldPod:      podWithClaims,
    			newPod:      podWithoutClaims,
    			wantPod:     podWithoutClaims,
    		},
    		{
    			description: "old without claims / new without claims / disabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top