Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 783 for workerCh (0.5 sec)

  1. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorLoggingIntegrationTest.groovy

                    
                    java.util.logging.Logger.getLogger("worker").warning("jul warn");
                    java.util.logging.Logger.getLogger("worker").warning("jul info");
                    java.util.logging.Logger.getLogger("worker").fine("jul debug message");
                    java.util.logging.Logger.getLogger("worker").severe("jul error");
                    
                    System.out.println("stdout message");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonIntegrationTest.groovy

    import org.gradle.internal.jvm.Jvm
    import org.gradle.test.precondition.TestPrecondition
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.workers.fixtures.OptionsVerifier
    import org.gradle.workers.fixtures.WorkerExecutorFixture
    import org.junit.Assume
    
    import static org.gradle.api.internal.file.TestFiles.systemSpecificAbsolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorCompositeBuildIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import spock.lang.Issue
    
    class WorkerExecutorCompositeBuildIntegrationTest extends AbstractWorkerExecutorIntegrationTest {
        def plugin = testDirectory.createDir("plugin")
        def lib = testDirectory.createDir("lib")
    
        @Issue("https://github.com/gradle/gradle/issues/10317")
        def "can use worker api with composite builds using #pluginId"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/process/internal/ErrorInWorkerSocketIntegrationTest.groovy

            fails('runBrokenWorker')
    
            then:
            failureCauseContains('No response was received from Gradle Worker but the worker process has finished')
            executer.getGradleUserHomeDir().file('workers').listFiles().find { it.name.startsWith('worker-error') }.text.contains(MESSAGE)
        }
    
        def "worker won't hang when error occurs in socket connection in included build"() {
            given:
            requireOwnGradleUserHomeDir()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                import org.gradle.api.tasks.Classpath;
                import org.gradle.api.tasks.TaskAction;
                import org.gradle.workers.WorkerExecutor;
                import org.gradle.workers.WorkAction;
                import org.gradle.workers.WorkParameters;
                import org.gradle.workers.WorkQueue;
    
                import javax.inject.Inject;
    
                public class WorkerRunningPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/DefaultWorkerExecutorTest.groovy

    import org.gradle.internal.work.WorkerThreadRegistry
    import org.gradle.process.internal.worker.child.WorkerDirectoryProvider
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.util.UsesNativeServices
    import org.gradle.util.internal.RedirectStdOutAndErr
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkerSpec
    import org.junit.Rule
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 15:27:52 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorProblemsApiIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.jvm.Jvm
    import org.gradle.workers.fixtures.WorkerExecutorFixture
    
    class WorkerExecutorProblemsApiIntegrationTest extends AbstractIntegrationSpec {
    
        // Worker-written file containing the build operation id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParallelBuildOperationsIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.UnsupportedWithConfigurationCache
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.api.logging.LogLevel
    import org.gradle.process.internal.worker.MultiRequestClient
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import spock.lang.Specification
    
    class WorkerDaemonClientTest extends Specification {
        def "underlying worker is executed when client is executed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorJdkVersionsIntegrationTest.groovy

                }
            """
            file("included/src/main/java/com/example/TestWorkAction.java") << """
                package com.example;
    
                import org.gradle.workers.WorkAction;
                import org.gradle.workers.WorkParameters;
                import javax.inject.Inject;
    
                abstract class TestWorkAction implements WorkAction<WorkParameters.None> {
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top