Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,880 for current$ (0.2 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/TrivialChangeDetectorTest.groovy

            0 * _
        }
    
        def "too many elements are delegated (#current.size() current vs #previous.size() previous items)"() {
            when:
            detector.visitChangesSince(previous, current, "test", visitor)
            then:
            1 * delegate.visitChangesSince(previous, current, "test", visitor)
            0 * _
    
            where:
            current          | previous
            [one: 1]         | [one: 1, two: 2]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/crossVersionTest/groovy/org/gradle/internal/scopeids/CrossVersionScopeIdsIntegrationTest.groovy

            assertIdsAreShared(scopeIds.ids(1), scopeIds.ids(0))
        }
    
        void assertIdsAreShared(ScopeIdsFixture.ScopeIds earlier, ScopeIdsFixture.ScopeIds current) {
            assert current.buildInvocation != earlier.buildInvocation
            assert current.workspace == earlier.workspace
            assert current.user == earlier.user
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 06 09:19:00 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/MethodSet.java

            Method current = methods.get(key);
            if (current == null || shouldReplace(current, method)) {
                // Prefer implementation methods over abstract or bridge methods
                methods.put(key, method);
            }
        }
    
        private boolean shouldReplace(Method current, Method method) {
            boolean currentAbstract = Modifier.isAbstract(current.getModifiers());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/rtinfo/RuntimeInformation.java

    /**
     * Provides information about the current Maven runtime.
     *
     * @since 3.0.2
     */
    public interface RuntimeInformation {
    
        /**
         * Retrieves the current Maven version, for example "3.0.2".
         *
         * @return The current Maven version or an empty string if unknown, never {@code null}.
         */
        String getMavenVersion();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/rtinfo/internal/DefaultRuntimeInformation.java

            }
    
            Version current;
            try {
                String mavenVersion = getMavenVersion();
                if (mavenVersion.isEmpty()) {
                    throw new IllegalArgumentException("Could not determine current Maven version");
                }
    
                current = versionScheme.parseVersion(mavenVersion);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 11:03:17 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/OutputFileChangesTest.groovy

            changes(
                FileSystemSnapshot.EMPTY,
                FileSystemSnapshot.EMPTY
            ) == []
        }
    
        def "equal hash for #current.type"() {
            expect:
            changes(previous, current) == []
    
            where:
            previous                        | current
            regularFile("one", 0x1234)      | regularFile("one", 0x1234)
            missing("one")                  | missing("one")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java

              double z = aa.getAndAdd(i, y);
              assertBitEquals(x, z);
              assertBitEquals(x + y, aa.get(i));
            }
          }
        }
      }
    
      /** addAndGet adds given value to current, and returns current value */
      public void testAddAndGet() {
        AtomicDoubleArray aa = new AtomicDoubleArray(SIZE);
        for (int i : new int[] {0, SIZE - 1}) {
          for (double x : VALUES) {
            for (double y : VALUES) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/UserCodeApplicationContext.java

         * Returns the given action when there is no current application.
         */
        <T> Action<T> reapplyCurrentLater(Action<T> action);
    
        /**
         * Returns details of the current application, if any.
         */
        @Nullable
        Application current();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/CompareStrategy.java

        }
    
        public boolean visitChangesSince(C previous, C current, String propertyTitle, ChangeVisitor visitor) {
            if (Iterables.elementsEqual(rootHasher.apply(previous).entries(), rootHasher.apply(current).entries())) {
                return true;
            }
            return changeDetector.visitChangesSince(indexer.apply(previous), indexer.apply(current), propertyTitle, visitor);
        }
    
        public interface ChangeDetector<S> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/EmbeddedKotlinOutputNormalizer.groovy

     * The warnings are produced by the Kotlin compiler when mixing Java versions:
     * <ul>
     *     <li>'compileJava' task (current target is 16) and 'compileKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.</li>
     *     <li>'compileTestJava' task (current target is 16) and 'compileTestKotlin' task (current target is 1.8) jvm target compatibility should be set to the same Java version.</li>
     * </ul>
     * */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top