Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 426 for procMs (0.36 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

    import org.gradle.internal.jvm.JpmsConfiguration;
    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.process.internal.AbstractExecHandleBuilder;
    import org.gradle.process.internal.DefaultExecHandleBuilder;
    import org.gradle.process.internal.ExecHandleBuilder;
    import org.gradle.process.internal.JvmOptions;
    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            if (useNativeIntegrations) {
                try {
                    net.rubygrapefruit.platform.Process process = net.rubygrapefruit.platform.Native.get(Process.class);
                    return new NativePlatformBackedProcessEnvironment(process);
                } catch (NativeIntegrationUnavailableException ex) {
                    LOGGER.debug("Native-platform process integration is not available. Continuing with fallback.");
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. docs/metrics/v3.md

    | `minio_system_process_io_write_bytes`              | `counter` | Total bytes written by the process to the underlying storage system, /proc/[pid]/io write_bytes                | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/app/cmd.go

    			ctx, cancel := context.WithCancel(context.Background())
    			defer cancel()
    			defer agent.Close()
    
    			// If a status port was provided, start handling status probes.
    			if proxyConfig.StatusPort > 0 {
    				if err := initStatusServer(ctx, proxyConfig,
    					agentOptions.EnvoyPrometheusPort, proxyArgs.EnableProfiling, agent, cancel); err != nil {
    					return err
    				}
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/runtime/mgclimit.go

    func (l *gcCPULimiterState) resetCapacity(now int64, nprocs int32) {
    	if !l.tryLock() {
    		// This must happen during a STW, so we can't fail to acquire the lock.
    		// If we did, something went wrong. Throw.
    		throw("failed to acquire lock to reset capacity")
    	}
    	// Flush the rest of the time for this period.
    	l.updateLocked(now)
    	l.nprocs = nprocs
    
    	l.bucket.capacity = uint64(nprocs) * capacityPerProc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

    import org.gradle.internal.logging.events.OutputEventListener;
    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.internal.session.BuildSessionLifecycleListener;
    import org.gradle.process.internal.health.memory.MemoryManager;
    import org.gradle.process.internal.health.memory.OsMemoryInfo;
    import org.gradle.util.internal.CollectionUtils;
    
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

                                    LOGGER.debug("The file lock for {} is held by a different Gradle process (pid: {}, lockId: {}). Pinged owner at port {}", displayName, lockInfo.pid, lockInfo.lockId, lockInfo.port);
                                }
                            } else {
                                LOGGER.debug("The file lock for {} is held by a different Gradle process. I was unable to read on which port the owner listens for lock access requests.", displayName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_REGHSET              = 22 // Read all GPRHs
    	PT_ATTACH               = 30 // Attach to a process
    	PT_DETACH               = 31 // Detach from a process
    	PT_REGSET               = 32 // Read all GPRs
    	PT_REATTACH             = 33 // Reattach to a process
    	PT_LDINFO               = 34 // Read loader info
    	PT_MULTI                = 35 // Multi process mode
    	PT_LD64INFO             = 36 // RMODE64 Info Area
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirAnnotationValueConverter.kt

                }
                qualifierParts += unresolvedName
                if (errorType != null && expression is FirPropertyAccessExpression) {
                    expression.explicitReceiver?.let { process(it) }
                }
            }
    
            process(call.argument)
    
            val fqNameString = qualifierParts.asReversed().filterNotNull().takeIf { it.isNotEmpty() }?.joinToString(".")
            if (fqNameString != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import java.net.URLClassLoader;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
     * Constructs the application and implementation classpaths for a test process,
     * while also optionally loading test framework implementation dependencies from
     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    public class ForkedTestClasspathFactory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top