Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for procMs (0.31 sec)

  1. src/runtime/proc.go

    	}
    	sched.procresizetime = now
    
    	maskWords := (nprocs + 31) / 32
    
    	// Grow allp if necessary.
    	if nprocs > int32(len(allp)) {
    		// Synchronize with retake, which could be running
    		// concurrently since it doesn't run on a P.
    		lock(&allpLock)
    		if nprocs <= int32(cap(allp)) {
    			allp = allp[:nprocs]
    		} else {
    			nallp := make([]*p, nprocs)
    			// Copy everything up to allp's cap so we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector_test.go

    					pendingAttemptToDelete: []*node{makeNode(role1v1beta1, virtual), makeNode(pod1ns1, withOwners(role1v1beta1))}, // virtual parent and mismatched child enqueued for delete attempt
    				}),
    				// 9,10: process attemptToDelete
    				// virtual node dropped from attemptToDelete with no further action because the real node has been observed now
    				processAttemptToDelete(1),
    				assertState(state{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    		Help:      "Total bytes written by the process to the underlying storage system, /proc/[pid]/io write_bytes",
    		Type:      counterMetric,
    	}
    }
    
    func getMinioProcessIOReadBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: ioSubsystem,
    		Name:      readBytes,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func _GetProcAddress(module Handle, procname *byte) (proc uintptr, err error) {
    	r0, _, e1 := syscall.Syscall(procGetProcAddress.Addr(), 2, uintptr(module), uintptr(unsafe.Pointer(procname)), 0)
    	proc = uintptr(r0)
    	if proc == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetProcessId(process Handle) (id uint32, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.process.BaseExecSpec.getCommandLine()> does not have raw return type assignable to org.gradle.api.provider.Provider in (BaseExecSpec.java:0)
    Method <org.gradle.process.BaseExecSpec.getErrorOutput()> does not have raw return type assignable to org.gradle.api.provider.Property in (BaseExecSpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    outputDirectory:
     - transformed \\(Directory, [0-9a-f]+\\)
       - 0 \\(Directory, [0-9a-f]+\\)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  7. go.sum

    github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
    github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
    github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
    github.com/prometheus/procfs v0.0.11/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	}
    
    	var (
    		configMaps = make(map[string]*v1.ConfigMap)
    		secrets    = make(map[string]*v1.Secret)
    		tmpEnv     = make(map[string]string)
    	)
    
    	// Env will override EnvFrom variables.
    	// Process EnvFrom first then allow Env to replace existing values.
    	for _, envFrom := range container.EnvFrom {
    		switch {
    		case envFrom.ConfigMapRef != nil:
    			cm := envFrom.ConfigMapRef
    			name := cm.Name
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    // NType values; used in core files.
    type NType int
    
    const (
    	NT_PRSTATUS NType = 1 /* Process status. */
    	NT_FPREGSET NType = 2 /* Floating point registers. */
    	NT_PRPSINFO NType = 3 /* Process state info. */
    )
    
    var ntypeStrings = []intName{
    	{1, "NT_PRSTATUS"},
    	{2, "NT_FPREGSET"},
    	{3, "NT_PRPSINFO"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    static final String[] TYPES; public static final String FEATURE_PROCESS_NAMESPACES = http://xmlpull.org/v1/doc/features.html#process-namespaces; public static final String FEATURE_REPORT_NAMESPACE_ATTRIBUTES = http://xmlpull.org/v1/doc/features.html#report-namespace-prefixes; public static final String FEATURE_PROCESS_DOCDECL = http://xmlpull.org/v1/doc/features.html#process-docdecl; public static final String FEATURE_VALIDATION = http://xmlpull.org/v1/doc/features.html#validation; public abstract...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top