Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 105 for participant (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/ChecksumEntry.java

        private final ChecksumKind checksumKind;
        private final int hashCode;
    
        // This field is mutable and is just a performance optimization
        // to avoid creating an extra map in the end, so it does NOT
        // participate in equals/hashcode
        private String checksum;
    
        ChecksumEntry(ModuleComponentArtifactIdentifier id, ArtifactVerificationOperation.ArtifactKind artifactKind, File file, ChecksumKind checksumKind) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-advanced-published/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)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/scopeids/ScopeIdsIntegrationTest.groovy

            when:
            file("buildSrc/build.gradle").text = ""
    
            then:
            succeeds "help"
            scopeIds.lastBuildPaths() == [":", ":buildSrc"]
        }
    
        def "composite participants inherit the same ids"() {
            when:
            settingsFile << """
                includeBuild "a"
                includeBuild "b"
            """
    
            file("a/settings.gradle") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

        private final Property<Credentials> credentials = getProject().getObjects().property(Credentials.class);
    
        public PublishToIvyRepository() {
    
            // Allow the publication to participate in incremental build
            getInputs().files((Callable<FileCollection>) () -> {
                IvyPublicationInternal publicationInternal = getPublicationInternal();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. code_of_conduct.md

    * Gracefully accepting constructive criticism
    * Focusing on what is best for the community
    * Showing empathy towards other community members
    
    Examples of unacceptable behavior by participants include:
    
    * The use of sexualized language or imagery and unwelcome sexual attention or
      advances
    * Trolling, insulting/derogatory comments, and personal or political attacks
    * Public or private harassment
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 20 18:38:58 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top