Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 368 for claim (0.24 sec)

  1. pkg/controller/volume/attachdetach/util/util.go

    		return nil, fmt.Errorf(
    			"found PV object %q 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 %q but its pv.Spec.ClaimRef.UID (%q) does not point to claim.UID (%q)",
    			name,
    			pv.Spec.ClaimRef.UID,
    			expectedClaimUID)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. src/runtime/mspanset.go

    claimLoop:
    	for {
    		headtail := b.index.load()
    		head, tail = headtail.split()
    		if head >= tail {
    			// The buf is empty, as far as we can tell.
    			return nil
    		}
    		// Check if the head position we want to claim is actually
    		// backed by a block.
    		spineLen := b.spineLen.Load()
    		if spineLen <= uintptr(head)/spanSetBlockEntries {
    			// We're racing with a spine growth and the allocation of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. LICENSES/vendor/sigs.k8s.io/yaml/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:42:44 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    		expectedError     string
    		expectedState     ClaimInfoStateList
    	}{
    		{
    			"Create non-existing checkpoint",
    			"",
    			"",
    			[]ClaimInfoState{},
    		},
    		{
    			"Restore checkpoint - single claim",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. 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: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top