Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for validate0 (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "format": "int64",
              "type": "integer"
            },
            "runAsNonRoot": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    		priv.Primes[1].Cmp(rsaPrivateKey.Primes[1]) != 0 {
    		t.Errorf("got:%+v want:%+v", priv, rsaPrivateKey)
    	}
    
    	// This private key includes an invalid prime that
    	// rsa.PrivateKey.Validate should reject.
    	data := []byte("0\x16\x02\x00\x02\x02\u007f\x00\x02\x0200\x02\x0200\x02\x02\x00\x01\x02\x02\u007f\x00")
    	if _, err := ParsePKCS1PrivateKey(data); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

            "properties": {
              "caBundle": {
                "description": "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.",
                "format": "byte",
                "type": "string",
                "x-kubernetes-list-type": "atomic"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    				if err := q.Update(logger, oldPod, newPod); err != nil {
    					t.Fatalf("unexpected error from Update: %v", err)
    				}
    
    				var pInfo *framework.QueuedPodInfo
    
    				// validate expected queue
    				if obj, exists, _ := q.podBackoffQ.Get(newQueuedPodInfoForLookup(newPod)); exists {
    					if tt.wantQ != backoffQ {
    						t.Errorf("expected pod %s not to be queued to backoffQ, but it was", newPod.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    			db.mu.Lock()
    			nc, closing := db.connectionCleanerRunLocked(time.Second)
    			if nc != item.wantNextCheck {
    				t.Errorf("got %v; want %v next check duration", nc, item.wantNextCheck)
    			}
    
    			// Validate freeConn order.
    			var last time.Time
    			for _, c := range db.freeConn {
    				if last.After(c.returnedAt) {
    					t.Error("freeConn is not ordered by returnedAt")
    					break
    				}
    				last = c.returnedAt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Maps.java

      }
    
      static class FilteredEntryMap<K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractFilteredMap<K, V> {
        /**
         * Entries in this set satisfy the predicate, but they don't validate the input to {@code
         * Entry.setValue()}.
         */
        final Set<Entry<K, V>> filteredEntrySet;
    
        FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Maps.java

      }
    
      static class FilteredEntryMap<K extends @Nullable Object, V extends @Nullable Object>
          extends AbstractFilteredMap<K, V> {
        /**
         * Entries in this set satisfy the predicate, but they don't validate the input to {@code
         * Entry.setValue()}.
         */
        final Set<Entry<K, V>> filteredEntrySet;
    
        FilteredEntryMap(Map<K, V> unfiltered, Predicate<? super Entry<K, V>> entryPredicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    	men := uint32(32 - bits.TrailingZeros32(^mask))
    	// Check for a wrapping mask (e.g bits at 0 and 31)
    	if mb == 0 && me == 32 {
    		// swap the inverted values
    		mb, me = men, mbn
    	}
    
    	// Validate mask is of the binary form 1+0*1+ or 0*1+0*
    	// Isolate rightmost 1 (if none 0) and add.
    	v := mask
    	vp := (v & -v) + v
    	// Likewise, check for the wrapping (inverted) case.
    	vn := ^v
    	vpn := (vn & -vn) + vn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top