Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for proc (0.06 sec)

  1. src/runtime/proc.go

    	// Stop profiler on this thread so that it is safe to lock prof.
    	// if a profiling signal came in while we had prof locked,
    	// it would deadlock.
    	setThreadCPUProfiler(0)
    
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		osyield()
    	}
    	if prof.hz.Load() != hz {
    		setProcessCPUProfiler(hz)
    		prof.hz.Store(hz)
    	}
    	prof.signalLock.Store(0)
    
    	lock(&sched.lock)
    	sched.profilehz = hz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func GetProcAddress(module Handle, procname string) (proc uintptr, err error) {
    	var _p0 *byte
    	_p0, err = syscall.BytePtrFromString(procname)
    	if err != nil {
    		return
    	}
    	return _GetProcAddress(module, _p0)
    }
    
    func _GetProcAddress(module Handle, procname *byte) (proc uintptr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  3. 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)
  4. cluster/gce/gci/configure-helper.sh

      mount --rbind /var/lib/kubelet/ "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
      mount --make-rshared "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
      mount --bind -o ro /proc "${CONTAINERIZED_MOUNTER_ROOTFS}/proc"
      mount --bind -o ro /dev "${CONTAINERIZED_MOUNTER_ROOTFS}/dev"
      cp /etc/resolv.conf "${CONTAINERIZED_MOUNTER_ROOTFS}/etc/"
    }
    
    # Updates node labels used by addons.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		}
    		if ps.llvmStyle {
    			skipParens = true
    		}
    	}
    
    	if skipParens {
    		ps.print(left)
    	} else if ps.llvmStyle {
    		prec := precPrimary
    		if p, ok := left.(hasPrec); ok {
    			prec = p.prec()
    		}
    		needsParen := false
    		if prec > b.prec() {
    			needsParen = true
    		}
    		if needsParen {
    			ps.startScope('(')
    		}
    
    		ps.print(left)
    
    		if needsParen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/asm7.go

    	cursym     *obj.LSym
    	blitrl     *obj.Prog
    	elitrl     *obj.Prog
    	autosize   int32
    	extrasize  int32
    	instoffset int64
    	pc         int64
    	pool       struct {
    		start uint32
    		size  uint32
    	}
    }
    
    const (
    	funcAlign = 16
    )
    
    const (
    	REGFROM = 1
    )
    
    type Optab struct {
    	as    obj.As
    	a1    uint8 // Prog.From
    	a2    uint8 // 2nd source operand, Prog.Reg or Prog.RestArgs[XXX]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    if (conventionAware) {
                        // GENERATE public <type> <getter>() { return (<type>)getConventionMapping().getConventionValue(super.<getter>(), '<prop>', __<prop>__); }
                        Label finish = new Label();
    
                        if (hasMappingField) {
                            // if (conventionMapping == null) { return super.<getter>; }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. src/cmd/trace/testdata/go122.test

    String id=62
    	data="main.allocHog"
    String id=63
    	data="main.cpu10"
    String id=64
    	data="runtime.goparkunlock"
    String id=65
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go"
    String id=66
    	data="runtime.bgsweep"
    String id=67
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/mgcsweep.go"
    String id=68
    	data="runtime.asyncPreempt"
    String id=69
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    func isJump(p *obj.Prog) bool {
    	return p.To.Target() != nil || p.As == obj.AJMP || p.As == obj.ACALL ||
    		p.As == obj.ARET || p.As == obj.ADUFFCOPY || p.As == obj.ADUFFZERO
    }
    
    // lookForJCC returns the first real instruction starting from p, if that instruction is a conditional
    // jump. Otherwise, nil is returned.
    func lookForJCC(p *obj.Prog) *obj.Prog {
    	// Skip any PCDATA, FUNCDATA or NOP instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-gc-stress.test

    String id=59
    	data="runtime.(*mcache).nextFree"
    String id=60
    	data="runtime.gopark"
    String id=61
    	data="/usr/local/google/home/mknyszek/work/go-1/src/runtime/proc.go"
    String id=62
    	data="runtime.gcBgMarkWorker"
    String id=63
    	data="runtime.gcParkAssist"
    String id=64
    	data="runtime.systemstack_switch"
    String id=65
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top