Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 113 for stackID (0.4 sec)

  1. src/runtime/defs_solaris.go

    	POLLERR = C.POLLERR
    
    	PORT_SOURCE_FD    = C.PORT_SOURCE_FD
    	PORT_SOURCE_ALERT = C.PORT_SOURCE_ALERT
    	PORT_ALERT_UPDATE = C.PORT_ALERT_UPDATE
    )
    
    type SemT C.sem_t
    
    type Sigset C.sigset_t
    type StackT C.stack_t
    
    type Siginfo C.siginfo_t
    type Sigaction C.struct_sigaction
    
    type Fpregset C.fpregset_t
    type Mcontext C.mcontext_t
    type Ucontext C.ucontext_t
    
    type Timespec C.struct_timespec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 17:47:39 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/runtime/defs_freebsd.go

    	EVFILT_WRITE = C.EVFILT_WRITE
    	EVFILT_USER  = C.EVFILT_USER
    
    	NOTE_TRIGGER = C.NOTE_TRIGGER
    )
    
    type Rtprio C.struct_rtprio
    type ThrParam C.struct_thr_param
    type Sigset C.struct___sigset
    type StackT C.stack_t
    
    type Siginfo C.siginfo_t
    
    type Mcontext C.mcontext_t
    type Ucontext C.ucontext_t
    
    type Timespec C.struct_timespec
    type Timeval C.struct_timeval
    type Itimerval C.struct_itimerval
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/cpu-profile.go

    			switch leaf {
    			case "runtime._System", "runtime._GC", "runtime._ExternalCode", "runtime._VDSO":
    				continue
    			}
    			stack := strings.Join(fns, "|")
    			samples := int(s.Value[0])
    			pprofStacks[stack] += samples
    		}
    	}
    	for stack, samples := range pprofStacks {
    		fmt.Fprintf(os.Stderr, "%s\t%d\n", stack, samples)
    	}
    }
    
    func cpuHogger(f func(x int) int, y *int, dur time.Duration) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/runtime/metrics/description.go

    	},
    	{
    		Name: "/memory/classes/heap/stacks:bytes",
    		Description: "Memory allocated from the heap that is reserved for stack space, whether or not it is currently in-use. " +
    			"Currently, this represents all stack memory for goroutines. It also includes all OS thread stacks in non-cgo programs. " +
    			"Note that stacks may be allocated differently in the future, and this may change.",
    		Kind: KindUint64,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. src/runtime/os_darwin.go

    		writeErrStr(failthreadcreate)
    		exit(1)
    	}
    
    	// The caller passes in a suggested stack size,
    	// from when we allocated the stack and thread ourselves,
    	// without libpthread. Now that we're using libpthread,
    	// we use the OS default stack size instead of the suggestion.
    	// Find out that stack size for our own stack guard.
    	if pthread_attr_getstacksize(&attr, &stacksize) != 0 {
    		writeErrStr(failthreadcreate)
    		exit(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/certs/certs.go

    // equal across control-plane nodes: ca.key, ca.crt, sa.key, sa.pub, front-proxy-ca.key, front-proxy-ca.crt and etcd/ca.key, etcd/ca.crt if local/stacked etcd
    // Missing private keys of CA are non-fatal and produce warnings.
    func SharedCertificateExists(cfg *kubeadmapi.ClusterConfiguration) (bool, error) {
    	var errs []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser_test.go

    		"go 1.5 trace\x00\x00\x00\x00T00\x020",
    		"go 1.5 trace\x00\x00\x00\x00\xc3\x0200",
    	}
    	for _, data := range tests {
    		res, err := Parse(strings.NewReader(data), 5)
    		if err == nil || res.Events.Len() != 0 || res.Stacks != nil {
    			t.Fatalf("no error on input: %q", data)
    		}
    	}
    }
    
    func TestParseCanned(t *testing.T) {
    	files, err := os.ReadDir("./testdata")
    	if err != nil {
    		t.Fatalf("failed to read ./testdata: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. docs/pt/docs/alternatives.md

    Usando essa combinação levou a criação de vários geradores Flask _full-stack_. Há muitas _stacks_ que eu (e vários times externos) estou utilizando até agora:
    
    * <a href="https://github.com/tiangolo/full-stack" class="external-link" target="_blank">https://github.com/tiangolo/full-stack</a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

    // Tests loop with resource that is unique per iteration.
    //
    // In cases where a resource-allocating op creates a new unique resource per
    // loop iteration (ops with `TF_UniqueResourceAllocation` trait, in this case:
    // `tf.StackV2`), make sure that we don't create data dependencies between
    // different iterations for such resources. This is in line with the behavior
    // for the same loop unrolled. In this particular case, no data chain and token
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  10. src/cmd/trace/pprof.go

    	m.pcs[pcs] = stack
    	m.stacks[stack] = rec
    	return rec
    }
    
    func (m *stackMap) profile() []traceviewer.ProfileRecord {
    	prof := make([]traceviewer.ProfileRecord, 0, len(m.stacks))
    	for stack, record := range m.stacks {
    		rec := *record
    		i := 0
    		stack.Frames(func(frame trace.StackFrame) bool {
    			rec.Stack = append(rec.Stack, &trace.Frame{
    				PC:   frame.PC,
    				Fn:   frame.Func,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top