Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for tdmap (0.05 sec)

  1. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/tasks/InstrumentedSuperTypesMergeTask.kt

            // so we have to collect also transitive super types
            return directSuperTypes.map {
                it.key to computeAllSuperTypes(it.key, directSuperTypes)
            }.toMap()
        }
    
        private
        fun computeAllSuperTypes(className: String, directSuperTypes: Map<String, Set<String>>): Set<String> {
            val superTypes: Queue<String> = ArrayDeque(directSuperTypes[className] ?: emptySet())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

         * System scope.
         */
        SYSTEM("system", false);
    
        private static final Map<String, DependencyScope> IDS = Collections.unmodifiableMap(
                Stream.of(DependencyScope.values()).collect(Collectors.toMap(s -> s.id, s -> s)));
    
        public static DependencyScope forId(String id) {
            return IDS.get(id);
        }
    
        private final String id;
        private final boolean transitive;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultTypeRegistry.java

            this.types = nonNull(providers, "providers").stream()
                    .flatMap(p -> p.provides().stream())
                    .collect(Collectors.toMap(Type::id, identity()));
            this.languageRegistry = nonNull(languageRegistry, "languageRegistry");
            this.usedTypes = new ConcurrentHashMap<>();
            this.manager = nonNull(manager, "artifactHandlerManager");
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. internal/bucket/replication/filter.go

    	if len(f.cachedTags) == 0 {
    		return true
    	}
    
    	parsedTags, err := tags.ParseObjectTags(userTags)
    	if err != nil {
    		return false
    	}
    
    	tagsMap := parsedTags.ToMap()
    
    	// This filter has tags configured but this object
    	// does not have any tag, skip this object
    	if len(tagsMap) == 0 {
    		return false
    	}
    
    	// Both filter and object have tags, find a match,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 28 18:25:46 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

                val allSubstitutors = buildList {
                    combinations.forEach { typesPermutation ->
                        add(buildSubstitutor { substitutions(typeParameters.zip(typesPermutation).toMap()) })
                    }
                }
    
                allSubstitutors.forEach { substitutor ->
                    testContractsOnDeclarationSymbol(symbol, substitutor, testServices)
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/util/WrapUtil.java

                coll.add(item);
            }
            return coll;
        }
    
        /**
         * Wraps the given key and value in a mutable unordered map.
         */
        public static <K, V> Map<K, V> toMap(K key, V value) {
            logDeprecation(7);
            Map<K, V> map = new HashMap<K, V>();
            map.put(key, value);
            return map;
        }
    
        @SafeVarargs
        @SuppressWarnings("varargs")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 16:04:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasher.java

        private void hashManifestAttributes(Attributes attributes, String name, Hasher hasher) {
            Map<String, String> entries = attributes
                .entrySet()
                .stream()
                .collect(Collectors.toMap(
                    entry -> entry.getKey().toString().toLowerCase(Locale.ROOT),
                    entry -> (String) entry.getValue()
                ));
            List<Map.Entry<String, String>> normalizedEntries = entries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    	}
    }
    
    func formatIDMappings(idMap []SysProcIDMap) []byte {
    	var data []byte
    	for _, im := range idMap {
    		data = append(data, itoa.Itoa(im.ContainerID)+" "+itoa.Itoa(im.HostID)+" "+itoa.Itoa(im.Size)+"\n"...)
    	}
    	return data
    }
    
    // writeIDMappings writes the user namespace User ID or Group ID mappings to the specified path.
    func writeIDMappings(path string, idMap []SysProcIDMap) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectBuildList.java

        }
    
        public Map<MavenProject, ProjectSegment> selectSegment(TaskSegment taskSegment) {
            return items.stream()
                    .filter(pb -> taskSegment == pb.getTaskSegment())
                    .collect(Collectors.toMap(ProjectSegment::getProject, Function.identity()));
        }
    
        /**
         * Finds the first ProjectSegment matching the supplied project
         * @param mavenProject the requested project
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/EclipseModelAwareUniqueProjectNameProvider.java

                allElements.addAll(projectToInformationMap.values());
    
                this.deduplicated = deduplicator.deduplicate(allElements).entrySet().stream()
                    .collect(Collectors.toMap(e -> e.getKey().project, Map.Entry::getValue));
            }
            return deduplicated;
        }
    
        private static class ProjectStateWrapper {
            private final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top