Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,036 for Configurer (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigureAction.java

    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * Can be implemented by plugins to auto-configure each project.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     * Each action is invoked for each 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: Mon May 02 16:56:13 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/cache/CacheConfigurations.java

    /**
     * Configures caches stored in the user home directory.  Note that these values can be read at any time,
     * but can only be configured via an init script, ideally stored in the init.d directory in the user home
     * directory.
     *
     * @since 8.0
     */
    @HasInternalProtocol
    @Incubating
    public interface CacheConfigurations {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/normalization/InputNormalizationHandler.java

     * limitations under the License.
     */
    
    package org.gradle.normalization;
    
    import org.gradle.api.Action;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Used to configure input normalization.
     *
     * Currently, it is only possible to configure runtime classpath normalization.
     *
     * @since 4.0
     */
    @HasInternalProtocol
    public interface InputNormalizationHandler {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 07:18:07 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/ProjectStateInternalSpec.groovy

            stateString { configured() } == "EXECUTED"
            stateString { failed(new ProjectConfigurationException("bang", [])); configured() } == "FAILED (bang)"
        }
    
        String stateString(@DelegatesTo(ProjectStateInternal) Closure closure) {
            def state = ConfigureUtil.configure(closure, new ProjectStateInternal())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:07 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

            when:
            container.configure {
                someObj { throw failure }
            }
    
            then:
            RuntimeException e = thrown()
            e.is(failure)
        }
    
        def "implicitly creates an object when container is being configured"() {
            when:
            container.configure {
                obj1
                obj2 { prop = 'value' }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/LayoutToPropertiesConverterTest.groovy

        }
    
        def "configures from -D command line argument"() {
            when:
            def properties = properties("-D$DaemonBuildOptions.IdleTimeoutOption.GRADLE_PROPERTY=125")
            def layout = layout(properties)
    
            then:
            converter.convert(properties, layout).properties.get(DaemonBuildOptions.IdleTimeoutOption.GRADLE_PROPERTY) == "125"
        }
    
        def "configures from system property of current JVM"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  7. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/CatalogPluginExtension.java

     *
     * @since 7.0
     */
    @HasInternalProtocol
    public interface CatalogPluginExtension {
        /**
         * Configures the version catalog.
         * @param spec the spec used to configure the dependencies
         */
        void versionCatalog(Action<? super VersionCatalogBuilder> spec);
    
        /**
         * Configures an explicit alias for a dependency in case of name clash
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

        /**
         * Configures an object by name, without triggering its creation or configuration, failing if there is no such object.
         *
         * @see [NamedDomainObjectContainer.named]
         * @see [NamedDomainObjectProvider.configure]
         */
        operator fun String.invoke(configuration: T.() -> Unit): NamedDomainObjectProvider<T> =
            named(this).apply { configure(configuration) }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtensionContainer.java

         *
         * @param type extension type
         * @param action the configure action
         * @throws UnknownDomainObjectException if no extension is found.
         */
        <T> void configure(Class<T> type, Action<? super T> action);
    
        /**
         * Looks for the extension of the specified type and configures it with the supplied action.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:20 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            what             | when                         | withTool | withJavaHome | withExecutable | withJavaExtension | target
            "current JVM"    | "when nothing is configured" | null     | null         | null           | null              | "current"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top