Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 989 for iterated (0.24 sec)

  1. pkg/kubelet/cm/topologymanager/bitmask/bitmask.go

    	s := *first.(*bitMask)
    	s.Or(masks...)
    	return &s
    }
    
    // IterateBitMasks iterates all possible masks from a list of bits,
    // issuing a callback on each mask.
    func IterateBitMasks(bits []int, callback func(BitMask)) {
    	var iterate func(bits, accum []int, size int)
    	iterate = func(bits, accum []int, size int) {
    		if len(accum) == size {
    			mask, _ := NewBitMask(accum...)
    			callback(mask)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:09 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

                    // The iteration order of zip.getEntries() is based on the hash of the zip entry. This isn't much use
                    // to us. So, collect the entries in a map and iterate over them in alphabetical order.
                    Iterator<ZipArchiveEntry> sortedEntries = entriesSortedByName(zip);
                    while (!stopFlag.get() && sortedEntries.hasNext()) {
                        ZipArchiveEntry entry = sortedEntries.next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ConsumingQueueIterator.java

    import java.util.Queue;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * An Iterator implementation which draws elements from a queue, removing them from the queue as it
     * iterates. This class is not thread safe.
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class ConsumingQueueIterator<T extends @Nullable Object> extends AbstractIterator<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jan 21 14:48:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationListenerManager.java

    public class DefaultBuildOperationListenerManager implements BuildOperationListenerManager {
    
        // This cannot be CopyOnWriteArrayList because we need to iterate it in reverse,
        // which requires atomically getting an iterator and the size.
        // Moreover, we iterate this list far more often that we mutate,
        // making a (albeit home grown) copy-on-write strategy more appealing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictResolutionDetails.java

        }
    
        @Override
        public String getDisplayName() {
            StringBuilder sb = new StringBuilder(16 + 16 * candidates.size());
            sb.append("between versions ");
            Iterator<? extends ComponentResolutionState> it = candidates.iterator();
            boolean more = false;
            while (it.hasNext()) {
                ComponentResolutionState next = it.next();
                if (more) {
                    if (it.hasNext()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. test/typeparam/orderedmap.go

    	}
    	return (*pn).val, true
    }
    
    // keyValue is a pair of key and value used while iterating.
    type keyValue[K, V any] struct {
    	key K
    	val V
    }
    
    // iterate returns an iterator that traverses the map.
    func (m *_Map[K, V]) Iterate() *_Iterator[K, V] {
    	sender, receiver := _Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

          signalPassFailure();
        }
      }
    
      // Remove all attr_map attributes.
      module_op.walk([](Operation* op) { op->removeAttr(kAttrMapAttribute); });
    
      // Perform selective quantization. Iterates over the quantization specs and
      // applies quantization methods to each matched lifted function.
      for (const QuantizationSpec& spec : quantization_specs_.specs()) {
        if (failed(ApplyQuantizationSpec(spec, module_op))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/ComponentResolversChain.java

                }
            }
        }
    
        private static class DependencyToComponentIdResolverChain implements DependencyToComponentIdResolver {
            // Using an array here because we're going to iterate pretty often and it avoids the creation of an iterator
            // that checks for concurrent modification
            private final DependencyToComponentIdResolver[] resolvers;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/RangeMap.java

      /**
       * Returns a view of this range map as an unmodifiable {@code Map<Range<K>, V>}. Modifications to
       * this range map are guaranteed to read through to the returned {@code Map}.
       *
       * <p>The returned {@code Map} iterates over entries in ascending order of the bounds of the
       * {@code Range} entries.
       *
       * <p>It is guaranteed that no empty ranges will be in the returned {@code Map}.
       */
      Map<Range<K>, V> asMapOfRanges();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/path-operation-advanced-configuration.md

    {!../../../docs_src/path_operation_advanced_configuration/tutorial001.py!}
    ```
    
    ### Using the *path operation function* name as the operationId
    
    If you want to use your APIs' function names as `operationId`s, you can iterate over all of them and override each *path operation's* `operation_id` using their `APIRoute.name`.
    
    You should do it after adding all your *path operations*.
    
    ```Python hl_lines="2  12-21  24"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top