Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 3,036 for Configurer (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. releasenotes/notes/27734.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: security
    issue:
      - 27734
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 29 20:13:46 UTC 2021
    - 232 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         */
        SourceDirectorySet getResources();
    
        /**
         * Configures the non-Java resources for this set.
         *
         * <p>The given closure is used to configure the {@link SourceDirectorySet} which contains the resources.
         *
         * @param configureClosure The closure to use to configure the resources.
         * @return this
         */
        @SuppressWarnings("rawtypes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    To make this work, we need to configure each task to know where to look for its inputs and where to place its outputs.
    Ensure that the producing and consuming tasks are configured with the same location and attach task dependencies between the tasks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top