Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,217 for Forked (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeout.java

     * be used together with {@link spock.lang.Timeout}. It should be annotated on
     * {@link org.gradle.integtests.fixtures.AbstractIntegrationSpec}. Upon timeout,
     * all threads' stack traces of current JVM (embedded executer) or forked JVM (forking executer)
     * are printed to help us debug deadlock issues.
     */
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @ExtensionAnnotation(IntegrationTestTimeoutExtension.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. hack/verify-netparse-cve.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks if the "net" stdlib IP and CIDR parsers are used
    # instead of the ones forked in k8s.io/utils/net to parse IP addresses
    # because of the compatibility break introduced in golang 1.17
    # Reference: #100895
    # Usage: `hack/verify-netparse-cve.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/test/cmd/util.go

    limitations under the License.
    */
    
    package kubeadm
    
    import (
    	"bytes"
    	"io"
    	"os"
    	"os/exec"
    	"testing"
    
    	"github.com/pkg/errors"
    	"github.com/spf13/cobra"
    )
    
    // Forked from test/e2e/framework because the e2e framework is quite bloated
    // for our purposes here, and modified to remove undesired logging.
    
    func runCmdNoWrap(command string, args ...string) (string, string, int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 01 12:47:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/os/exec/lp_linux_test.go

    			// to write the executable (see https://go.dev/issue/22315).
    			// Since the descriptor should have CLOEXEC set, the problem should resolve
    			// as soon as the forked child reaches its exec call.
    			// Keep retrying until that happens.
    		} else {
    			t.Fatalf("exec: got %v, want nil", err)
    		}
    	}
    
    	// Remount with noexec flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:02:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. 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)
  6. hack/update-vendor-licenses.sh

      mkdir -p "${dest_dir}"
      mv "${TMP_LICENSE_FILE}" "${dest_dir}/LICENSE"
    done
    
    # copy licenses for forked code from vendor and third_party directories
    (cd "${KUBE_ROOT}" && \
      find vendor third_party -iname 'licen[sc]e*' -o -iname 'notice*' -o -iname 'copying*' | \
      grep -E 'third_party|forked' | \
      xargs tar -czf - | tar -C "${TMP_LICENSES_DIR}" -xzf -)
    
    # Leave things like OWNERS alone.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:53 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DefaultDaemonServerConfiguration.java

            // Using the available agent is correct for the forked daemon processes, because the forking
            // code takes the desired agent status into account when configuring the daemon command line.
            // The daemon that shouldn't use the agent won't have the agent applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 12:13:32 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top