Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 109 for reregistering (0.17 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/api/internal/BuildScopeListenerRegistrationListener.java

    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.Build.class)
    public interface BuildScopeListenerRegistrationListener {
    
        /**
         * Called when registering a build scope listener.
         */
        void onBuildScopeListenerRegistration(Object listener, String invocationDescription, Object invocationSource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/groovy/build.gradle

    // tag::convention-callsites[]
    
    // tag::convention-callsites-from-plugin[]
    // setting convention when registering a task from plugin
    class GreetingPlugin implements Plugin<Project> {
        void apply(Project project) {
            project.getTasks().register("hello", GreetingTask) {
                greeter.convention("Greeter")
            }
        }
    }
    // end::convention-callsites-from-plugin[]
    
    apply plugin: GreetingPlugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:11 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/propertyConventionCallsites/kotlin/build.gradle.kts

    // tag::convention-callsites[]
    
    // tag::convention-callsites-from-plugin[]
    // setting convention when registering a task from plugin
    class GreetingPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            project.getTasks().register<GreetingTask>("hello") {
                greeter.convention("Greeter")
            }
        }
    }
    // end::convention-callsites-from-plugin[]
    
    // tag::convention-callsites-from-buildscript[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 16:56:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-full"))
        crossVersionTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    val executableJar by tasks.registering(Jar::class) {
        archiveFileName = "gradle-wrapper-executable.jar"
        manifest {
            attributes.remove(Attributes.Name.IMPLEMENTATION_VERSION.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/ide/problems/src/main/java/org/gradle/problems/internal/services/ProblemsServices.java

    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    
    /**
     * Service registration entry point for the Problems API.
     * <p>
     * This class is responsible registering all service providers for the Problems API.
     * See the {@code META-INF/services} directory to find the respective metadata file triggering the DI framework to load this class.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/internal/plugins/software/RegistersSoftwareTypes.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Marks a Settings plugin as registering one or more software types.
     *
     * @since 8.9
     */
    @Incubating
    @Target({ElementType.TYPE})
    @Retention(RetentionPolicy.RUNTIME)
    public @interface RegistersSoftwareTypes {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/smoke-ide-test/build.gradle.kts

    val smokeIdeTestDistributionRuntimeOnly: Configuration by configurations
    val ideStarter by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
    }
    
    val unzipIdeStarter by tasks.registering(ProcessResources::class) {
        from(zipTree(ideStarter.elements.map { it.single() }))
        into(layout.buildDirectory.dir("ideStarter"))
    }
    
    plugins.withType<IdeaPlugin> {
        with(model) {
            module {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    ----
    ====
    
    == Registering a build service and connecting it to a task
    
    To create a build service, you register the service instance using the link:{javadocPath}/org/gradle/api/services/BuildServiceRegistry.html#registerIfAbsent-java.lang.String-java.lang.Class-org.gradle.api.Action-[BuildServiceRegistry.registerIfAbsent()] method.
    Registering the service does not create the service instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-basics"))
    }
    
    val generateTestKitPackageList by tasks.registering(PackageListGenerator::class) {
        classpath.from(sourceSets.main.map { it.runtimeClasspath })
        outputFile = layout.buildDirectory.file("runtime-api-info/test-kit-relocated.txt")
    }
    tasks.jar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top