Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 151 for Change (0.2 sec)

  1. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

            params {
                text("gitUserEmail", "", label = "Git user.email Configuration", description = "Enter the git 'user.email' configuration to commit change under", display = ParameterDisplay.PROMPT, allowEmpty = true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/providers/listProperty/kotlin/build.gradle.kts

    producerOne { outputFile = layout.buildDirectory.file("one.txt") }
    producerTwo { outputFile = layout.buildDirectory.file("two.txt") }
    
    // Change the build directory.
    // Don't need to update the task properties. These are automatically updated as the build directory changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

     *
     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    object PublicApi {
        val includes = listOf(
            "org/gradle/*",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/compile/PrecompiledPluginsCompileAvoidanceIntegrationTest.kt

            )
            configureProject("foo").assertBuildScriptCompilationAvoided().assertOutputContains("bar from task")
        }
    
        @Test
        fun `recompiles buildscript when plugins applied from a precompiled plugin change`() {
            val pluginId = "my-plugin"
            withPrecompiledScriptPluginInBuildSrc(
                pluginId,
                """
                    plugins {
                        id("java-library")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/groovy/convention-plugins/build.gradle

    // end::apply[]
        id 'maven-publish'
    // tag::apply[]
    }
    // end::apply[]
    
    group = 'com.myorg.conventions'
    version = '1.0'
    
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = layout.buildDirectory.dir("repo")
            }
        }
    }
    
    tasks.named('publish') {
        dependsOn('check')
    }
    
    // end::publish[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 992 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/groovy/build.gradle

    publishing {
        publications {
            maven(MavenPublication) {
                artifact rpmArtifact
            }
        }
    // end::custom-artifact-publication[]
        repositories {
            // change URLs to point to your repo, e.g. http://my.org/repo
            maven {
                url = layout.buildDirectory.dir('repo')
            }
        }
    // tag::custom-artifact-publication[]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 933 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/maven-publish/quickstart/groovy/build.gradle

            mavenJava(MavenPublication) {
                from components.java
            }
        }
    }
    // end::publish-component[]
    // tag::repositories[]
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = layout.buildDirectory.dir('repo')
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 560 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/kotlin/src/hawking.txt

    Intelligence is the ability to adapt to change....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:36:36 UTC 2024
    - 48 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/groovy/src/hawking.txt

    Intelligence is the ability to adapt to change....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:36:36 UTC 2024
    - 48 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/kotlin/src/hawking.txt

    Intelligence is the ability to adapt to change....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:36:36 UTC 2024
    - 48 bytes
    - Viewed (0)
Back to top