Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,036 for Configurer (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/ScriptHandler.java

         */
        RepositoryHandler getRepositories();
    
        /**
         * Configures the repositories for the script dependencies. Executes the given closure against the {@link
         * RepositoryHandler} for this handler. The {@link RepositoryHandler} is passed to the closure as the closure's
         * delegate.
         *
         * @param configureClosure the closure to use to configure the repositories.
         */
        void repositories(Closure configureClosure);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/kotlin/app/build.gradle.kts

            println("Input parameter: $inputParameter")
        }
    }
    
    // Plugin class that configures the extension and task
    class MyPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            // Create and configure the extension
            val extension = project.extensions.create("myExtension", MyExtension::class.java)
            // Create and configure the custom task
            project.tasks.register("myTask", MyCustomTask::class.java) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 923 bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

     * @param action The action to use to configure the repository.
     * @return The added repository.
     *
     * @see [RepositoryHandler.maven]
     * @see [MavenArtifactRepository.setUrl]
     */
    fun RepositoryHandler.maven(url: Any, action: MavenArtifactRepository.() -> Unit) =
        maven {
            setUrl(url)
            action()
        }
    
    
    /**
     * Adds and configures an Ivy repository.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/JavaResolutionConsistency.java

         *     </li>
         * </ul>
         *
         * In addition, the test compile classpath is going to be configured to
         * be consistent with the main compile classpath.
         */
        void useCompileClasspathVersions();
    
        /**
         * Configures the compile classpath of every source set to be consistent
         * with the runtime classpath. For dependencies which are common between
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/software/publish/src/main/java/org/gradle/api/publish/VersionMappingStrategy.java

     *
     * @since 5.2
     */
    @HasInternalProtocol
    public interface VersionMappingStrategy {
        /**
         * Configures the version mapping strategy for all variants
         * @param action the configuration action
         */
        void allVariants(Action<? super VariantVersionMappingStrategy> action);
    
        /**
         * Configures the version mapping strategy for the variant which matches the provided
         * attribute value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/ProjectConfigurer.java

    @ServiceScope(Scope.BuildTree.class)
    public interface ProjectConfigurer {
        /**
         * Configures the given project.
         */
        void configure(ProjectInternal project);
    
        /**
         * Configures the owned project, discovers tasks and binds model rules.
         */
        void configureFully(ProjectState projectState);
    
        /**
         * Configures the given project and all its sub-projects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPluginConvention.java

        public abstract void setDeploymentDescriptor(DeploymentDescriptor deploymentDescriptor);
    
        /**
         * Configures the deployment descriptor for this EAR archive.
         *
         * <p>The given closure is executed to configure the deployment descriptor.
         * The {@link DeploymentDescriptor} is passed to the closure as its delegate.</p>
         *
         * @param configureClosure The closure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. releasenotes/notes/fix-concurrency.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    upgradeNotes:
    - title: Proxy Concurrency changes
      content: |
        Previously, the proxy `concurrency` setting, which configures how many worker threads the proxy runs,
        was inconsistently configured between sidecars and different gateway installation mechanisms.
        This often led to gateways running with concurrency based on the number of physical cores on the host machine,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 13 11:53:23 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

    
    /**
     * Configures the repositories for this project.
     *
     * Executes the given configuration block against the [RepositoryHandler] for this
     * project.
     *
     * @param configuration the configuration block.
     */
    fun Project.repositories(configuration: RepositoryHandler.() -> Unit) =
        repositories.configuration()
    
    
    /**
     * Configures the repositories for the script dependencies.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/groovy/app/build.gradle

            println("Input parameter: $inputParameter")
        }
    }
    
    // Plugin class that configures the extension and task
    class MyPlugin implements Plugin<Project> {
        void apply(Project project) {
            // Create and configure the extension
            def extension = project.extensions.create("myExtension", MyExtension)
            // Create and configure the custom task
            project.tasks.register("myTask", MyCustomTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 881 bytes
    - Viewed (0)
Back to top