Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 941 for procMs (0.33 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

        @Subject classProcessor = new TestNGTestClassProcessor(dir.testDirectory, spec, [], new LongIdGenerator(), Time.clock(), new TestActorFactory())
    
        void process(Class... clazz) {
            process(clazz*.name)
        }
    
        void process(Iterable<String> classNames) {
            classProcessor.startProcessing(processor)
            for (String c : classNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   when there is a single thread.
    //
    //   2. The parent process clone()s a sub-process and runs the death
    //   test in it; the sub-process exits with code 0 at the end of the
    //   death test, if it hasn't exited already.
    //
    //   3. The parent process waits for the sub-process to terminate.
    //
    //   4. The parent process checks the exit code and error message of
    //   the sub-process.
    //
    // Examples:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

                restrictions.add(restriction);
                upperBound = restriction.getUpperBound();
    
                process = process.substring(index + 1).trim();
    
                if (process.startsWith(",")) {
                    process = process.substring(1).trim();
                }
            }
    
            if (!process.isEmpty()) {
                if (!restrictions.isEmpty()) {
                    throw new InvalidVersionSpecificationException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/internal/fuzz/worker.go

    		}
    		// TODO: record and return stderr.
    		return fmt.Errorf("fuzzing process terminated without fuzzing: %w", err)
    	}
    	return nil
    }
    
    // start runs a new worker process.
    //
    // If the process couldn't be started, start returns an error. Start won't
    // return later termination errors from the process if they occur.
    //
    // If the process starts successfully, start returns nil. stop must be called
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/net/http/cgi/host.go

    	Args       []string    // optional arguments to pass to child process
    	Stderr     io.Writer   // optional stderr for the child process; nil means os.Stderr
    
    	// PathLocationHandler specifies the root http Handler that
    	// should handle internal redirects when the CGI process
    	// returns a Location header value starting with a "/", as
    	// specified in RFC 3875 ยง 6.3.2. This will likely be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecHandle;
    import org.gradle.process.internal.JavaExecHandleBuilder;
    import org.gradle.process.internal.JavaExecHandleFactory;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    import org.gradle.process.internal.health.memory.MemoryAmount;
    import org.gradle.process.internal.health.memory.MemoryManager;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                } else {
                    logger.warn("Failed to process {}", id, e);
                }
            } catch (final Exception e) {
                logger.warn("Failed to process {}", id, e);
            }
            return false;
        }
    
        protected boolean process(final String id, final Predicate<ResponseData> consumer) {
            return process(id, (configId, url) -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/JavaExec.java

    import org.gradle.process.CommandLineArgumentProvider;
    import org.gradle.process.ExecResult;
    import org.gradle.process.JavaDebugOptions;
    import org.gradle.process.JavaExecSpec;
    import org.gradle.process.JavaForkOptions;
    import org.gradle.process.ProcessForkOptions;
    import org.gradle.process.internal.DefaultJavaExecSpec;
    import org.gradle.process.internal.ExecActionFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/https.md

    ### TLS with SNI Extension
    
    **Only one process** in the server can be listening on a specific **port** in a specific **IP address**. There could be other processes listening on other ports in the same IP address, but only one for each combination of IP address and port.
    
    TLS (HTTPS) uses the specific port `443` by default. So that's the port we would need.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

        }
    
        protected static class MonitorThread extends Thread {
            private final Process process;
    
            private final long timeout;
    
            private boolean finished = false;
    
            private boolean teminated = false;
    
            public MonitorThread(final Process process, final long timeout) {
                this.process = process;
                this.timeout = timeout;
            }
    
            @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top