Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,266 for maxs (0.15 sec)

  1. guava/src/com/google/common/collect/FilteredEntryMultimap.java

        }
    
        @Override
        Set<K> createKeySet() {
          @WeakOuter
          class KeySetImpl extends Maps.KeySet<K, Collection<V>> {
            KeySetImpl() {
              super(AsMap.this);
            }
    
            @Override
            public boolean removeAll(Collection<?> c) {
              return removeEntriesIf(Maps.<K>keyPredicateOnEntries(in(c)));
            }
    
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/impldeps/GradleImplDepsVisibilityIntegrationTest.groovy

                class MyTest extends groovy.test.GroovyTestCase {
    
                    void testImplIsHidden() {
                        try {
                            getClass().classLoader.loadClass("$Maps.name")
                            assert false : "expected $Maps.name not to be visible"
                        } catch (ClassNotFoundException ignore) {
                            // expected
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/internal/trace/mud.go

    		}
    	}
    }
    
    // setTrackMass sets the mass to track the inverse cumulative sum for.
    //
    // Specifically, mass is a cumulative duration, and the mutator
    // utilization bounds for this duration can be queried using
    // approxInvCumulativeSum.
    func (d *mud) setTrackMass(mass float64) {
    	d.trackMass = mass
    
    	// Find the bucket currently containing trackMass by computing
    	// the cumulative sum.
    	sum := 0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/GuavaCollectionFactoryUsageTest.java

                .should()
                .callMethod(com.google.common.collect.Maps.class, "newConcurrentMap")
                .orShould()
                .callMethod(com.google.common.collect.Maps.class, "newHashMap")
                .orShould()
                .callMethod(com.google.common.collect.Maps.class, "newLinkedHashMap")
                .orShould()
                .callMethod(com.google.common.collect.Maps.class, "newIdentityHashMap")
                .orShould()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/sidecar-selector.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-correctly-no-conflicts
      namespace: default
    spec:
      workloadSelector:
        labels:
          app: productpage # Maps to an existing workload without conflicts in the same ns, no error
      egress:
      - hosts:
        - "./*"
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: maps-to-nonexistent
      namespace: default
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  6. pkg/config/resource/metadata.go

    }
    
    // Clone Metadata. Warning, this is expensive!
    func (m *Metadata) Clone() Metadata {
    	result := *m
    	result.Annotations = maps.Clone(m.Annotations)
    	result.Labels = maps.Clone(m.Labels)
    	return result
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 26 13:19:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/FilteredEntryMultimap.java

        }
    
        @Override
        Set<K> createKeySet() {
          @WeakOuter
          class KeySetImpl extends Maps.KeySet<K, Collection<V>> {
            KeySetImpl() {
              super(AsMap.this);
            }
    
            @Override
            public boolean removeAll(Collection<?> c) {
              return removeEntriesIf(Maps.<K>keyPredicateOnEntries(in(c)));
            }
    
            @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

        assertFalse(entrySet.remove(Maps.immutableEntry(10, 'X')));
        assertTrue(entrySet.remove(Maps.immutableEntry(20, 'X')));
        assertFalse(entrySet.remove(Maps.immutableEntry(15, 'X')));
        entrySet = row.entrySet();
        assertTrue(entrySet.remove(Maps.immutableEntry(10, 'X')));
        assertFalse(entrySet.remove(Maps.immutableEntry(20, 'X')));
        assertFalse(entrySet.remove(Maps.immutableEntry(15, 'X')));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/StandardTable.java

            return obj != null && removeFromColumnIf(Maps.<V>valuePredicateOnEntries(equalTo(obj)));
          }
    
          @Override
          public boolean removeAll(final Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(in(c)));
          }
    
          @Override
          public boolean retainAll(final Collection<?> c) {
            return removeFromColumnIf(Maps.<V>valuePredicateOnEntries(not(in(c))));
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ForwardingMap.java

       * to this implementation.
       *
       * @since 7.0
       */
      protected void standardPutAll(Map<? extends K, ? extends V> map) {
        Maps.putAllImpl(this, map);
      }
    
      /**
       * A sensible, albeit inefficient, definition of {@link #remove} in terms of the {@code iterator}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top