Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for PROCS (0.12 sec)

  1. src/internal/trace/event/go122/event.go

    	EvCPUSamples // start of a section of CPU samples [...EvCPUSample]
    	EvCPUSample  // CPU profiling sample [timestamp, M ID, P ID, goroutine ID, stack ID]
    	EvFrequency  // timestamp units per sec [freq]
    
    	// Procs.
    	EvProcsChange // current value of GOMAXPROCS [timestamp, GOMAXPROCS, stack ID]
    	EvProcStart   // start of P [timestamp, P ID, P seq]
    	EvProcStop    // stop of P [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. src/internal/trace/summary.go

    			case GoNotExist:
    				g.finalize(ev.Time(), ev)
    			case GoSyscall:
    				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()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cgroup_manager_linux.go

    				return filepath.SkipDir
    			}
    			if !info.IsDir() {
    				return nil
    			}
    			pids, err = getCgroupProcs(path)
    			if err != nil {
    				klog.V(4).InfoS("Cgroup manager encountered error getting procs for cgroup path", "path", path, "err", err)
    				return filepath.SkipDir
    			}
    			pidsToKill.Insert(pids...)
    			return nil
    		}
    		// Walk through the pod cgroup directory to check if
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. src/runtime/os_linux.go

    		return
    	}
    
    	var ts timespec
    	ts.setNsec(ns)
    	futex(unsafe.Pointer(addr), _FUTEX_WAIT_PRIVATE, val, unsafe.Pointer(&ts), nil, 0)
    }
    
    // If any procs are sleeping on addr, wake up at most cnt.
    //
    //go:nosplit
    func futexwakeup(addr *uint32, cnt uint32) {
    	ret := futex(unsafe.Pointer(addr), _FUTEX_WAKE_PRIVATE, cnt, nil, nil, 0)
    	if ret >= 0 {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. cmd/server-main.go

    	}
    
    	maxProcs := runtime.GOMAXPROCS(0)
    	cpuProcs := runtime.NumCPU()
    	if maxProcs < cpuProcs {
    		warnings = append(warnings, color.YellowBold("- Detected GOMAXPROCS(%d) < NumCPU(%d), please make sure to provide all PROCS to MinIO for optimal performance", maxProcs, cpuProcs))
    	}
    
    	// Initialize grid
    	bootstrapTrace("initGrid", func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  6. src/runtime/trace.go

    	// Let's emit it as soon as possible so that downstream tools can rely on the value
    	// being there fairly soon in a generation.
    	//
    	// It's important that we do this before allowing stop-the-worlds again,
    	// because the procs count could change.
    	if !stopTrace {
    		tl := traceAcquire()
    		tl.Gomaxprocs(gomaxprocs)
    		traceRelease(tl)
    	}
    
    	// Emit a GCActive event in the new generation if necessary.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  7. src/runtime/runtime2.go

    	_SigPanic                // if the signal is from the kernel, panic
    	_SigDefault              // if the signal isn't explicitly requested, don't monitor it
    	_SigGoExit               // cause all runtime procs to exit (only used on Plan 9).
    	_SigSetStack             // Don't explicitly install handler, but add SA_ONSTACK to existing libc handler
    	_SigUnblock              // always unblock; see blockableSig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/parser.go

    	EvStack:             {"Stack", 5, false, []string{"id", "siz"}, nil},
    	EvGomaxprocs:        {"Gomaxprocs", 5, true, []string{"procs"}, nil},
    	EvProcStart:         {"ProcStart", 5, false, []string{"thread"}, nil},
    	EvProcStop:          {"ProcStop", 5, false, []string{}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top