Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Case (0.28 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

            "-SNAPSHOT",
            "-alpha.*\\d+",
            "-beta.*\\d+",
            "-dev-?\\d+",
            "-dev-\\d+-\\d+",
            "-rc-?\\d+",
            "-M.+",
            "-eap-?\\d+"
        ).map { it.toRegex(RegexOption.IGNORE_CASE) }
    
        @get:Internal
        abstract val libraryVersionFile: RegularFileProperty
    
        @TaskAction
        fun updateInitPluginTemplateVersionFile() {
            val versionProperties = Properties()
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 19 11:19:07 GMT 2023
    - 5K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

        launcherJar.from(tasks.jar)
        agentJars.from(agentsClasspath)
        // The trick below is to use the templates from the current code instead of the wrapper. It does not cover the case where the generation logic is updated though.
        unixScriptTemplate.from(layout.projectDirectory.file("../../../platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt"))
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Feb 28 23:38:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/bucket-extensions.kt

        if (expectedBucketSize == 0) {
            // The elements in the list are so small that they can't even be divided into {expectedBucketNumber}.
            // For example, how do you split [0,0,0,0,0] into 3 buckets?
            // In this case, we simply put the elements into these buckets evenly.
            return list.chunked(list.size / expectedBucketNumber, smallElementAggregateFunction)
        }
    
        val largestElement = list.removeFirst()!!
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Nov 17 05:17:44 GMT 2022
    - 4K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("base")
        id("checkstyle")
        id("codenarc")
        id("net.ltgt.errorprone")
    }
    
    open class ErrorProneProjectExtension(
        val disabledChecks: ListProperty<String>
    )
    
    open class ErrorProneSourceSetExtension(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 30 10:26:21 GMT 2024
    - 6K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

        }
    }
    
    tasks.withType<Test>().configureEach {
        if (JavaVersion.current().isJava9Compatible) {
            //allow ProjectBuilder to inject legacy types into the system classloader
            jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED")
            jvmArgs("--illegal-access=deny")
        }
        useJUnitPlatform()
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  6. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

    import gradlebuild.identity.provider.BuildTimestampFromBuildReceiptValueSource
    import gradlebuild.identity.provider.BuildTimestampValueSource
    import gradlebuild.identity.tasks.BuildReceipt
    
    plugins {
        `java-base`
    }
    
    val moduleIdentity = extensions.create<ModuleIdentityExtension>("moduleIdentity")
    
    group = "org.gradle"
    version = collectVersionDetails(moduleIdentity)
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  7. build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt

            buildTimestamp.get().let { isoTimestampFormat.format(it) }
    
        private
        fun Logger.logBuildVersion() {
            lifecycle(
                "Version: ${version.get()} " +
                    "(base version: ${baseVersion.get()}," +
                    " timestamp: ${buildTimestamp.get()}," +
                    " snapshot: ${snapshot.get()})"
            )
            if (BuildEnvironment.isCiServer) {
                lifecycle(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.2K bytes
    - Viewed (0)
  8. .cm/summary_table.cm

    platforms:
      - bt_ge_build_cache:
        name: 'bt_ge_build_cache'
        subprojects:
          - 'platforms/core-execution/build-cache/'
          - 'platforms/core-execution/build-cache-base/'
          - 'platforms/core-execution/build-cache-http/'
          - 'platforms/core-execution/build-cache-packaging/'
          - 'platforms/core-runtime/build-operations/'
          - 'platforms/core-runtime/files/'
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

        features {
            publishBuildStatusToGithub(model)
        }
    
        artifactRules = """$artifactRules
            subprojects/distributions-full/build/distributions/*.zip => distributions
            platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        """.trimIndent()
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 970 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/CompileAll.kt

            extraParameters = buildScanTag("CompileAll") + " " + "-Porg.gradle.java.installations.auto-download=false"
        )
    
        artifactRules = """$artifactRules
            platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        """.trimIndent()
    }) {
        companion object {
            fun buildTypeId(model: CIBuildModel) = buildTypeId(model.projectId)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 999 bytes
    - Viewed (0)
Back to top