Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 189 for valid (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	// of events we actually process to be bufferSize, each event of
    	// type watch.Added.
    	valid := true
    	invalidateCacheInterval := func() {
    		valid = false
    	}
    	once := sync.Once{}
    	indexValidator := func(index int) bool {
    		isValid := valid && (index >= cacher.watchCache.startIndex)
    		once.Do(invalidateCacheInterval)
    		return isValid
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    import (
    	v1 "k8s.io/api/admissionregistration/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended
    // to make sure that all the tuple expansions are valid.
    type Rule = v1.Rule
    
    // ScopeType specifies a scope for a Rule.
    type ScopeType = v1.ScopeType
    
    const (
    	// ClusterScope means that scope is limited to cluster-scoped objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation_test.go

    		},
    		wantErr: true,
    	}, {
    		desc: "valid - TokenRequests has at most one token with empty string audience",
    		csiDriver: &storage.CSIDriver{
    			ObjectMeta: metav1.ObjectMeta{Name: driverName},
    			Spec: storage.CSIDriverSpec{
    				TokenRequests:     []storage.TokenRequest{{Audience: ""}},
    				RequiresRepublish: &notRequiresRepublish,
    			},
    		},
    	}, {
    		desc: "valid - TokenRequests has tokens with different audience",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    }
    
    // OCSPResponse returns the stapled OCSP response from the TLS server, if
    // any. (Only valid for client connections.)
    func (c *Conn) OCSPResponse() []byte {
    	c.handshakeMutex.Lock()
    	defer c.handshakeMutex.Unlock()
    
    	return c.ocspResponse
    }
    
    // VerifyHostname checks that the peer certificate chain is valid for
    // connecting to host. If so, it returns nil; if not, it returns an error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            file.bytes = [0, 1, 2, 3] + file.readBytes().toList() as byte[]
        }
    
        private void writeLocalKeyring(SimpleKeyRing keyring, File target, Boolean valid) {
            if (valid == null) {
                return
            }
            if (valid) {
                keyring.writePublicKeyRingTo(target)
            } else {
                def differentKeyring = newKeyRing()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    					}
    				case sym.STEXT:
    					targ := r.Sym()
    					if (ldr.AttrExternal(targ) && ldr.SymLocalentry(targ) != 1) || !ldr.AttrExternal(targ) {
    						// All local symbols share the same TOC pointer. This caller has a valid TOC
    						// pointer in R2. Calls into a Go symbol preserve R2. No call stub is needed.
    					} else {
    						// This caller has a TOC pointer. The callee might clobber it. R2 needs to be saved
    						// and restored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    			}
    		}
    		return ObjectInfo{}, toObjectErr(err, srcBucket, srcObject)
    	}
    
    	// List all online disks.
    	onlineDisks, modTime, etag := listOnlineDisks(storageDisks, metaArr, errs, readQuorum)
    
    	// Pick latest valid metadata.
    	fi, err := pickValidFileInfo(ctx, metaArr, modTime, etag, readQuorum)
    	if err != nil {
    		return oi, toObjectErr(err, srcBucket, srcObject)
    	}
    	if fi.Deleted {
    		if srcOpts.VersionID == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	if _DebugGC > 1 && frame.continpc != 0 {
    		print("scanframe ", funcname(frame.fn), "\n")
    	}
    
    	isAsyncPreempt := frame.fn.valid() && frame.fn.funcID == abi.FuncID_asyncPreempt
    	isDebugCall := frame.fn.valid() && frame.fn.funcID == abi.FuncID_debugCallV2
    	if state.conservative || isAsyncPreempt || isDebugCall {
    		if debugScanConservative {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    			return false
    		}
    	}
    
    	return true
    }
    
    // ignoreValidatingAdmissionPolicyMatchConditions returns true if there have been no updates that could invalidate previously-valid match conditions
    func ignoreValidatingAdmissionPolicyMatchConditions(new, old *admissionregistration.ValidatingAdmissionPolicy) bool {
    	if !reflect.DeepEqual(new.Spec.ParamKind, old.Spec.ParamKind) {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/lifecycle_test.go

    func TestParseAndValidateLifecycleConfig(t *testing.T) {
    	testCases := []struct {
    		inputConfig           string
    		expectedParsingErr    error
    		expectedValidationErr error
    		lr                    lock.Retention
    	}{
    		{ // Valid lifecycle config
    			inputConfig: `<LifecycleConfiguration>
    								  <Rule>
    								  <ID>testRule1</ID>
    		                          <Filter>
    		                             <Prefix>prefix</Prefix>
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top