Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 92 for claim (0.06 sec)

  1. pilot/pkg/networking/core/route/route.go

    // The currently only supported header is @request.auth.claims for JWT claims matching. Claims of type string or list of string
    // are supported and nested claims are also supported using `.` or `[]` as a separator for claim names, `[]` is recommended.
    //
    // Examples using `.` as a separator:
    // - `@request.auth.claims.admin` matches the claim "admin".
    // - `@request.auth.claims.group.id` matches the nested claims "group" and "id".
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// 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: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// 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 Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. pkg/volume/testing/testing.go

    }
    
    // CreateTestPVC returns a provisionable PVC for tests
    func CreateTestPVC(capacity string, accessModes []v1.PersistentVolumeAccessMode) *v1.PersistentVolumeClaim {
    	claim := v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "dummy",
    			Namespace: "default",
    		},
    		Spec: v1.PersistentVolumeClaimSpec{
    			AccessModes: accessModes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults_test.go

    				VolumeMode: test.volumeMode,
    			},
    		}
    		obj1 := roundTrip(t, runtime.Object(pv))
    		pv1 := obj1.(*v1.PersistentVolume)
    		if pv1.Status.Phase != v1.VolumePending {
    			t.Errorf("Expected claim phase %v, got %v", v1.ClaimPending, pv1.Status.Phase)
    		}
    		if pv1.Spec.PersistentVolumeReclaimPolicy != v1.PersistentVolumeReclaimRetain {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            }
    
            /**
             * Called when the type has any non-static fields.
             */
            public void hasFields() {
            }
    
            /**
             * Handler can claim the property, taking responsibility for generating whatever is required to make the property work.
             * Handler is also expected to take care of validation.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    		}
    
    		var (
    			err    error
    			claims map[string]interface{} = cred.Claims
    		)
    
    		if cred.IsServiceAccount() {
    			claims, err = getClaimsFromTokenWithSecret(cred.SessionToken, cred.SecretKey)
    		} else if cred.IsTemp() {
    			var secretKey string
    			secretKey, err = getTokenSigningKey()
    			if err != nil {
    				continue
    			}
    			claims, err = getClaimsFromTokenWithSecret(cred.SessionToken, secretKey)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    			if take > npage {
    				// Take only what we need.
    				take = npage
    			}
    			if h.reclaimCredit.CompareAndSwap(credit, credit-take) {
    				npage -= take
    			}
    			continue
    		}
    
    		// Claim a chunk of work.
    		idx := uintptr(h.reclaimIndex.Add(pagesPerReclaimerChunk) - pagesPerReclaimerChunk)
    		if idx/pagesPerArena >= uintptr(len(arenas)) {
    			// Page reclaiming is done.
    			h.reclaimIndex.Store(1 << 63)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.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 ld
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    //go:systemstack
    func gcDrainN(gcw *gcWork, scanWork int64) int64 {
    	if !writeBarrier.enabled {
    		throw("gcDrainN phase incorrect")
    	}
    
    	// There may already be scan work on the gcw, which we don't
    	// want to claim was done by this call.
    	workFlushed := -gcw.heapScanWork
    
    	// In addition to backing out because of a preemption, back out
    	// if the GC CPU limiter is enabled.
    	gp := getg().m.curg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top