Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Sait (0.24 sec)

  1. src/cmd/trace/gstate.go

    		// If we're executing, start the slice from here.
    		gs.activeRanges[name] = activeRange{ts, stack}
    	} else {
    		// If the goroutine isn't executing, there's no place for
    		// us to create a slice from. Wait until it starts executing.
    		gs.activeRanges[name] = activeRange{0, stack}
    	}
    }
    
    // rangeActive indicates that a special range of time has been in progress.
    func (gs *gState[R]) rangeActive(name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/cmd/trace/pprof.go

    type computePprofFunc func(gToIntervals map[trace.GoID][]interval, events []trace.Event) ([]traceviewer.ProfileRecord, error)
    
    // computePprofIO returns a computePprofFunc that generates IO pprof-like profile (time spent in
    // IO wait, currently only network blocking event).
    func computePprofIO() computePprofFunc {
    	return makeComputePprofFunc(trace.GoWaiting, func(reason string) bool {
    		return reason == "network"
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/go/script_test.go

    			gracePeriod = gp
    		}
    
    		// When we run commands that execute subprocesses, we want to reserve two
    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    		// produce whatever useful output it can (such as a stack trace). After the
    		// first grace period expires, we'll escalate to os.Kill, leaving the second
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		psrc, msrc, savesrc, countsrc, errsrc = chunkedGrab(sources, fetch, obj, ui, tr)
    	}()
    	go func() {
    		defer wg.Done()
    		pbase, mbase, savebase, countbase, errbase = chunkedGrab(bases, fetch, obj, ui, tr)
    	}()
    	wg.Wait()
    	save := savesrc || savebase
    
    	if errsrc != nil {
    		return nil, nil, nil, nil, false, fmt.Errorf("problem fetching source profiles: %v", errsrc)
    	}
    	if errbase != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/cmd/trace/regions.go

    	<li><a href="#ranges">Special ranges</a></li>
    </ul>
    
    <h3 id="summary">Summary</h3>
    
    {{ with $p := filterParams .Filter}}
    <table class="summary">
    	<tr>
    		<td>Network wait profile:</td>
    		<td> <a href="/regionio?{{$p}}">graph</a> <a href="/regionio?{{$p}}&raw=1" download="io.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Sync block profile:</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. src/context/context.go

    // surrounding function has not yet been extended to accept a Context
    // parameter).
    func TODO() Context {
    	return todoCtx{}
    }
    
    // A CancelFunc tells an operation to abandon its work.
    // A CancelFunc does not wait for the work to stop.
    // A CancelFunc may be called by multiple goroutines simultaneously.
    // After the first call, subsequent calls to a CancelFunc do nothing.
    type CancelFunc func()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  7. src/context/x_test.go

    	defer timer.Stop()
    
    	// Wait on all the contexts in a random order.
    	for ctx := range m {
    		select {
    		case <-ctx.Done():
    		case <-stuck:
    			buf := make([]byte, 10<<10)
    			n := runtime.Stack(buf, true)
    			t.Fatalf("timed out after %v waiting for <-ctx.Done(); stacks:\n%s", d, buf[:n])
    		}
    	}
    	// Wait for all the cancel functions to return.
    	done := make(chan struct{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho.go

    		si := dwarfp[i]
    		if si.secSym() != loader.Sym(sect.Sym) ||
    			ctxt.loader.SymSect(si.secSym()) != sect {
    			panic("inconsistency between dwarfp and Segdwarf")
    		}
    		relocSect(ctxt, sect, si.syms)
    	}
    	wg.Wait()
    }
    
    // hostobjMachoPlatform returns the first platform load command found
    // in the host object, if any.
    func hostobjMachoPlatform(h *Hostobj) (*MachoPlatformLoad, error) {
    	f, err := os.Open(h.file)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/cpu.go

    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    	ASFENCEVMA
    
    	//
    	// RISC-V Bit-Manipulation ISA-extensions (1.0)
    	//
    
    	// 1.1: Address Generation Instructions (Zba)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    	}
    
    	n.SetTypecheck(2)
    	n = typecheck1(n, top)
    	n.SetTypecheck(1)
    
    	t := n.Type()
    	if t != nil && !t.IsFuncArgStruct() && n.Op() != ir.OTYPE {
    		switch t.Kind() {
    		case types.TFUNC, // might have TANY; wait until it's called
    			types.TANY, types.TFORW, types.TIDEAL, types.TNIL, types.TBLANK:
    			break
    
    		default:
    			types.CheckSize(t)
    		}
    	}
    
    	return n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top