Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,036 for Configurer (0.22 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/configure/CreateDefaultBuildTypesTest.groovy

        def "adds a default build type when none configured"() {
            when:
            rule.createDefaultBuildTypes(buildTypes)
    
            then:
            1 * buildTypes.empty >> true
            1 * buildTypes.create("debug")
            0 * buildTypes._
        }
    
        def "does not add default build type when some configured"() {
            when:
            rule.createDefaultBuildTypes(buildTypes)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyConstraintHandler.java

        /**
         * Adds a dependency constraint to the given configuration, and configures the dependency constraint using the given closure.
         *
         * @param configurationName The name of the configuration.
         * @param dependencyNotation The dependency constraint notation
         * @param configureAction The closure to use to configure the dependency constraint.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectProvider.java

     * @since 4.10
     */
    public interface NamedDomainObjectProvider<T> extends Provider<T> {
        /**
         * Configures the domain object with the given action. Actions are run in the order added.
         *
         * @param action A {@link Action} that can configure the domain object when required.
         * @since 4.10
         */
        void configure(Action<? super T> action);
    
        /**
         * The domain object name referenced by this provider.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 04 05:48:20 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. docs/de/docs/how-to/configure-swagger-ui.md

    Nils Lindemann <******@****.***> 1711822669 +0100
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:17:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskProvider.java

     */
    public interface TaskProvider<T extends Task> extends NamedDomainObjectProvider<T> {
        /**
         * Configures the task with the given action. Actions are run in the order added.
         *
         * @param action A {@link Action} that can configure the task when required.
         * @since 4.8
         */
        @Override
        void configure(Action<? super T> action);
    
        /**
         * The task name referenced by this provider.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

         * <p>TODO: example usage</p>
         *
         * @param configureClosure The closure to configure this container with
         * @return This.
         */
        @Override
        NamedDomainObjectContainer<T> configure(Closure configureClosure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSrcProjectConfigurationAction.java

    /**
     * Can be implemented by plugins to auto-configure the buildSrc root project.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     * Each action is invoked for the buildSrc project that is to be configured, before the project has been configured. Actions are executed
     * in an arbitrary order.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 24 17:10:43 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

            fileOperations.copySpec()
    
        /**
         * Creates a {@link CopySpec} which can later be used to copy files or create an archive.
         *
         * @param configuration The block to use to configure the [CopySpec].
         * @return The configured [CopySpec]
         */
        @Suppress("unused")
        fun copySpec(configuration: CopySpec.() -> Unit): CopySpec =
            fileOperations.copySpec().also(configuration)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// for internal book keeping; access only from within registerWithApiserver
    	registrationCompleted bool
    
    	// dnsConfigurer is used for setting up DNS resolver configuration when launching pods.
    	dnsConfigurer *dns.Configurer
    
    	// serviceLister knows how to list services
    	serviceLister serviceLister
    	// serviceHasSynced indicates whether services have been sync'd at least once.
    	// Check this before trusting a response from the lister.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  10. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Sign.java

            dependsOn(publishArtifact);
            addSignature(new Signature(publishArtifact, this, this));
        }
    
        /**
         * Configures the task to sign each of the given files
         */
        public void sign(File... files) {
            addSignatures(null, files);
        }
    
        /**
         * Configures the task to sign each of the given artifacts, using the given classifier as the classifier for the resultant signature publish artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top