Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,099 for iterated (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kubelet/kubelet_pods.go

    	)
    	var ecSpecs []v1.Container
    	for i := range pod.Spec.EphemeralContainers {
    		ecSpecs = append(ecSpecs, v1.Container(pod.Spec.EphemeralContainers[i].EphemeralContainerCommon))
    	}
    
    	// #80875: By now we've iterated podStatus 3 times. We could refactor this to make a single
    	// pass through podStatus.ContainerStatuses
    	apiPodStatus.EphemeralContainerStatuses = kl.convertToAPIContainerStatuses(
    		pod, podStatus,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. src/reflect/value.go

    			panic("MapIter.Next called on exhausted iterator")
    		}
    		mapiternext(&iter.hiter)
    	}
    	return mapiterkey(&iter.hiter) != nil
    }
    
    // Reset modifies iter to iterate over v.
    // It panics if v's Kind is not [Map] and v is not the zero Value.
    // Reset(Value{}) causes iter to not to refer to any map,
    // which may allow the previously iterated-over map to be garbage collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        }
      }
    
      /**
       * Verifies that an Iterator is unmodifiable.
       *
       * <p>This test only works with iterators that iterate over a finite set.
       */
      public static void assertIteratorIsUnmodifiable(Iterator<?> iterator) {
        while (iterator.hasNext()) {
          iterator.next();
          try {
            iterator.remove();
            fail("Remove on unmodifiable iterator succeeded");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        }
      }
    
      /**
       * Verifies that an Iterator is unmodifiable.
       *
       * <p>This test only works with iterators that iterate over a finite set.
       */
      public static void assertIteratorIsUnmodifiable(Iterator<?> iterator) {
        while (iterator.hasNext()) {
          iterator.next();
          try {
            iterator.remove();
            fail("Remove on unmodifiable iterator succeeded");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

        SmallVector<Type, 2> dataset_types;
        for (int i = 0; i < dataset_input_size; ++i) {
          dataset_types.push_back(func_inputs[state_size + i]);
        }
    
        // Create dataset iterator and iterate dataset in while loop which calls
        // reduce_fn.
        AnonymousIteratorV3Op anonymous_iterator =
            CreateIterator(builder, dataset_types, reduce_dataset);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top