Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    [source, groovy]
    ----
    interface CountingParams extends BuildServiceParameters {
        Property<Integer> getInitial()
    }
    ----
    
    A build service implementation can also optionally implement `AutoCloseable`, in which case Gradle will call the build service instance's `close()` method when it discards the service instance.
    This happens sometime between the completion of the last task that uses the build service and the end of the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskDependency.java

                } else if (dependency instanceof Closure) {
                    Closure closure = (Closure) dependency;
                    Object closureResult = closure.call(context.getTask());
                    if (closureResult != null) {
                        queue.addFirst(closureResult);
                    }
                } else if (dependency instanceof List) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                            // Do not call `startWaitingForNextItem()` as there may be work available but this worker cannot start it, and so should not be considered "waiting for work".
                            // The health monitoring is currently only concerned with whether work can be started.
                            // At some point it could be improved to track the health of all worker threads, not just the plan executor threads
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top