Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for iteratorAt (0.25 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

        // current[i]_ is the actual traversing iterator.
        const typename ParamGenerator<T1>::iterator begin1_;
        const typename ParamGenerator<T1>::iterator end1_;
        typename ParamGenerator<T1>::iterator current1_;
        const typename ParamGenerator<T2>::iterator begin2_;
        const typename ParamGenerator<T2>::iterator end2_;
        typename ParamGenerator<T2>::iterator current2_;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
          return Iterators.filter(unfiltered.entrySet().iterator(), entryPredicate);
        }
    
        @Override
        Iterator<Entry<K, V>> descendingEntryIterator() {
          return Iterators.filter(unfiltered.descendingMap().entrySet().iterator(), entryPredicate);
        }
    
        @Override
        public int size() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Maps.java

        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
          return Iterators.filter(unfiltered.entrySet().iterator(), entryPredicate);
        }
    
        @Override
        Iterator<Entry<K, V>> descendingEntryIterator() {
          return Iterators.filter(unfiltered.descendingMap().entrySet().iterator(), entryPredicate);
        }
    
        @Override
        public int size() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    synchronized class FastMap$KeySet$1 implements java.util.Iterator { FastMap$EntryImpl after; FastMap$EntryImpl before; void FastMap$KeySet$1(FastMap$KeySet); public void remove(); public boolean hasNext(); public Object next(); } org/codehaus/plexus/util/FastMap$KeySet.class package org.codehaus.plexus.util; synchronized class FastMap$KeySet extends java.util.AbstractSet { private void FastMap$KeySet(FastMap); public java.util.Iterator iterator(); public int size(); public boolean contains(Object);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    synchronized class FastMap$KeySet$1 implements java.util.Iterator { FastMap$EntryImpl after; FastMap$EntryImpl before; void FastMap$KeySet$1(FastMap$KeySet); public void remove(); public boolean hasNext(); public Object next(); } org/codehaus/plexus/util/FastMap$KeySet.class package org.codehaus.plexus.util; synchronized class FastMap$KeySet extends java.util.AbstractSet { private void FastMap$KeySet(FastMap); public java.util.Iterator iterator(); public int size(); public boolean contains(Object);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public Iterator<V> iterator() {
          return new ValueIterator();
        }
    
        @Override
        public boolean contains(Object o) {
          return LocalCache.this.containsValue(o);
        }
      }
    
      final class EntrySet extends AbstractCacheSet<Entry<K, V>> {
    
        @Override
        public Iterator<Entry<K, V>> iterator() {
          return new EntryIterator();
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

              return null;
            }
    
            @Override
            public int size() {
              return 0;
            }
    
            @Override
            public Iterator<Object> iterator() {
              return ImmutableSet.of().iterator();
            }
          };
    
      /** Queue that discards all elements. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    synchronized class FastMap$KeySet$1 implements java.util.Iterator { FastMap$EntryImpl after; FastMap$EntryImpl before; void FastMap$KeySet$1(FastMap$KeySet); public void remove(); public boolean hasNext(); public Object next(); } org/codehaus/plexus/util/FastMap$KeySet.class package org.codehaus.plexus.util; synchronized class FastMap$KeySet extends java.util.AbstractSet { private void FastMap$KeySet(FastMap); public java.util.Iterator iterator(); public int size(); public boolean contains(Object);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
  9. src/reflect/value.go

    		v.mustBe(Map)
    	}
    	iter.m = v
    	iter.hiter = hiter{}
    }
    
    // MapRange returns a range iterator for a map.
    // It panics if v's Kind is not [Map].
    //
    // Call [MapIter.Next] to advance the iterator, and [MapIter.Key]/[MapIter.Value] to access each entry.
    // [MapIter.Next] returns false when the iterator is exhausted.
    // MapRange follows the same iteration semantics as a range statement.
    //
    // Example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def NameAnonymousIteratorsPass : Pass<"tf-name-anonymous-iterators", "ModuleOp"> {
      let summary = "Converts anonymous iterators to named iterators";
      let description = [{
          This converts AnonymousIterator ops to Iterator, thus giving them a name.
          For example, this will convert
            %0 = "tf.AnonymousIteratorV3"() {...}
          to
            %0 = "tf.Iterator"() {shared_name = "_iterator1", ...}
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top