Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,025 for procMs (0.17 sec)

  1. src/cmd/dist/util_gc.go

    // useVFPv1 tries to execute one VFPv1 instruction on ARM.
    // It will crash the current process if VFPv1 is missing.
    func useVFPv1()
    
    // useVFPv3 tries to execute one VFPv3 instruction on ARM.
    // It will crash the current process if VFPv3 is missing.
    func useVFPv3()
    
    // useARMv6K tries to run ARMv6K instructions on ARM.
    // It will crash the current process if it doesn't implement
    // ARMv6K or above.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 609 bytes
    - Viewed (0)
  2. src/syscall/exec_freebsd.go

    	// Foreground places the child process group in the foreground.
    	// This implies Setpgid. The Ctty field must be set to
    	// the descriptor of the controlling TTY.
    	// Unlike Setctty, in this case Ctty must be a descriptor
    	// number in the parent process.
    	Foreground bool
    	Pgid       int    // Child's process group ID if Setpgid.
    	Pdeathsig  Signal // Signal that the process will get when its parent dies (Linux and FreeBSD only)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultSingleRequestWorkerProcessBuilder.java

    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;
    import org.gradle.process.internal.worker.request.ResponseProtocol;
    import org.gradle.process.internal.worker.request.WorkerAction;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 09:27:37 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.process.ExecResult;
    
    public interface WorkerControl {
        /**
         * Starts the worker process, blocking until successfully started.
         */
        WorkerProcess start();
    
        /**
         * Requests that the worker complete all work and stop. Blocks until the worker process has stopped.
         */
        ExecResult stop();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/AbstractStreamingHasher.java

      /** Number of bytes to be filled before process() invocation(s). */
      private final int bufferSize;
    
      /** Number of bytes processed per process() invocation. */
      private final int chunkSize;
    
      /**
       * Constructor for use by subclasses. This hasher instance will process chunks of the specified
       * size.
       *
       * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation;
       *     must be at least 4
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jun 15 20:59:00 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  6. src/go/doc/testdata/benchmark.go

    			os.Exit(1)
    		}
    		if !matched {
    			continue
    		}
    		for _, procs := range cpuList {
    			runtime.GOMAXPROCS(procs)
    			b := &B{
    				common: common{
    					signal: make(chan any),
    				},
    				benchmark: Benchmark,
    			}
    			benchName := Benchmark.Name
    			if procs != 1 {
    				benchName = fmt.Sprintf("%s-%d", Benchmark.Name, procs)
    			}
    			fmt.Printf("%s\t", benchName)
    			r := b.run()
    			if b.failed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/process-services/src/main/java/org/gradle/process/CommandLineArgumentProvider.java

     * limitations under the License.
     */
    
    package org.gradle.process;
    
    /**
     * Provides arguments to a process.
     *
     * @since 4.6
     */
    public interface CommandLineArgumentProvider {
        /**
         * The arguments which will be provided to the process.
         */
        Iterable<String> asArguments();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 868 bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcess.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker;
    
    import org.gradle.api.Describable;
    import org.gradle.internal.remote.ObjectConnection;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.health.memory.JvmMemoryStatus;
    
    import java.util.Optional;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/os/exec_windows.go

    package os
    
    import (
    	"errors"
    	"internal/syscall/windows"
    	"runtime"
    	"syscall"
    	"time"
    )
    
    // Note that Process.mode is always modeHandle because Windows always requires
    // a handle. A manually-created Process literal is not valid.
    
    func (p *Process) wait() (ps *ProcessState, err error) {
    	handle, status := p.handleTransientAcquire()
    	switch status {
    	case statusDone:
    		return nil, ErrProcessDone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/process/internal/SingleRequestWorkerProcessIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal
    
    import org.gradle.api.reflect.ObjectInstantiationException
    import org.gradle.process.internal.worker.RequestHandler
    import org.gradle.process.internal.worker.WorkerProcessException
    import spock.lang.Timeout
    
    @Timeout(120)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 5.3K bytes
    - Viewed (0)
Back to top