Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for npidle (0.14 sec)

  1. src/runtime/mgc.go

    	// mcache before allocating, but idle Ps may not. Since this
    	// is necessary to sweep all spans, we need to ensure all
    	// mcaches are flushed before we start the next GC cycle.
    	//
    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go

    	CLOCK_PROCESS_CPUTIME_ID          = 0x2
    	CLOCK_REALTIME                    = 0x0
    	CLOCK_THREAD_CPUTIME_ID           = 0x4
    	CLOCK_UPTIME                      = 0x5
    	CPUSTATES                         = 0x6
    	CP_IDLE                           = 0x5
    	CP_INTR                           = 0x4
    	CP_NICE                           = 0x1
    	CP_SPIN                           = 0x3
    	CP_SYS                            = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. docs/changelogs/changelog_3x.md

        be called.
    
        Web sockets have always been had pings, but pings on HTTP/2 connections is
        new in this release. Pings are used for connections that are busy carrying
        calls and for idle connections in the connection pool. (Pings do not impact
        when pooled connections are evicted).
    
        If you have a configured ping interval, you should confirm that it is long
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # Not setting these values correctly can cause network issues for connections
    # that live longer than 10 minutes.
    # See: https://cloud.google.com/compute/docs/troubleshooting/general-tips#idle-connections
    function Set-WindowsTCPParameters {
      Set-ItemProperty -Force -Confirm:$false -Path `
        'HKLM:\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters' `
        -Name 'KeepAliveInterval' -Type Dword -Value 1000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top