- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 66 for candidates (0.11 seconds)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt
Christoph Obexer <******@****.***> 1747152359 +0200
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon May 19 11:33:57 GMT 2025 - 965 bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java
LinkedHashMap::new, Collectors.mapping(Plugin::getArtifactId, Collectors.toSet()))); request.getPluginGroups().forEach(g -> candidates.put(g, null)); PluginPrefixResult result = resolveFromRepository(request, candidates); // If we haven't been able to resolve the plugin from the repository, // as a last resort, we go through all declared plugins, load themCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 17 13:14:10 GMT 2025 - 11.9K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/links/ClassLinkMetaData.java
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 11:17:34 GMT 2025 - 7.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocLinkConverter.java
List<MethodMetaData> candidates = new ArrayList<MethodMetaData>(); for (MethodMetaData methodMetaData : targetClass.getDeclaredMethods()) { if (name.equals(methodMetaData.getOverrideSignature())) { return methodMetaData; } if (name.equals(methodMetaData.getName())) { candidates.add(methodMetaData); } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 7K bytes - Click Count (0) -
cmd/metacache-entries.go
if len(m) == 0 { return nil, false } dirExists := 0 if cap(r.candidates) < len(m) { r.candidates = make([][]xlMetaV2ShallowVersion, 0, len(m)) } r.candidates = r.candidates[:0] objsAgree := 0 objsValid := 0 for i := range m { entry := &m[i] // Empty entry if entry.name == "" { continue } if entry.isDir() {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Aug 08 15:29:58 GMT 2024 - 24.1K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepository.java
private List<String> findPossibleMatches(String fullyQualifiedClassName) { List<String> candidates = new ArrayList<String>(); for (String className : classes.keySet()) { if (getLevenshteinDistance(fullyQualifiedClassName, className) < 8) { candidates.add(className); } } return candidates; } @Override
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 4K bytes - Click Count (0) -
build-logic-settings/settings.gradle.kts
mavenCentral() gradlePluginPortal() } } pluginManagement { repositories { maven { url = uri("https://repo.gradle.org/gradle/enterprise-libs-release-candidates") content { val rcAndMilestonesPattern = "\\d{1,2}?\\.\\d{1,2}?(\\.\\d{1,2}?)?-((rc-\\d{1,2}?)|(milestone-\\d{1,2}?))" // GE plugin marker artifact
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Dec 10 16:27:16 GMT 2025 - 1.8K bytes - Click Count (0) -
internal/config/config.go
// Set of env vars for the sub-system to validate. candidates := set.CreateStringSet(subSysEnvVars...) // Remove all default target env vars from the candidates set (as they // are valid). for _, param := range validKeys { paramEnvName := getEnvVarName(subSys, Default, param) candidates.Remove(paramEnvName) } isSingleTarget := SubSystemsSingleTargets.Contains(subSys)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 37.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
final char[] candidates = { ',', '\t', ';', '|' }; int maxCount = 0; char bestDelimiter = ','; for (final char candidate : candidates) { final int count = countOccurrences(line, candidate); if (count > maxCount) { maxCount = count; bestDelimiter = candidate; } }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 08:38:29 GMT 2025 - 12.8K bytes - Click Count (0) -
build-logic-commons/settings.gradle.kts
*/ dependencyResolutionManagement { repositories { gradlePluginPortal() maven { url = uri("https://repo.gradle.org/gradle/enterprise-libs-release-candidates") content { val rcAndMilestonesPattern = "\\d{1,2}?\\.\\d{1,2}?(\\.\\d{1,2}?)?-((rc-\\d{1,2}?)|(milestone-\\d{1,2}?))" // GE plugin marker artifactCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon May 19 17:09:05 GMT 2025 - 1.9K bytes - Click Count (0)