Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for launching (0.11 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    //
    //   A "threadsafe" style death test obtains the path to the test
    //   program from argv[0] and re-executes it in the sub-process.  For
    //   simplicity, the current implementation doesn't search the PATH
    //   when launching the sub-process.  This means that the user must
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. README.md

    The [Kubernetes Community](https://github.com/kubernetes/community/blob/master/governance.md) is the launching point for learning about how we organize ourselves.
    
    The [Kubernetes Steering community repo](https://github.com/kubernetes/steering) is used by the Kubernetes Steering Committee, which oversees governance of the Kubernetes project.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   death test, which already incurs significant overhead by launching
    //   a child process.
    //
    // Known caveats:
    //
    //   A "threadsafe" style death test obtains the path to the test
    //   program from argv[0] and re-executes it in the sub-process.  For
    //   simplicity, the current implementation doesn't search the PATH
    //   when launching the sub-process.  This means that the user must
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

    public class ClasspathTest extends Specification {
        final fileReferenceFactory = new FileReferenceFactory()
        final customEntries = [
            new ProjectDependency("/test2"),
            new Container("org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"),
            new Library(fileReferenceFactory.fromPath("/apache-ant-1.7.1/lib/ant-antlr.jar")),
            new SourceFolder("src", "bin2"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseScopeAttributeIntegrationTest.groovy

                    classpath {
                        file {
                            whenMerged { classpath ->
                                classpath.entries.findAll { it.kind == 'con' && it.path.startsWith('org.eclipse.jdt.launching.JRE_CONTAINER') }.each { con ->
                                    con.entryAttributes['add-exports'] = [
                                        'java.base/jdk.internal.access=ALL-UNNAMED',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 13:19:47 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseClasspathIntegrationTest.groovy

        @Rule
        public final TestResources testResources = new TestResources(testDirectoryProvider)
    
        String content
    
        private final String jreContainerPath = "org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-${JavaVersion.current().isJava9Compatible() ? JavaVersion.current().getMajorVersion() : JavaVersion.current()}/"
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 36.8K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

    /**
     * Common superclass for all {@link ClasspathEntry} instances.
     */
    public abstract class AbstractClasspathEntry implements ClasspathEntry {
        private static final String NATIVE_LIBRARY_ATTRIBUTE = "org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY";
        public static final String COMPONENT_NON_DEPENDENCY_ATTRIBUTE = "org.eclipse.jst.component.nondependency";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. pkg/kubelet/network/dns/dns.go

    const (
    	podDNSCluster podDNSType = iota
    	podDNSHost
    	podDNSNone
    )
    
    const (
    	maxResolvConfLength = 10 * 1 << 20 // 10MB
    )
    
    // Configurer is used for setting up DNS resolver configuration when launching pods.
    type Configurer struct {
    	recorder         record.EventRecorder
    	getHostDNSConfig func(string) (*runtimeapi.DNSConfig, error)
    	nodeRef          *v1.ObjectReference
    	nodeIPs          []net.IP
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

        }
    
        private boolean isJreContainer(ClasspathEntry entry) {
            return entry instanceof Container && ((Container) entry).getPath().startsWith("org.eclipse.jdt.launching.JRE_CONTAINER");
        }
    
        private boolean isOutputLocation(ClasspathEntry entry) {
            return entry instanceof Output;
        }
    
        /**
         * Creates a new {@link FileReference} instance.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.stream.Collectors;
    
    /**
     * Creates start scripts for launching JVM applications.
     * <p>
     * Example:
     * <pre class='autoTested'>
     * task createStartScripts(type: CreateStartScripts) {
     *   outputDir = file('build/sample')
     *   mainClass = 'org.gradle.test.Main'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top