Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 215 for Sall (0.04 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepository.java

                while (retries < maxTentativesCount) {
                    retries++;
                    E failure;
                    Throwable unexpectedFailure = null;
                    try {
                        failure = operation.call();
                        if (failure == null) {
                            if (retries > 1) {
                                LOGGER.debug("Successfully fetched external resource after {} retries", retries - 1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/DefaultFileLockContentionHandler.java

     * <p>
     * The Lock Owner will inform this contention handler that it holds the lock via {@link #start(long, Consumer)}.
     * There it provides an action that this handler can call to release the lock, in case a release is requested.
     * <p>
     * A Lock Requester will notice that a lock is held by a Lock Holder by failing to lock the lock file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

            @Override
            public <T> T readFile(Callable<? extends T> action) throws LockTimeoutException, FileIntegrityViolationException, InsufficientLockModeException {
                try {
                    return action.call();
                } catch (Exception e) {
                    throw UncheckedException.throwAsUncheckedException(e);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * - a `writeObject` method with no corresponding `readObject`; `writeObject` must eventually call [ObjectOutputStream.defaultWriteObject];
     * - a `readObject` method with no corresponding `writeObject`; `readObject` must eventually call [ObjectInputStream.defaultReadObject];
     * - a `writeReplace` method to allow the class to nominate a replacement to be written;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.completed(9, { it.resultType == null })
            then: 1 * processor.completed(6, { it.resultType == null })
    
            0 * processor._
        }
    
        def "stopNow should fail on call"() {
            when: classProcessor.stopNow()
    
            then:
            UnsupportedOperationException uoe = thrown()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                        error("expected a configuring lambda in the call of ${function.schemaFunction}, but it was not provided")
                }
            } else if (lambda != null) {
                error("a lambda is not expected in the call of ${function.schemaFunction}, but it was provided")
            }
        }
    
        private
        fun AnalysisContext.doRecordSemanticsSideEffects(
            call: FunctionCall,
            semantics: FunctionSemantics,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

            stderr.reset()
        }
    
        boolean assertTaskExecuted(String taskPath) {
            assert events.all.findAll { it instanceof TaskFinishEvent }.any { it.descriptor.taskPath == taskPath }
            true
        }
    
        def assertTaskNotExecuted(String taskPath) {
            assert !events.all.findAll { it instanceof TaskFinishEvent }.any { it.descriptor.taskPath == taskPath }
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                }
            });
    
            testComponent.getTestBinary().convention(project.provider(new Callable<CppTestExecutable>() {
                @Override
                public CppTestExecutable call() throws Exception {
                    return getAllBuildableTestExecutable()
                            .filter(it -> isCurrentArchitecture(it.getNativePlatform()))
                            .findFirst()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/Instrumented.java

         *
         * @param caller the lookup for the caller (JVM-supplied)
         * @param callType the type of the call (corresponds to {@link IndyInterface.CallType} constant)
         * @param type the call site type
         * @param name the real method name
         * @param flags call flags
         * @return the produced CallSite
         * @see IndyInterface
         */
        // Called by generated code
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

                }
            }
    
            try {
                return invokeOriginal.call();
            } catch (Throwable e) {
                ThrowAsUnchecked.doThrow(e);
                throw new IllegalStateException("this is unreachable code, the call above should always throw an exception");
            }
        }
    
        //region implementations delegating to adaptee
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top