Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 195 for procMs (0.12 sec)

  1. src/os/os_test.go

    	// verify that Getppid() from the forked process reports our process id
    	output, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("Failed to spawn child process: %v %q", err, string(output))
    	}
    
    	childPpid := string(output)
    	ourPid := fmt.Sprintf("%d", Getpid())
    	if childPpid != ourPid {
    		t.Fatalf("Child process reports parent process id '%v', expected '%v'", childPpid, ourPid)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                                + "'. Value must be positive.");
                    }
    
                    int procs = Runtime.getRuntime().availableProcessors();
                    int threads = (int) (coreMultiplier * procs);
                    return threads == 0 ? 1 : threads;
                } else {
                    int threads = Integer.parseInt(threadConfiguration);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:test_execution]]
    == Test execution
    
    Gradle executes tests in a separate ('forked') JVM, isolated from the main build process. This prevents classpath pollution and excessive memory consumption for the build process. It also allows you to run the tests with different JVM arguments than the build is using.
    
    You can control how the test process is launched via several properties on the `Test` task, including the following:
    
    `maxParallelForks` — default: 1::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.internal.accesscontrol.ForExternalUse;
    import org.gradle.normalization.InputNormalizationHandler;
    import org.gradle.process.ExecResult;
    import org.gradle.process.ExecSpec;
    import org.gradle.process.JavaExecSpec;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.net.URI;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

      # have to delete the service entry to *really* kill it (e.g. `sc.exe delete
      # kubelet`). See issue #72900.
      if (Get-Process | Where-Object Name -eq "kubelet") {
        Log-Output -Fatal `
            "A kubelet process is already running, don't know what to do"
      }
      Log-Output "Creating kubelet service"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/helpers.go

    		p2Memory.Sub(p2Request)
    
    		// prioritize evicting the pod which has the larger consumption of memory
    		return p2Memory.Cmp(*p1Memory)
    	}
    }
    
    // process compares pods by largest consumer of process number relative to request.
    func process(stats statsFunc) cmpFunc {
    	return func(p1, p2 *v1.Pod) int {
    		p1Stats, p1Found := stats(p1)
    		p2Stats, p2Found := stats(p2)
    		if !p1Found || !p2Found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    //sys	isTokenRestricted(tokenHandle Token) (ret bool, err error) [!failretval] = advapi32.IsTokenRestricted
    //sys	OpenProcessToken(process Handle, access uint32, token *Token) (err error) = advapi32.OpenProcessToken
    //sys	OpenThreadToken(thread Handle, access uint32, openAsSelf bool, token *Token) (err error) = advapi32.OpenThreadToken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. go.sum

    github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
    github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
    github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
    github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    	UseVendorAll bool
    
    	// AllowErrors indicates that LoadPackages should not terminate the process if
    	// an error occurs.
    	AllowErrors bool
    
    	// SilencePackageErrors indicates that LoadPackages should not print errors
    	// that occur while matching or loading packages, and should not terminate the
    	// process if such an error occurs.
    	//
    	// Errors encountered in the module graph will still be reported.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    == Copying files
    
    Copying files in Gradle primarily uses `CopySpec`, a mechanism that makes it easy to manage resources such as source code, configuration files, and other assets in your project build process.
    
    [[sec:using_the_copyspec_class]]
    === Understanding `CopySpec`
    `CopySpec` is a copy specification that allows you to define what files to copy, where to copy them from, and where to copy them.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top