Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for participant (0.16 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

    /**
     * The ID of a single build invocation.
     *
     * Here, the term "build" is used to represent the overall invocation.
     * For example, buildSrc shares the same build scope ID as the overall build.
     * All composite participants also share the same build scope ID.
     * That is, all “nested” build trees (in terms of GradleLauncher, GradleBuild etc.) share the same build invocation ID.
     *
     * This ID is, by definition, not persistent.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        }
    
        void doesNotHaveSecondaryVariantsLegend() {
            outputDoesNotContain("(*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. SUPPORT.md

    - For in-depth information about how to use Istio, visit [istio.io](https://istio.io)
    - To ask questions and get assistance from our community, visit [GitHub Discussions](https://github.com/istio/istio/discussions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:00:41 UTC 2024
    - 411 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            buildC.rootProject.name == "buildC"
            buildC.projects.size() == 1
            buildC.includedBuilds.empty
        }
    
        @TargetGradleVersion(">=4.10")
        def "root build model exposes all builds that participate in the composite when nested included builds are present"() {
            given:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

    public abstract class AbstractPublishToMaven extends DefaultTask {
    
        private final Transient.Var<MavenPublicationInternal> publication = varOf();
    
        public AbstractPublishToMaven() {
            // Allow the publication to participate in incremental build
            getInputs().files((Callable<FileCollection>) () -> {
                MavenPublicationInternal publicationInternal = getPublicationInternal();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentableClosure.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath;
    
    import org.gradle.api.NonNullApi;
    
    /**
     * Represents a closure that can participate in dynamic calls instrumentation.
     * Initially, such a closure may not be completely prepared for participating in dynamic call interception,
     * which is a performance optimization. <p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/typesafe/TypeSafeProjectAccessorsCompositeBuildsIntegrationTest.groovy

        // not necessarily planned to be implemented, but capturing the existing behavior
        @ToBeImplemented
        def "included builds participate in type-safe accessors generation"() {
            settingsFile << """
                rootProject.name = 'test'
    
                includeBuild 'other'
            """
            file('other/settings.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 15:31:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

            private final int number;
            private int participants;
    
            private ClockTickImpl(int number) {
                this.number = number;
            }
    
            @Override
            public String toString() {
                return String.format("tick %d", number);
            }
    
            @Override
            public ClockTick hasParticipants(int count) {
                participants = count;
                return this;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced/tests/outgoingVariants.out

           - Artifacts
              - build/resources/main (artifactType = java-resources-directory)
    
    
    (*) Secondary variants are variants created via the Configuration#getOutgoing(): ConfigurationPublications API which also participate in selection, in addition to the configuration itself.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/EvaluateSettingsBuildOperationIntegrationTest.groovy

            succeeds('help')
    
            then:
            verifySettings(operation(), customSettingsFile)
            operation().details.buildPath == ":"
        }
    
        def "composite participants expose their settings details"() {
            createDirs("a", "nested")
            settingsFile << """
                include "a"
                includeBuild "nested"
    
                rootProject.name = "root"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top