Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    A *build script* configures a *project* and is associated with an object of type link:{javadocPath}/org/gradle/api/Project.html[`Project`].
    
    image::author-gradle-4.png[Build,500,63,align="left"]
    
    As the build script executes, it configures `Project`.
    
    The build script is either a `\*.gradle` file in Groovy or a `*.gradle.kts` file in Kotlin.
    
    IMPORTANT: _Build scripts_ configure `Project` objects and their children.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. releasenotes/notes/drop-default-tracing.yaml

    upgradeNotes:
      - title: Default tracing to `zipkin.istio-system.svc` removed
        content: |
          In previous versions of Istio, tracing was automatically configured to send traces to `zipkin.istio-system.svc`.
          This default setting has been removed; users will need to explicitly configure where to send traces moving forward.
    
          `istioctl x precheck --from-version=1.21` can automatically detect if you may be impacted by this change.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 934 bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds and configures a Maven repository.
         *
         * @param action The action to use to configure the repository.
         * @return The added repository.
         */
        MavenArtifactRepository maven(Action<? super MavenArtifactRepository> action);
    
        /**
         * Adds and configures an Ivy repository. Newly created instance of {@code IvyArtifactRepository} is passed as an argument to the closure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ArtifactDownloadProgressCrossVersionSpec.groovy

            def downloadDArtifact = events.operation("Download ${projectD.artifact.uri}")
    
            resolveCompileDependencies.parent == applyRootBuildScript
            def configureA = events.operation("Configure project :a")
            configureA.parent == resolveCompileDependencies
            resolveB.parent == resolveCompileDependencies
            downloadCRootMetadata.parent == resolveCompileDependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 08:38:35 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginTest.groovy

            configuredToolchain.javaVersion.toString().contains(someJdk.javaVersion.getMajorVersion())
        }
    
        def "source and target compatibility are configured if toolchain is configured"() {
            given:
            setupProjectWithToolchain(Jvm.current().javaVersion)
    
            when:
            project.sourceSets.create('custom')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectProviderExtensions.kt

    
    /**
     * Allows a [NamedDomainObjectProvider] to be configured via invocation syntax.
     *
     * ```kotlin
     * val rebuild by tasks.registering
     * rebuild { // rebuild.configure {
     *   dependsOn("clean")
     * }
     * ```
     */
    operator fun <T> NamedDomainObjectProvider<T>.invoke(action: T.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1009 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    # Project-wide Gradle settings.
    # IDE (e.g. Android Studio) users:
    # Gradle settings configured through the IDE *will override*
    # any settings specified in this file.
    # For more details on how to configure your build environment visit
    # http://www.gradle.org/docs/current/userguide/build_environment.html
    # Specifies the JVM arguments used for the daemon process.
    # The setting is particularly useful for tweaking memory settings.
    org.gradle.jvmargs=-Xmx1536m
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowActionSpec.java

     *
     * @param <P> the parameters defined by the configured {@link FlowAction dataflow action} type.
     * @since 8.1
     */
    @Incubating
    public interface FlowActionSpec<P extends FlowParameters> {
    
        /**
         * Returns the parameters defined by the configured {@link FlowAction dataflow action}.
         *
         * @return mutable parameters object, never null.
         * @since 8.1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 18:52:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top