- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for BaseName (0.06 sec)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/FileToRawModelMergerTest.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 2.8K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
from(components["java"]) artifactId = gradleModule.identity.baseName.get() versionMapping { usage("java-api") { fromResolutionResult() } usage("java-runtime") { fromResolutionResult() } } pom { packaging = "jar" name = gradleModule.identity.baseName.map { "${project.group}:$it" } } }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 5.7K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java
} public void testInheritance(String baseName) throws IOException { testInheritance(baseName, false); testInheritance(baseName, true); } public void testInheritance(String baseName, boolean fromRepo) throws IOException { Model parent = getModel(baseName + "-parent"); Model child = getModel(baseName + "-child"); if (fromRepo) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 8.2K bytes - Viewed (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
File baseDir = new File(JAVA_IO_TMPDIR.value()); @SuppressWarnings("GoodTime") // reading system time without TimeSource String baseName = System.currentTimeMillis() + "-"; for (int counter = 0; counter < TEMP_DIR_ATTEMPTS; counter++) { File tempDir = new File(baseDir, baseName + counter); if (tempDir.mkdir()) { return tempDir; } } throw new IllegalStateException(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 29 18:50:14 UTC 2025 - 11.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
return EMPTY_ARRAY; } final String baseName = toDirectoryName(rootPackage); final List<Traverser> list = newArrayList(); for (final Iterator<URL> it = ClassLoaderUtil.getResources(baseName); it.hasNext();) { final URL url = it.next(); final Traverser resourcesType = getTraverser(url, rootPackage, baseName); if (resourcesType != null) {Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java
} if (name.contains(".")) { return name; } for (String importedClass : classMetaData.getImports()) { String baseName = StringUtils.substringAfterLast(importedClass, "."); if (baseName.equals("*")) { candidateClassName = StringUtils.substringBeforeLast(importedClass, ".") + "." + name; if (metaDataRepository.find(candidateClassName) != null) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 16 15:20:01 UTC 2025 - 6.4K bytes - Viewed (0) -
docs/debugging/xl-meta/main.go
return r default: return '_' } }, file) } if baseName == "" { if strings.HasSuffix(file, "/xl.meta") { baseName = strings.TrimSuffix(file, "/xl.meta") if idx := strings.LastIndexByte(baseName, '/'); idx > 0 { baseName = baseName[idx+1:] } } } err := data.files(func(name string, data []byte) {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 40.4K bytes - Viewed (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} } publishing.publications.withType<MavenPublication>().configureEach { if (name == "pluginMaven") { groupId = project.group.toString() artifactId = gradleModule.identity.baseName.get() } pom { licenses { license { name = "The Apache License, Version 2.0" url = "http://www.apache.org/licenses/LICENSE-2.0.txt" }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Jul 02 12:28:02 UTC 2025 - 6.1K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
*/ abstract val published: Property<Boolean> } interface ModuleIdentity { val version: Property<GradleVersion> val baseName: Property<String> val buildTimestamp: Property<String> val snapshot: Property<Boolean> val promotionBuild: Property<Boolean> val releasedVersions: Property<ReleasedVersionsDetails> }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 2.4K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
usedInDaemon = true } // TODO: Most of these properties are the same across projects. We should // compute these at the settings-level instead of the project-level. identity { baseName = "gradle-$name" buildTimestamp = buildTimestamp() promotionBuild = isPromotionBuild val finalReleaseSuffix = buildFinalRelease.map { "" } val rcSuffix = buildRcNumber.map { "-rc-$it" }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Oct 30 16:56:31 UTC 2025 - 5.9K bytes - Viewed (0)