Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 437 for tramps (0.19 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    	return
    }
    
    // ShowFrom drops all stack frames above the highest matching frame and returns
    // whether a match was found. If showFrom is nil it returns false and does not
    // modify the profile.
    //
    // Example: consider a sample with frames [A, B, C, B], where A is the root.
    // ShowFrom(nil) returns false and has frames [A, B, C, B].
    // ShowFrom(A) returns true and has frames [A, B, C, B].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    	switch len(ci.frames) {
    	case 0: // In the rare case when there are no frames at all, we return Frame{}.
    		return
    	case 1:
    		frame = ci.frames[0]
    		ci.frames = ci.frameStore[:0]
    	case 2:
    		frame = ci.frames[0]
    		ci.frameStore[0] = ci.frames[1]
    		ci.frames = ci.frameStore[:1]
    	default:
    		frame = ci.frames[0]
    		ci.frames = ci.frames[1:]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprog/traceback_ancestors.go

    					saved += "\n\n"
    				}
    				saved += g
    			}
    
    			fmt.Print(saved)
    			return
    		}
    		buf = make([]byte, 2*len(buf))
    	}
    }
    
    func recurseThenCallGo(w chan struct{}, frames int, goroutines int, main bool) {
    	if frames == 0 {
    		// Signal to TracebackAncestors that we are done recursing and starting goroutines.
    		w <- struct{}{}
    		<-w
    		return
    	}
    	if goroutines == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 17:14:59 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/potential_traps.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[potential_traps]]
    = Avoiding traps
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 706 bytes
    - Viewed (0)
  5. src/internal/trace/version/version.go

    	// Version.Valid.
    	Go111: nil,
    	Go119: nil,
    	Go121: nil,
    
    	Go122: go122.Specs(),
    	// Go 1.23 adds backwards-incompatible events, but
    	// traces produced by Go 1.22 are also always valid
    	// Go 1.23 traces.
    	Go123: go122.Specs(),
    }
    
    // Specs returns the set of event.Specs for this version.
    func (v Version) Specs() []event.Spec {
    	return versions[v]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/ld_test.go

    	out, err = cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("nm failure: %s\n%s\n", err, string(out))
    	}
    	if !bytes.Contains(out, []byte(" T a-tramp0")) {
    		t.Errorf("Trampoline a-tramp0 is missing")
    	}
    	if bytes.Contains(out, []byte(" T b-tramp0")) {
    		t.Errorf("Trampoline b-tramp0 exists unnecessarily")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/runtime/time_test.go

    		}
    		x = x[len(magic):]
    		time := binary.BigEndian.Uint64(x)
    		x = x[8:]
    		dlen := binary.BigEndian.Uint32(x)
    		x = x[4:]
    		data := string(x[:dlen])
    		x = x[dlen:]
    		frames = append(frames, fakeTimeFrame{time, data})
    	}
    	return frames, nil
    }
    
    func TestTimeTimerType(t *testing.T) {
    	// runtime.timeTimer (exported for testing as TimeTimer)
    	// must have time.Timer and time.Ticker as a prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 03:40:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/recommended.go

    	Admission                  *AdmissionOptions
    	// API Server Egress Selector is used to control outbound traffic from the API Server
    	EgressSelector *EgressSelectorOptions
    	// Traces contains options to control distributed request tracing.
    	Traces *TracingOptions
    }
    
    func NewRecommendedOptions(prefix string, codec runtime.Codec) *RecommendedOptions {
    	sso := NewSecureServingOptions()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 18:51:27 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/internal/trace/raw/event.go

    		s.WriteString(strconv.FormatUint(e.Args[i], 10))
    	}
    	if spec.IsStack {
    		frames := e.Args[len(spec.Args):]
    		for i := 0; i < len(frames); i++ {
    			if i%4 == 0 {
    				s.WriteString("\n\t")
    			} else {
    				s.WriteString(" ")
    			}
    			s.WriteString(frameFields[i%4])
    			s.WriteString("=")
    			s.WriteString(strconv.FormatUint(frames[i], 10))
    		}
    	}
    	if e.Data != nil {
    		s.WriteString("\n\tdata=")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/traceback.go

    	// - Keep a ring buffer of the last N logical frames and use this to print
    	//   the bottom frames once we reach the end of the stack. This works, but
    	//   requires keeping a surprising amount of state on the stack, and we have
    	//   to run the cgo symbolizer twice—once to count frames, and a second to
    	//   print them—since we can't retain the strings it returns.
    	//
    	// Instead, we print the outer frames, and if we reach that limit, we clone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top