Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 348 for hasExt (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/values_test.go

    				}
    				if iter.HasNext() != types.True {
    					t.Error("Expected HasNext to return true")
    				}
    				next := iter.Next().Value()
    				if !reflect.DeepEqual(next, tc.unstructured[i]) {
    					t.Errorf("Expected Next to return %v for index %d but got %v", tc.unstructured[i], i, next)
    				}
    			}
    			if iter.HasNext() != types.False {
    				t.Error("Expected HasNext to return false")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        while (expectedIter.hasNext() && actualIter.hasNext()) {
          if (!equal(expectedIter.next(), actualIter.next())) {
            fail(
                "contents were not equal and in the same order: "
                    + "expected = "
                    + expected
                    + ", actual = "
                    + actual);
          }
        }
    
        if (expectedIter.hasNext() || actualIter.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeSet.java

          if (backingItr.hasNext()
              && upperBoundWindow.upperBound.isLessThan(backingItr.peek().upperBound)) {
            backingItr.next();
          }
          return new AbstractIterator<Entry<Cut<C>, Range<C>>>() {
            @Override
            @CheckForNull
            protected Entry<Cut<C>, Range<C>> computeNext() {
              if (!backingItr.hasNext()) {
                return endOfData();
              }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasSHA256 bool // K{I,L}MD-SHA-256 functions
    	HasSHA512 bool // K{I,L}MD-SHA-512 functions
    	HasSHA3   bool // K{I,L}MD-SHA3-{224,256,384,512} and K{I,L}MD-SHAKE-{128,256} functions
    	HasVX     bool // vector facility
    	HasVXE    bool // vector-enhancements facility 1
    	_         CacheLinePad
    }
    
    func init() {
    	archInit()
    	initOptions()
    	processOptions()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMultimap.java

          @CheckForNull K currentKey = null;
          Iterator<V> valueItr = Iterators.emptyIterator();
    
          @Override
          public boolean hasNext() {
            return valueItr.hasNext() || asMapItr.hasNext();
          }
    
          @Override
          public Entry<K, V> next() {
            if (!valueItr.hasNext()) {
              Entry<K, ? extends ImmutableCollection<V>> entry = asMapItr.next();
              currentKey = entry.getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/Helpers.java

        while (expectedIter.hasNext() && actualIter.hasNext()) {
          if (!equal(expectedIter.next(), actualIter.next())) {
            fail(
                "contents were not equal and in the same order: "
                    + "expected = "
                    + expected
                    + ", actual = "
                    + actual);
          }
        }
    
        if (expectedIter.hasNext() || actualIter.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/openapi/values_test.go

    				}
    				if iter.HasNext() != types.True {
    					t.Error("Expected HasNext to return true")
    				}
    				next := iter.Next().Value()
    				if !reflect.DeepEqual(next, tc.unstructured[i]) {
    					t.Errorf("Expected Next to return %v for index %d but got %v", tc.unstructured[i], i, next)
    				}
    			}
    			if iter.HasNext() != types.False {
    				t.Error("Expected HasNext to return false")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableMultimap.java

          @CheckForNull K currentKey = null;
          Iterator<V> valueItr = Iterators.emptyIterator();
    
          @Override
          public boolean hasNext() {
            return valueItr.hasNext() || asMapItr.hasNext();
          }
    
          @Override
          public Entry<K, V> next() {
            if (!valueItr.hasNext()) {
              Entry<K, ? extends ImmutableCollection<V>> entry = asMapItr.next();
              currentKey = entry.getKey();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

      }
    
      /**
       * Implementation for the EntryIterator, which is used to build Key and Value iterators.
       *
       * <p>Expiration is only checked on hasNext(), so as to ensure that a next() call never returns
       * null when hasNext() has already been called.
       */
      class EntryIterator implements Iterator<Entry<K, V>> {
        Iterator<Entry<K, Timestamped<V>>> iterator;
        Entry<K, Timestamped<V>> lastEntry;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/FilteredEntryMultimap.java

        Iterator<Entry<K, Collection<V>>> entryIterator = unfiltered.asMap().entrySet().iterator();
        boolean changed = false;
        while (entryIterator.hasNext()) {
          Entry<K, Collection<V>> entry = entryIterator.next();
          K key = entry.getKey();
          Collection<V> collection = filterCollection(entry.getValue(), new ValuePredicate(key));
          if (!collection.isEmpty()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top