Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,697 for Configurer (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * The given action is used to configure a {@link DeleteSpec}, which is then used to delete the files.
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
        WorkResult delete(Action<? super DeleteSpec> action);
    
        /**
         * Creates and configures file access permissions. Differs from directory permissions due to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
         * local repository manager needs to be configured to make session be able to create session instance.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
         * local repository manager needs to be configured to make session be able to create session instance.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/providers/mapProperty/kotlin/build.gradle.kts

            }
        }
    }
    
    // Some values to be configured later
    var b = 0
    var c = 0
    
    tasks.register<Generator>("generate") {
        properties.put("a", 1)
        // Values have not been configured yet
        properties.put("b", providers.provider { b })
        properties.putAll(providers.provider { mapOf("c" to c, "d" to c + 1) })
    }
    
    // Configure the values. There is no need to reconfigure the task
    b = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 646 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/providers/mapProperty/groovy/build.gradle

            }
        }
    }
    
    // Some values to be configured later
    def b = 0
    def c = 0
    
    tasks.register('generate', Generator) {
        properties.put("a", 1)
        // Values have not been configured yet
        properties.put("b", providers.provider { b })
        properties.putAll(providers.provider { [c: c, d: c + 1] })
    }
    
    // Configure the values. There is no need to reconfigure the task
    b = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 629 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    In Gradle, source code directories are represented using the concept of <<java_plugin.adoc#source_sets,source sets>>.
    A source set is configured to point to one or more directories containing source code.
    When you define a source set, Gradle automatically sets up compilation tasks for the specified directories.
    
    A pre-configured source set can be created with one line of build script code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top