Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 138 for iterated (0.32 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

            return set1.isEmpty() && set2.isEmpty();
          }
    
          @Override
          public UnmodifiableIterator<E> iterator() {
            return new AbstractIterator<E>() {
              final Iterator<? extends E> itr1 = set1.iterator();
              final Iterator<? extends E> itr2 = set2.iterator();
    
              @Override
              @CheckForNull
              protected E computeNext() {
                if (itr1.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

            return set1.isEmpty() && set2.isEmpty();
          }
    
          @Override
          public UnmodifiableIterator<E> iterator() {
            return new AbstractIterator<E>() {
              final Iterator<? extends E> itr1 = set1.iterator();
              final Iterator<? extends E> itr2 = set2.iterator();
    
              @Override
              @CheckForNull
              protected E computeNext() {
                if (itr1.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

        }
    
        def "can iterate over domain objects ordered by order added"() {
            addToContainer(b)
            addToContainer(a)
            addToContainer(c)
    
            expect:
            def seen = []
            def iterator = container.iterator()
            seen << iterator.next()
            seen << iterator.next()
            seen << iterator.next()
            !iterator.hasNext()
            seen == iterationOrder(b, a, c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

            # See autograph/converters/control_flow.py - the function has a single
            # argument, the iterate before any expansion.
            assert self._for_loop_target_types[f_name_str] & {TFRTypes.ATTR}
            # Assume all loops are TF loops. Then the iterates are autoboxed into
            # Tensors.
            return {TFRTypes.INDEX}
          else:
            return None
    
        func = ns[f_name]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    }
    
    // typePointers is an iterator over the pointers in a heap object.
    //
    // Iteration through this type implements the tiling algorithm described at the
    // top of this file.
    type typePointers struct {
    	// elem is the address of the current array element of type typ being iterated over.
    	// Objects that are not arrays are treated as single-element arrays, in which case
    	// this value does not change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// Note that we iterate through the init containers in reverse order to find
    	// the next init container to run, as the completed init containers may get
    	// removed from container runtime for various reasons. Therefore the kubelet
    	// should rely on the minimal number of init containers - the last one.
    	//
    	// Once we find the next init container to run, iterate through the rest to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    func (t *Type) Methods() []*Field {
    	return t.methods.Slice()
    }
    
    // AllMethods returns a pointer to all the methods (including embedding) for type t.
    // For an interface type, this is the set of methods that are typically iterated
    // over. For non-interface types, AllMethods() only returns a valid result after
    // CalcMethods() has been called at least once.
    func (t *Type) AllMethods() []*Field {
    	if t.kind == TINTER {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/reflect/type.go

    	OverflowUint(x uint64) bool
    
    	// CanSeq reports whether a [Value] with this type can be iterated over using [Value.Seq].
    	CanSeq() bool
    
    	// CanSeq2 reports whether a [Value] with this type can be iterated over using [Value.Seq2].
    	CanSeq2() bool
    
    	common() *abi.Type
    	uncommon() *uncommonType
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    include::sample[dir="snippets/files/fileCollections/groovy",files="build.gradle[tags=simple-params]"]
    ====
    
    File collections have important attributes in Gradle.
    They can be:
    
    * created lazily
    * iterated over
    * filtered
    * combined
    
    _Lazy creation_ of a file collection is useful when evaluating the files that make up a collection when a build runs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

       * elements in {@code a}, followed by the elements in {@code b}, followed by the elements in
       * {@code c}. The source iterators are not polled until necessary.
       *
       * <p>The returned iterator supports {@code remove()} when the corresponding input iterator
       * supports it.
       */
      public static <T extends @Nullable Object> Iterator<T> concat(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top