Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,025 for procMs (0.14 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        Map<String, String> getEnvironment();
    
        /**
         * Starts this process, blocking until the process has started.
         *
         * @return this
         */
        ExecHandle start();
    
        void removeStartupContext();
    
        ExecHandleState getState();
    
        /**
         * Aborts the process, blocking until the process has exited. Does nothing if the process has already completed.
         */
        void abort();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/process/internal/MultiRequestWorkerProcessIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.process.internal
    
    import junit.framework.AssertionFailedError
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.process.internal.worker.RequestHandler
    import org.gradle.process.internal.worker.WorkerControl
    import org.gradle.process.internal.worker.WorkerProcessException
    import org.gradle.test.fixtures.ConcurrentTestUtil
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.JavaExecHandleBuilder;
    import org.gradle.process.internal.worker.request.Receiver;
    import org.gradle.process.internal.worker.request.Request;
    import org.gradle.process.internal.worker.request.RequestArgumentSerializers;
    import org.gradle.process.internal.worker.request.RequestProtocol;
    import org.gradle.process.internal.worker.request.RequestSerializerRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/streams/EmptyStdInStreamsHandler.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.streams;
    
    import org.gradle.api.UncheckedIOException;
    import org.gradle.process.internal.StreamsHandler;
    
    import java.io.IOException;
    import java.util.concurrent.Executor;
    
    /**
     * A handler that writes nothing to the process' stdin
     */
    public class EmptyStdInStreamsHandler implements StreamsHandler {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 16:06:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/AbstractProcessInstrumentationIntegrationTest.groovy

                    public static Process execute(String command) { return null; }
                    public static Process execute(String command, String[] envp, File file) { return null; }
                    public static Process execute(String command, List<?> envp, File file) { return null; }
                    public static Process execute(String[] command) { return null; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/process/ExecOutput.java

         *
         * @return handle of the standard output of the process.
         */
        StandardStreamContent getStandardOutput();
    
        /**
         * Gets a handle to the content of the process' standard error output.
         *
         * @return handle of the standard error output of the process.
         */
        StandardStreamContent getStandardError();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 00:18:08 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/generate_invalid.txt

    //go:generate echo Fail e
    
    -- inconsistent/a.go --
    // Valid go file with inconsistent package name.
    // Go generate should process this file with GOPACKAGE=a
    
    package a
    //go:generate echo Success $GOPACKAGE
    
    -- inconsistent/b.go --
    // Valid go file with inconsistent package name.
    // Go generate should process this file with GOPACKAGE=b
    
    //go:generate echo Success $GOPACKAGE
    package b
    
    -- inconsistent/c.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/process/JavaForkOptions.java

        /**
         * Enable or disable assertions for the process.
         *
         * @param enabled true to enable assertions, false to disable.
         */
        void setEnableAssertions(boolean enabled);
    
        /**
         * Determines whether debugging is enabled for the test process. When enabled — {@code debug = true} — the process
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/PathLimitationIntegrationTest.groovy

            processBuilder.command(Jvm.current().getJavaExecutable().absolutePath, "-version")
            then:
            Process process = processBuilder.start()
    
            process.waitFor() == 0
            process.exitValue() == 0
            and:
            process.errorStream.text.contains("version")
    
            where:
            absolutePathLength << [258, 259, 260]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ProcessEnvironment.java

        /**
         * Returns the working directory of the current process.
         *
         * @throws NativeIntegrationException If the process directory is not available.
         */
        File getProcessDir() throws NativeIntegrationException;
    
        /**
         * Sets the process working directory.
         *
         * @param processDir The directory.
         * @throws NativeIntegrationException If process directory cannot be set.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top