Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 120 for npidle (0.54 sec)

  1. src/internal/trace/summary.go

    				s.syscallingP[ev.Proc()] = id
    				s.syscallingG[id] = ev.Proc()
    				g.lastSyscallTime = ev.Time()
    			}
    
    		// Handle procs to detect syscall blocking, which si identifiable as a
    		// proc going idle while the goroutine it was attached to is in a syscall.
    		case ResourceProc:
    			id := st.Resource.Proc()
    			old, new := st.Proc()
    			if old != new && new == ProcIdle {
    				if goid, ok := s.syscallingP[id]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. docs/metrics/v3.md

    |-------------------------------|---------|------------------------------------|----------|
    | `minio_system_cpu_avg_idle`   | `gauge` | Average CPU idle time              | `server` |
    | `minio_system_cpu_avg_iowait` | `gauge` | Average CPU IOWait time            | `server` |
    | `minio_system_cpu_load`       | `gauge` | CPU load average 1min              | `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. pilot/pkg/networking/core/cluster_builder_test.go

    					IdleTimeout: &durationpb.Duration{
    						Seconds: 10,
    					},
    					MaxRequestsPerConnection: &wrappers.UInt32Value{Value: 10},
    				},
    			},
    		},
    		{
    			name:    "ignore TCP idle timeout when HTTP idle timeout is specified",
    			cluster: &cluster.Cluster{Name: "foo", ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_EDS}},
    			httpProtocolOptions: &http.HttpProtocolOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loader/loader.go

    	}
    
    	// Autolib
    	lib.Autolib = append(lib.Autolib, r.Autolib()...)
    
    	// DWARF file table
    	nfile := r.NFile()
    	unit.FileTable = make([]string, nfile)
    	for i := range unit.FileTable {
    		unit.FileTable[i] = r.File(i)
    	}
    
    	l.addObj(lib.Pkg, or)
    
    	// The caller expects us consuming all the data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	CLOCK_UPTIME                   = 0x5
    	CLOCK_UPTIME_FAST              = 0x8
    	CLOCK_UPTIME_PRECISE           = 0x7
    	CLOCK_VIRTUAL                  = 0x1
    	CPUSTATES                      = 0x5
    	CP_IDLE                        = 0x4
    	CP_INTR                        = 0x3
    	CP_NICE                        = 0x1
    	CP_SYS                         = 0x2
    	CP_USER                        = 0x0
    	CREAD                          = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go

    	CLOCK_UPTIME                   = 0x5
    	CLOCK_UPTIME_FAST              = 0x8
    	CLOCK_UPTIME_PRECISE           = 0x7
    	CLOCK_VIRTUAL                  = 0x1
    	CPUSTATES                      = 0x5
    	CP_IDLE                        = 0x4
    	CP_INTR                        = 0x3
    	CP_NICE                        = 0x1
    	CP_SYS                         = 0x2
    	CP_USER                        = 0x0
    	CREAD                          = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.6K bytes
    - Viewed (0)
  7. src/os/file.go

    // That error implements the Timeout method, and calling the Timeout
    // method will return true, but there are other possible errors for which
    // the Timeout will return true even if the deadline has not been exceeded.
    //
    // An idle timeout can be implemented by repeatedly extending
    // the deadline after successful Read or Write calls.
    //
    // A zero value for t means I/O operations will not time out.
    func (f *File) SetDeadline(t time.Time) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. src/os/signal/signal_test.go

    		// Older linux kernels seem to have some hiccups delivering the signal
    		// in a timely manner on ppc64 and ppc64le. When running on a
    		// ppc64le/ubuntu 16.04/linux 4.4 host the time can vary quite
    		// substantially even on an idle system. 5 seconds is twice any value
    		// observed when running 10000 tests on such a system.
    		settleTime = 5 * time.Second
    	} else if s := os.Getenv("GO_TEST_TIMEOUT_SCALE"); s != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  9. src/runtime/traceback.go

    	// wrapped function, we want to include it in stacks.
    	return !(id == abi.FuncID_gopanic || id == abi.FuncID_sigpanic || id == abi.FuncID_panicwrap)
    }
    
    var gStatusStrings = [...]string{
    	_Gidle:      "idle",
    	_Grunnable:  "runnable",
    	_Grunning:   "running",
    	_Gsyscall:   "syscall",
    	_Gwaiting:   "waiting",
    	_Gdead:      "dead",
    	_Gcopystack: "copystack",
    	_Gpreempted: "preempted",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    `-Dorg.gradle.daemon.idletimeout=(number of milliseconds)`::
    A <<build_environment.adoc#sec:gradle_configuration_properties,Gradle property>> wherein the Gradle Daemon will stop itself after this number of milliseconds of idle time. _Default is 10800000_ (3 hours).
    
    [[sec:command_line_logging]]
    == Logging options
    
    === Setting log level
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top