Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 101 for difference (0.65 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/PropertyChanges.java

                return true;
            }
            Stream<DescriptiveChange> removedProperties = Sets.difference(previous, current).stream()
                .map(removedProperty -> new DescriptiveChange("%s property '%s' has been removed for %s",
                    title, removedProperty, executable.getDisplayName()));
            Stream<DescriptiveChange> addedProperties = Sets.difference(current, previous).stream()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/ListValueSnapshot.java

            for (int i = 0; i < pos; i++) {
                newElements.add(elements.get(i));
            }
            if (pos < list.size()) {
                // If we broke out of the comparison because there was a difference, we can reuse the snapshot of the new element
                if (newElement != null) {
                    newElements.add(newElement);
                    pos++;
                }
                // Anything left over only exists in the new list
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

    Don't run in parallel mode, as the expectation for the setup build are incorrect and running in parallel
    does not really make any difference to the coverage
    """)
        def "runs tasks in different projects in parallel by default"() {
            server.start()
    
            given:
            createDirs("a", "b", "c")
            settingsFile << """
                include 'a', 'b', 'c'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/20_contributor_feature_request.yml

          description: Tell us how it should work
        validations:
          required: true
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior (optional)
          description: Explain the difference from current behavior
        validations:
          required: false
      - type: textarea
        id: context
        attributes:
          label: Context
          description: |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 11:10:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/RuleSource.java

     * <p>
     * The following constraints apply to all rule methods:
     * <ul>
     * <li>A method may only be annotated by at most one of the above annotations.</li>
     * <li>A rule method may be {@code static} or not; it makes no difference.</li>
     * <li>A rule method cannot be generic (i.e. cannot have type parameters).</li>
     * <li>With the exception of {@link Model} methods, all methods must have at least one parameter.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/Path.java

        }
    
        /**
         * Appends the supplied path to this path, returning the new path.
         * The resulting path with be absolute or relative based on the path being appended _to_.
         * It makes no difference if the _appended_ path is absolute or relative.
         *
         * <pre>
         * path(':a:b').append(path(':c:d')) == path(':a:b:c:d')
         * path(':a:b').append(path('c:d')) == path(':a:b:c:d')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 13:03:23 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                against THE LATEST VERSION WHICH IS RELEASED FROM RELEASE BRANCH (from `released-version.json` on this branch)
                AND LOWER THAN CURRENT BASE VERSION (from `version.txt` on this branch).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/KotlinMetadata.kt

    )
    
    
    internal
    fun jvmGetterSignatureFor(propertyName: String, desc: String): JvmMethodSignature =
        // Accessors honor the kotlin property jvm interop convention.
        // The only difference with JavaBean 1.01 is to prefer `get` over `is` for boolean properties.
        // The following code also complies with Section 8.8 of the spec, "Capitalization of inferred names.".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProducerGuard.java

         * Creates a {@link ProducerGuard} which evenly spreads calls over a fixed number of locks.
         * This means that in some cases two different keys can block on the same lock. The benefit of
         * this strategy is that it uses only a fixed amount of memory. If your code depends on
         * different keys always getting different locks, use a {@link #adaptive()} guard instead.
         */
        public static <T> ProducerGuard<T> striped() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:31 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            then:
            IllegalStateException e = thrown()
            e.message == "Cache '${tmpDir.testDirectory}' is already open with different properties."
    
            cleanup:
            factory.close()
        }
    
        void "fails when directory cache when cache is already open with different lock mode"() {
            given:
            factory.open(tmpDir.testDirectory, null, [prop: 'value'], mode(Shared), null, null)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top