Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Pid (0.14 sec)

  1. pkg/kubelet/eviction/eviction_manager_test.go

    				}
    
    				// synchronize to detect the PID pressure
    				_, err := manager.synchronize(diskInfoProvider, activePodsFunc)
    
    				if err != nil {
    					t.Fatalf("Manager expects no error but got %v", err)
    				}
    
    				// verify PID pressure is detected
    				if !manager.IsUnderPIDPressure() {
    					t.Fatalf("Manager should have detected PID pressure")
    				}
    
    				// verify a pod is selected for eviction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    		Type:      counterMetric,
    	}
    }
    
    func getMinioProcessIOReadBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: ioSubsystem,
    		Name:      readBytes,
    		Help:      "Total bytes read by the process from the underlying storage system, /proc/[pid]/io read_bytes",
    		Type:      counterMetric,
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    						},
    						{
    							Type:               v1.NodePIDPressure,
    							Status:             v1.ConditionFalse,
    							Reason:             "KubeletHasSufficientPID",
    							Message:            "kubelet has sufficient PID available",
    							LastHeartbeatTime:  metav1.Time{},
    							LastTransitionTime: metav1.Time{},
    						},
    						{
    							Type:               v1.NodeReady,
    							Status:             v1.ConditionTrue,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    	pmap = make(map[string][]string)
    	have := make(map[string]int)
    	dirOK := make(map[string]bool)
    	pid := 0 // pattern ID, to allow reuse of have map
    	for _, pattern = range patterns {
    		pid++
    
    		glob := pattern
    		all := strings.HasPrefix(pattern, "all:")
    		if all {
    			glob = pattern[len("all:"):]
    		}
    		// Check pattern is valid for //go:embed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	n = uint32(r0)
    	if n == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetCurrentProcessId() (pid uint32) {
    	r0, _, _ := syscall.Syscall(procGetCurrentProcessId.Addr(), 0, 0, 0, 0)
    	pid = uint32(r0)
    	return
    }
    
    func GetCurrentThreadId() (id uint32) {
    	r0, _, _ := syscall.Syscall(procGetCurrentThreadId.Addr(), 0, 0, 0, 0)
    	id = uint32(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    	START_CMD="CI=on _MINIO_AUTO_DRIVE_HEALING=off minio server ${MINIO_OPTS} &"
    	echo
    	echo "Starting MinIO instance: ${START_CMD}"
    	echo
    	eval "$START_CMD"
    	MINIO_SRVR_PID="$!"
    	echo "MinIO Server PID: ${MINIO_SRVR_PID}"
    	echo
    	echo "Waiting for MinIO instance to get ready!"
    	sleep 10
    }
    
    main "$@"`, scheme)
    	adminLogIf(ctx, embedFileInZip(inspectZipW, "start-minio.sh", scrb.Bytes(), 0o755))
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    }
    
    // procPin should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/bytedance/gopkg
    //   - github.com/choleraehyq/pid
    //   - github.com/songzhibin97/gkit
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname procPin
    //go:nosplit
    func procPin() int {
    	gp := getg()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

        echo "Contents of the old docker config"
        cat /etc/docker/daemon.json
      fi
    
      cat <<EOF >/etc/docker/daemon.json
    {
    EOF
    
    addockeropt "\"pidfile\": \"/var/run/docker.pid\",
      \"iptables\": false,
      \"ip-masq\": false,"
    
      echo "setting log-level"
      if [[ "${TEST_CLUSTER:-}" == "true" ]]; then
        addockeropt "\"log-level\": \"debug\","
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top