Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for BaseName (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            final String baseName = StringUtils.removeEndIgnoreCase(filename, ".jar");
            final List<String> nameList = new ArrayList<>();
            final List<String> versionList = new ArrayList<>();
            boolean isName = true;
            for (final String value : baseName.split("-")) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

                        subprojects {
                            apply(plugin = "gradlebuild.module-identity")
                            apply(plugin = "kotlin")
                            the<GradleModuleExtension>().identity.baseName.set("api-module")
                            repositories {
                                mavenCentral()
                            }
                            dependencies {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Dec 30 10:14:25 UTC 2025
    - 18K bytes
    - Viewed (0)
  6. RELEASE.md

            Kronecker Product.
        *   Allow LinearOperator to broadcast.
        *   SavedModelBuilder will now deduplicate asset names that point to files
            with the same basename and the same contents. Note that this may result
            in new asset files included in SavedModels in cases where assets with
            the same name but different contents were previously overwriting each
            other.
    
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Tue Oct 28 22:27:41 UTC 2025
    - 740.4K bytes
    - Viewed (3)
Back to top