Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 414 for executors (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DefaultDaemonConnection.java

            }
    
            @Override
            public void stop() {
                ManagedExecutor executor;
                lock.lock();
                try {
                    executor = this.executor;
                } finally {
                    lock.unlock();
                }
                if (executor != null) {
                    executor.stop();
                }
            }
    
            public void add(C command) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

        abstract TestClassExecutionResult assertFailedToExecute(TestExecutionResult testResult, String testClassName)
    
        String getStableEnvironmentDependencies() {
            return testFrameworkDependencies
        }
    
        def "executes tests in the correct environment"() {
            given:
            file('src/test/java/org/gradle/OkTest.java') << """
                package org.gradle;
    
                import java.io.File;
                import java.io.PrintStream;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

            @Override
            public void connectStreams(Process process, String processName, Executor executor) {
                inputHandler.connectStreams(process, processName, executor);
                outputHandler.connectStreams(process, processName, executor);
            }
    
            @Override
            public void start() {
                inputHandler.start();
                outputHandler.start();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                }
    
                override fun close(): State {
                    if (executor.isShutdown) {
                        writer.close()
                    } else {
                        executor.submit {
                            writer.close()
                        }
                        executor.shutdown()
                    }
                    return Closed
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

        public static class ParallelTransformExecutor {
    
            private final PersistentCache cache;
            private final ManagedExecutor executor;
    
            public ParallelTransformExecutor(PersistentCache cache, ManagedExecutor executor) {
                this.cache = cache;
                this.executor = executor;
            }
    
            public <T, U> List<U> transformAll(Collection<T> inputs, ValueOrTransformProvider<T, U> valueOrTransformProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            def workerSuite = events.operationMatches("Gradle Test Executor \\d+")
            workerSuite.descriptor.jvmTestKind == JvmTestKind.SUITE
            workerSuite.descriptor.name.matches 'Gradle Test Executor \\d+'
            workerSuite.descriptor.displayName.matches 'Gradle Test Executor \\d+'
            workerSuite.descriptor.suiteName.matches 'Gradle Test Executor \\d+'
            workerSuite.descriptor.className == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            file(".gradle/buildOutputCleanup/cache.properties").text = """
                gradle.version=1.0
            """
        }
    
        def "stale #type is removed before task executes"(String type, Closure creationCommand) {
            def fixture = new StaleOutputFixture(buildDir: 'build')
            fixture.createInputs()
            creationCommand(fixture.outputDir)
            creationCommand(fixture.outputFile)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/ConcurrentTestUtil.groovy

                ManagedScheduledExecutor createScheduled(String displayName, int fixedSize) {
                    throw new UnsupportedOperationException()
                }
            }
        }
    
        Executor getExecutor() {
            return new Executor() {
                void execute(Runnable runnable) {
                    startThread(runnable)
                }
            }
        }
    
        TestThread startThread(Runnable cl) {
            lock.lock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

          ListenableFuture<I> input,
          AsyncFunction<? super I, ? extends O> function,
          Executor executor) {
        checkNotNull(executor);
        AsyncTransformFuture<I, O> output = new AsyncTransformFuture<>(input, function);
        input.addListener(output, rejectionPropagatingExecutor(executor, output));
        return output;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

          ListenableFuture<I> input,
          AsyncFunction<? super I, ? extends O> function,
          Executor executor) {
        checkNotNull(executor);
        AsyncTransformFuture<I, O> output = new AsyncTransformFuture<>(input, function);
        input.addListener(output, rejectionPropagatingExecutor(executor, output));
        return output;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top