Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 91 for AsMap (0.07 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

            this.entriesToBeWritten = entriesToBeWritten;
        }
    
        public void performPgpKeyGrouping() {
            Multimap<String, PgpEntry> keysToEntries = groupEntriesByPgpKey();
            keysToEntries.asMap()
                .entrySet()
                .forEach(e -> {
                    // Filter out anything for which we have a trusted key entry already
                    Collection<PgpEntry> pgpKeys = e.getValue().stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/LinkedListMultimap.java

     * {@link #replaceValues} attempts to preserve iteration order as much as possible.
     *
     * <p>The collections returned by {@link #keySet()} and {@link #asMap} iterate through the keys in
     * the order they were first added to the multimap. Similarly, {@link #get}, {@link #removeAll}, and
     * {@link #replaceValues} return collections that iterate through the values in the order they were
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

            }
    
            private Set<String> getDuplicateNames() {
                Set<String> duplicates = new LinkedHashSet<>();
                for (Entry<String, Collection<T>> entry : elementsByName.asMap().entrySet()) {
                    if (entry.getValue().size() > 1) {
                        duplicates.add(entry.getKey());
                    }
                }
                return duplicates;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ExecutionGlobalServices.java

                    DisableCachingByDefault.class,
                    UntrackedTask.class,
                    RegistersSoftwareTypes.class
                ),
                ModifierAnnotationCategory.asMap(builder.build()),
                ImmutableSet.of(
                    "java",
                    "groovy",
                    "kotlin"
                ),
                ImmutableSet.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                    });
        }
    
        @PreDestroy
        public void destroy() {
            if (logger.isDebugEnabled()) {
                logger.debug("cache stats: {}", statsCache.stats());
            }
            statsCache.asMap().entrySet().stream().forEach(e -> {
                final StatsObject data = e.getValue();
                final Long begin = data.remove(BEGIN_KEY);
                if (begin != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/LinkedHashMultimap.java

     * returns collections whose iterators follow the ordering in which the data was added to the
     * multimap.
     *
     * <p>The collections returned by {@code keySet}, {@code keys}, and {@code asMap} iterate through
     * the keys in the order they were first added to the multimap. Similarly, {@code get}, {@code
     * removeAll}, and {@code replaceValues} return collections that iterate through the values in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/LinkedHashMultimap.java

     * returns collections whose iterators follow the ordering in which the data was added to the
     * multimap.
     *
     * <p>The collections returned by {@code keySet}, {@code keys}, and {@code asMap} iterate through
     * the keys in the order they were first added to the multimap. Similarly, {@code get}, {@code
     * removeAll}, and {@code replaceValues} return collections that iterate through the values in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate.go

    	}
    
    	scope.Debugf("Values translated from IstioOperator API:\n%s", apiValsStr)
    
    	// Add global overlay from IstioOperatorSpec.Values/UnvalidatedValues.
    	globalVals := iop.GetValues().AsMap()
    	globalUnvalidatedVals := iop.GetUnvalidatedValues().AsMap()
    
    	if scope.DebugEnabled() {
    		scope.Debugf("Values from IstioOperatorSpec.Values:\n%s", util.ToYAML(globalVals))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                    // the artifacts which only have not fatal errors
                    Map<ModuleComponentArtifactIdentifier, Collection<RepositoryAwareVerificationFailure>> filtered =
                        failures.asMap().entrySet().stream().filter(entry -> {
                            Collection<RepositoryAwareVerificationFailure> value = entry.getValue();
                            return value.stream().anyMatch(wrapper -> wrapper.getFailure().isFatal());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

            model.revision = coordinates.getRevision().get();
    
            model.status = descriptor.getStatus();
            model.branch = descriptor.getBranch();
            model.extraInfo = descriptor.getExtraInfo().asMap();
            model.description = descriptor.getDescription();
    
            model.authors.addAll(descriptor.getAuthors());
            model.licenses.addAll(descriptor.getLicenses());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
Back to top