Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for reregistering (0.39 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Other tasks should be modified in their own configuration action:
    +
    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    val check by tasks.registering
    val verificationTask by tasks.registering {
        // Configure verificationTask
    }
    check {
        dependsOn(verificationTask)
    }
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

        val compileClasspath: FileCollection = sourceSets["main"].compileClasspath
    
        tasks {
    
            val extractPrecompiledScriptPluginPlugins by registering(ExtractPrecompiledScriptPluginPlugins::class) {
                plugins = scriptPlugins
                outputDir.set(extractedPluginsBlocks)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    // are the configuration of the bootstrap token and all the setting which are specific to the node where kubeadm
    // is executed, including:
    //
    // - NodeRegistration, that holds fields that relate to registering the new node to the cluster;
    // use it to customize the node name, the CRI socket to use or any other settings that should apply to this
    // node only (e.g. the node ip).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // are the configuration of the bootstrap token and all the setting which are specific to the node where kubeadm
    // is executed, including:
    //
    // - NodeRegistration, that holds fields that relate to registering the new node to the cluster;
    // use it to customize the node name, the CRI socket to use or any other settings that should apply to this
    // node only (e.g. the node ip).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    <3> Implement a custom task type called `MyCopyTask` which extends `DefaultTask` and defines the `copyFiles` task action.
    =====
    ====
    
    [[sec:defining_tasks]]
    === 1. Registering tasks
    
    You define actions for Gradle to take by registering tasks in build scripts or plugins.
    
    Tasks are defined using strings for task names:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

            '''
    
            then:
            succeeds "fromAfterEvaluate"
    
            and:
            output.contains "value: from after evaluate and from container rule and from rule"
        }
    
        def "registering a creation rule for a task that is already defined using legacy DSL"() {
            when:
            buildFile << """
                class MyPlugin extends RuleSource {
                    @Mutate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

                    java
                }
    
                tasks.compileJava {
                    options.isWarnings = true
                }
    
                tasks {
                    val myCheck by registering {
                        dependsOn(testClasses)
                        doLast {
                            println(testClasses.get().description)
                        }
                    }
                    test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// +optional
    	BootstrapTokens []bootstraptokenv1.BootstrapToken `json:"bootstrapTokens,omitempty"`
    
    	// NodeRegistration holds fields that relate to registering the new control-plane node to the cluster
    	// +optional
    	NodeRegistration NodeRegistrationOptions `json:"nodeRegistration,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

                            workers.noIsolation().submit(ConcurrentWork::class) {}
                        }
                    }
    
                    tasks {
                        val concurrentTask by registering(ConcurrentTask::class)
                        val generatePrecompiledScriptPluginAccessors by existing {
                            shouldRunAfter(concurrentTask)
                            doFirst {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    For example, unzipping a JAR transforms the artifact of the `java-api,jars` variant into the `java-api,classes` variant.
    Such a transformation is called _Artifact Transform_.
    Gradle allows registering artifact transforms, and when the dependency does not have the requested variant, then Gradle will try to find a chain of artifact transforms for creating the variant.
    
    == Artifact transform selection and execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top