Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for validate0 (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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