Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for Pid (0.09 sec)

  1. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/protocol/DaemonMessageSerializerTest.groovy

            result.diagnostics.pid == message.diagnostics.pid
    
            def diagnostics2 = new DaemonDiagnostics(new File("log"), null)
            def message2 = new BuildStarted(diagnostics2)
            def result2 = serialize(message2, serializer)
            result2 instanceof BuildStarted
            result2.diagnostics.daemonLog == message2.diagnostics.daemonLog
            result2.diagnostics.pid == null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. docs/metrics/v3.md

    | `minio_system_process_io_rchar_bytes`              | `counter` | Total bytes read by the process from the underlying storage system including cache, /proc/[pid]/io rchar       | `server` |
    | `minio_system_process_io_read_bytes`               | `counter` | Total bytes read by the process from the underlying storage system, /proc/[pid]/io read_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)
  3. docs/metrics/prometheus/list.md

    | `minio_node_io_read_bytes`                 | Total bytes read by the process from the underlying storage system, /proc/[pid]/io read_bytes.                  |
    | `minio_node_io_wchar_bytes`                | Total bytes written by the process to the underlying storage system including page cache, /proc/[pid]/io wchar. |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	PT_PSWG3                = 109 // Bytes 12-15 (IA low word)
    )
    
    func Bpx4ptr(request int32, pid int32, addr unsafe.Pointer, data unsafe.Pointer, buffer unsafe.Pointer) (rv int32, rc int32, rn int32) {
    	var parms [8]unsafe.Pointer
    	parms[0] = unsafe.Pointer(&request)
    	parms[1] = unsafe.Pointer(&pid)
    	parms[2] = unsafe.Pointer(&addr)
    	parms[3] = unsafe.Pointer(&data)
    	parms[4] = unsafe.Pointer(&buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

                File log = FILE_SERIALIZER.read(decoder);
                boolean nonNull = decoder.readBoolean();
                Long pid = null;
                if (nonNull) {
                    pid = decoder.readLong();
                }
                return new BuildStarted(new DaemonDiagnostics(log, pid));
            }
        }
    
        private static class FinishedSerializer implements Serializer<Finished> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    Starting a Gradle Daemon, 1 stopped Daemon could not be reused, use --status for details
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    A new daemon was started but could not be connected to: pid=DaemonInfo{pid=55913, address=[7fb34c82-1907-4c32-afda-888c9b6e2279 port:42751, addresses:[/127.0.0.1]], state=Busy, ...
    ```
    
    This can occur when network address translation (NAT) masquerade is used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              println("TLSv1.3 requires an external command run before first traffic is sent")
              println("Follow instructions at https://github.com/neykov/extract-tls-secrets for TLSv1.3")
              println("Pid: ${ProcessHandle.current().pid()}")
    
              Thread.sleep(10000)
            }
          }
          CommandLine -> {
            return ProcessBuilder(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. pkg/kubelet/pleg/evented.go

    		klog.V(4).InfoS("Received Container Deleted Event", "event", event)
    	}
    }
    
    func (e *EventedPLEG) getPodIPs(pid types.UID, status *kubecontainer.PodStatus) []string {
    	if len(status.IPs) != 0 {
    		return status.IPs
    	}
    
    	oldStatus, err := e.cache.Get(pid)
    	if err != nil || len(oldStatus.IPs) == 0 {
    		return nil
    	}
    
    	for _, sandboxStatus := range status.SandboxStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_aix_ppc64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid _Pid_t, status *_C_int, options int, rusage *Rusage) (wpid _Pid_t, err error) {
    	r0, _, e1 := syscall6(uintptr(unsafe.Pointer(&libc_wait4)), 4, uintptr(pid), uintptr(unsafe.Pointer(status)), uintptr(options), uintptr(unsafe.Pointer(rusage)), 0, 0)
    	wpid = _Pid_t(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/runtime/sys_darwin.go

    }
    func mach_vm_region_trampoline()
    
    //go:linkname proc_regionfilename runtime/pprof.proc_regionfilename
    func proc_regionfilename(pid int, address uint64, buf *byte, buflen int64) int32 {
    	args := struct {
    		pid     int
    		address uint64
    		buf     *byte
    		bufSize int64
    	}{
    		pid:     pid,
    		address: address,
    		buf:     buf,
    		bufSize: buflen,
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top