Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 549 for Sall (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  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/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

            try {
                oos.writeObject(message);
            } finally {
                oos.flush();
            }
        }
    
        /**
         * Read back an object from the provided stream that has been serialized by a call to {@link #send(Object, java.io.OutputStream)}. Any {@link Throwable} that cannot be de-serialized (for whatever
         * reason) will be replaced by a {@link PlaceholderException}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

     * A problem is identified using a key object.
     * The implementation should be thread-safe and should support tracking problems in multiple threads, each with its own call stack.
     */
    interface DynamicCallProblemReporting {
        /**
         * Begin tracking a new dynamic call on the call stack, with no problems reported in it initially.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            property.finalizeValue()
    
            then:
            1 * function.call() >> {
                // Emulate concurrent get() in other thread
                EvaluationContext.current().evaluateNested(property::get)
            }
            1 * function.call() >> someValue()
            0 * function._
    
            when:
            def result = property.get()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

            synchronized (instanceLock) {
                return stopActions;
            }
        }
    
        @Override
        public void maybeStop() {
            // We don't want to call stop actions with the lock held.
            ExecutionResult<Void> stopResult = ExecutionResult.forEach(getStopActions(), action -> action.accept(this));
            synchronized (instanceLock) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    remote access API] and https://confluence.jetbrains.com/display/TCD10/REST+API[Teamcity REST API]).
    
    Typically, CI builds above a certain size include parallel sections to utilize multiple agents. With parallel pipelines you can measure the wall-clock time it takes for a set of changes to go from having been pushed to version control to being built, verified and deployed. The build cache's effect in this case can be measured in the reduction of the time developers have to wait for feedback...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

                        def value = ${read.groovyExpression}
                        println("apply = " + value)
    
                        // Instance call
                        def sys = System
                        println("apply INSTANCE = " + sys.getProperty("INSTANCE"))
    
                        // Call from closure
                        def cl = { p ->
                            println("\$p CLOSURE = " + sys.getProperty("CLOSURE"))
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top