Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 884 for Forked (0.13 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            } else {
                "workerExecutor.${actionName == 'Forked' ? 'process' : 'no'}Isolation().submit(${actionName}WorkAction) { }"
            }
        }
    
        def "generates events for worker actions executed in-process and forked"() {
            given:
            settingsFile << "rootProject.name = 'single'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                // forked phase
                if (md.getExecuteLifecycle() != null && !md.getExecuteLifecycle().isEmpty()) {
                    buff.append('[');
                    buff.append(md.getExecuteLifecycle());
                    buff.append(']');
                }
                buff.append(md.getExecutePhase());
            } else {
                // forked goal
                buff.append(':');
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            }
    
            then:
            events.tests.size() == 2 * (1 + 2 + 2 + 6)  // two test tasks with each: 1 root suite, 2 worker processes, 2 tests classes, 6 tests
            events.successful.size() == 8 // two test tasks with 4 tests
            events.failed.size() == 14 // two test tasks with: 1 root suite, 2 worker processes, 2 test classes, 2 tests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                    </configuration>
                </plugin>
                <plugin><!-- Using jdk 1.5.0_22, package-info.java files are compiled correctly. -->
                    <!--
                    java compiler plugin forked in extra process
                    -->
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.1</version>
                    <configuration>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                    </configuration>
                </plugin>
                <plugin><!-- Using jdk 1.5.0_22, package-info.java files are compiled correctly. -->
                    <!--
                    java compiler plugin forked in extra process
                    -->
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.3</version>
                    <configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

                apply plugin: 'java'
                ${mavenCentralRepository()}
                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
                compileTestJava.options.fork = true  // forked as 'Gradle Test Executor 1'
            """
    
            file("src/test/java/MyTest.java") << """
                package example;
                public class MyTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

        public void setScanForTestClasses(boolean scanForTestClasses) {
            this.scanForTestClasses = scanForTestClasses;
        }
    
        /**
         * Returns the maximum number of test classes to execute in a forked test process. The forked test process will be restarted when this limit is reached.
         *
         * <p>
         * By default, Gradle automatically uses a separate JVM when executing tests.
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                            String[] splitCliClasspath = splitClasspath(System.getProperty("java.class.path"));
    
                            // The worker jar is first on the classpath.
                            String workerJar = splitCliClasspath[0];
                            assertTrue(workerJar.contains("gradle-worker.jar"));
    
                            // After, we expect the test runtime classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	storageapi "k8s.io/kubernetes/pkg/apis/storage"
    	"k8s.io/kubernetes/pkg/auth/nodeidentifier"
    	"k8s.io/kubernetes/plugin/pkg/auth/authorizer/rbac"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph"
    	"k8s.io/kubernetes/third_party/forked/gonum/graph/traverse"
    )
    
    // NodeAuthorizer authorizes requests from kubelets, with the following logic:
    //  1. If a request is not from a node (NodeIdentity() returns isNode=false), reject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/testing.md

    ```console
    $ pytest
    
    ================ test session starts ================
    platform linux -- Python 3.6.9, pytest-5.3.5, py-1.8.1, pluggy-0.13.1
    rootdir: /home/user/code/superawesome-cli/app
    plugins: forked-1.1.3, xdist-1.31.0, cov-2.8.1
    collected 6 items
    
    ---> 100%
    
    test_main.py <span style="color: green; white-space: pre;">......                            [100%]</span>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top