Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 265 for armap (0.07 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultimapTester.java

        assertEqualIgnoringOrder(values, multimap().get(key));
    
        if (!values.isEmpty()) {
          assertEqualIgnoringOrder(values, multimap().asMap().get(key));
          assertFalse(multimap().isEmpty());
        } else {
          assertNull(multimap().asMap().get(key));
        }
    
        assertEquals(values.size(), multimap().get(key).size());
    
        assertEquals(values.size() > 0, multimap().containsKey(key));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MultimapBuilder.java

       * <p>The collections returned by {@link Multimap#keySet()}, {@link Multimap#keys()}, and {@link
       * Multimap#asMap()} will iterate through the keys in sorted order.
       *
       * <p>For all multimaps generated by the resulting builder, the {@link Multimap#keySet()} can be
       * safely cast to a {@link java.util.SortedSet}, and the {@link Multimap#asMap()} can safely be
       * cast to a {@link java.util.SortedMap}.
       */
      @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MultimapBuilder.java

       * <p>The collections returned by {@link Multimap#keySet()}, {@link Multimap#keys()}, and {@link
       * Multimap#asMap()} will iterate through the keys in sorted order.
       *
       * <p>For all multimaps generated by the resulting builder, the {@link Multimap#keySet()} can be
       * safely cast to a {@link java.util.SortedSet}, and the {@link Multimap#asMap()} can safely be
       * cast to a {@link java.util.SortedMap}.
       */
      @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/ProjectExecutionServiceRegistry.java

                return global;
            }
            return projectRegistries.getUnchecked(project);
        }
    
        @Override
        public void close() {
            CompositeStoppable.stoppable(projectRegistries.asMap().values()).stop();
        }
    
        private static class DefaultNodeExecutionContext implements NodeExecutionContext, Closeable {
            private final ProjectExecutionServices services;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 08 05:46:52 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

            params.putAll(map);
        }
    
        public boolean containsKey(final String key) {
            return params.containsKey(key);
        }
    
        public Map<String, Object> asMap() {
            return new ParamMap<>(new HashMap<>(getDataMap(params)));
        }
    
        protected static Map<String, Object> getDataMap(final Map<String, Object> params) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyExtraInfoSpecTest.groovy

            def DefaultIvyExtraInfoSpec extraInfo = new DefaultIvyExtraInfoSpec()
    
            when:
            extraInfo.add("http://my.extra.info", "foo", "fooValue")
    
            then:
            extraInfo.asMap() == [ (new QName("http://my.extra.info", "foo")): "fooValue" ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactVariantsFailureDescriber.java

            } else {
                formatter.node("The consumer was configured to find " + describer.describeAttributeSet(failure.getRequestedAttributes().asMap()) + ". However we cannot choose between the following variants of " + failure.getRequestedName());
            }
            formatter.startChildren();
            for (AssessedCandidate assessedCandidate : failure.getCandidates()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. operator/pkg/validate/validate_values.go

    	}
    	val := &v1alpha1.Values{}
    	if err := util.UnmarshalWithJSONPB(string(vs), val, false); err != nil {
    		return util.Errors{err}
    	}
    	return ValuesValidate(DefaultValuesValidations, root.(*structpb.Struct).AsMap(), nil)
    }
    
    // ValuesValidate validates the values of the tree using the supplied Func
    func ValuesValidate(validations map[string]ValidatorFunc, node any, path util.Path) (errs util.Errors) {
    	pstr := path.String()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/DefaultNamedDomainObjectCollection.java

            return getDisplayName();
        }
    
        @Override
        public SortedMap<String, T> getAsMap() {
            return index.asMap();
        }
    
        @Override
        public SortedSet<String> getNames() {
            NavigableSet<String> realizedNames = index.asMap().navigableKeySet();
            Set<String> pendingNames = index.getPendingAsMap().keySet();
            if (pendingNames.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderCache.java

            }
        }
    
        /**
         * Clears all entries in the cache.
         */
        public void clear() {
            lock.lock();
            try {
                for (ClassLoader classLoader : classLoaderDetails.asMap().keySet()) {
                    ClassLoaderUtils.tryClose(classLoader);
                }
                classLoaderDetails.invalidateAll();
                classLoaderIds.invalidateAll();
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top