Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 244 for reregistering (0.19 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/kotlin/buildSrc/src/main/kotlin/myproject.java-conventions.gradle.kts

    repositories {
        mavenCentral()
    }
    
    testing {
        suites {
            val test by getting(JvmTestSuite::class) {
                useJUnitJupiter("5.7.1")
            }
    
            val integrationTest by registering(JvmTestSuite::class) {
                dependencies {
                    implementation(project())
                }
    
                targets {
                    all {
                        testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 661 bytes
    - Viewed (0)
  2. testing/smoke-test/build.gradle.kts

         */
        val santaGitUri = "https://github.com/gradle/santa-tracker-android.git"
    
        val santaTracker by registering(RemoteProject::class) {
            remoteUri = santaGitUri
            // Pinned from branch main
            ref = "e9419cad3583427caca97958301ff98fc8e9a1c3"
        }
    
        val gradleBuildCurrent by registering(RemoteProject::class) {
            remoteUri = rootDir.absolutePath
            ref = buildCommitId
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/kotlin/build.gradle.kts

    val compile by tasks.registering {
        doLast {
            println("We are doing the compile.")
        }
    }
    
    compile {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw StopExecutionException()
            }
        }
    }
    tasks.register("myTask") {
        dependsOn(compile)
        doLast {
            println("I am not affected")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/application/kotlin/build.gradle.kts

    }
    // end::application-defaultjvmargs[]
    
    // tag::executableDir-conf[]
    application {
        executableDir = "custom_bin_dir"
    }
    // end::executableDir-conf[]
    
    // tag::distribution-spec[]
    val createDocs by tasks.registering {
        val docs = layout.buildDirectory.dir("docs")
        outputs.dir(docs)
        doLast {
            docs.get().asFile.mkdirs()
            docs.get().file("readme.txt").asFile.writeText("Read me!")
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformAction.java

    public interface TransformAction<T extends TransformParameters> {
    
        /**
         * The object provided by {@link TransformSpec#getParameters()} when registering the artifact transform.
         *
         * <p>
         *     Do not implement this method in your subclass.
         *     Gradle provides the implementation when registering the transform action via {@link org.gradle.api.artifacts.dsl.DependencyHandler#registerTransform(Class, Action)}.
         * </p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/README.md

    # apiextensions-apiserver
    
    Implements: https://github.com/kubernetes/design-proposals-archive/blob/main/api-machinery/thirdpartyresources.md
    
    It provides an API for registering `CustomResourceDefinitions`.
    
    ## Purpose
    
    This API server provides the implementation for `CustomResourceDefinitions` which is included as
    delegate server inside of `kube-apiserver`.
    
    
    ## Compatibility
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 06:41:15 UTC 2023
    - 742 bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/names/controller_names.go

    //     2.3. [TODO] registering ControllerManagerMetrics with ControllerStarted and ControllerStopped
    //     2.4. [TODO] calling WaitForNamedCacheSync
    //  3. defining controller options for "--help" command or generated documentation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.library-conventions.gradle.kts

                url = uri("build/my-repo")
            }
        }
    }
    
    // The project requires libraries to have a README containing sections configured below
    // tag::use-java-class[]
    val readmeCheck by tasks.registering(com.example.ReadmeVerificationTask::class) {
        readme = layout.projectDirectory.file("README.md")
        readmePatterns = listOf("^## API$", "^## Changelog$")
    }
    // end::use-java-class[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 996 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * The interfaces and classes related to registering for event notifications and listening to dispatched events.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 773 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectProviderExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.NamedDomainObjectProvider
    
    
    /**
     * Allows a [NamedDomainObjectProvider] to be configured via invocation syntax.
     *
     * ```kotlin
     * val rebuild by tasks.registering
     * rebuild { // rebuild.configure {
     *   dependsOn("clean")
     * }
     * ```
     */
    operator fun <T> NamedDomainObjectProvider<T>.invoke(action: T.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1009 bytes
    - Viewed (0)
Back to top