Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for podCount (0.18 sec)

  1. istioctl/pkg/injector/injector-list.go

    		revision := getInjectedRevision(&namespace, hooks)
    		podCount := podCountByRevision(allPods[resource.Namespace(namespace.Name)], revision)
    		if len(podCount) == 0 {
    			// This namespace has no pods, but we wish to display it if new pods will be auto-injected
    			if revision != "" {
    				podCount[revision] = revisionCount{}
    			}
    		}
    		for injectedRevision, count := range podCount {
    			if outputCount == 0 {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Oct 18 11:39:52 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/HashBiMap.java

        lastInKeyInsertionOrder = null;
        modCount++;
      }
    
      @Override
      public int size() {
        return size;
      }
    
      private abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        @CheckForNull BiEntry<K, V> next = firstInKeyInsertionOrder;
        @CheckForNull BiEntry<K, V> toRemove = null;
        int expectedModCount = modCount;
        int remaining = size();
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/LinkedListMultimap.java

        @CheckForNull Node<K, V> next = head;
        @CheckForNull Node<K, V> current;
        int expectedModCount = modCount;
    
        private void checkForConcurrentModification() {
          if (modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
        }
    
        @Override
        public boolean hasNext() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

        int entryIndex = backingMap.firstIndex();
        int toRemove = -1;
        int expectedModCount = backingMap.modCount;
    
        @ParametricNullness
        abstract T result(int entryIndex);
    
        private void checkForConcurrentModification() {
          if (backingMap.modCount != expectedModCount) {
            throw new ConcurrentModificationException();
          }
        }
    
        @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

                } else {
                  // clobber existing entry, count remains unchanged
                  ++modCount;
                  setValue(e, value);
                  return entryValue;
                }
              }
            }
    
            // Create a new entry.
            ++modCount;
            E newEntry = map.entryHelper.newEntry(self(), key, hash, first);
            setValue(newEntry, value);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/HashBiMap.java

            private int indexToRemove = ABSENT;
            private int expectedModCount = biMap.modCount;
    
            // Calls to setValue on inverse entries can move already-visited entries to the end.
            // Make sure we don't visit those.
            private int remaining = biMap.size;
    
            private void checkForComodification() {
              if (biMap.modCount != expectedModCount) {
                throw new ConcurrentModificationException();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

       */
    
      /** The keys of the entries in the map. */
      transient @Nullable Object[] keys;
    
      /** The values of the entries in the map. */
      transient int[] values;
    
      transient int size;
    
      transient int modCount;
    
      /**
       * The hashtable. Its values are indexes to the keys, values, and entries arrays.
       *
       * <p>Currently, the UNSET value means "null pointer", and any non negative value x is the actual
       * index.
       *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 15K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/LinkedHashMultimap.java

          return new Iterator<V>() {
            ValueSetLink<K, V> nextEntry = firstEntry;
            @CheckForNull ValueEntry<K, V> toRemove;
            int expectedModCount = modCount;
    
            private void checkForComodification() {
              if (modCount != expectedModCount) {
                throw new ConcurrentModificationException();
              }
            }
    
            @Override
            public boolean hasNext() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

                } else {
                  // clobber existing entry, count remains unchanged
                  ++modCount;
                  setValue(e, value);
                  return entryValue;
                }
              }
            }
    
            // Create a new entry.
            ++modCount;
            E newEntry = map.entryHelper.newEntry(self(), key, hash, first);
            setValue(newEntry, value);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

                // continue returning old value while loading
                ++modCount;
                LoadingValueReference<K, V> loadingValueReference =
                    new LoadingValueReference<>(valueReference);
                e.setValueReference(loadingValueReference);
                return loadingValueReference;
              }
            }
    
            ++modCount;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top