Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 195 for aframe (0.13 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    				lastAddr = addr
    			} else if (addr-lastAddr <= neighborhood) && lastFrames != nil {
    				frames = lastFrames
    			}
    
    			sp.addStack(addr, frames)
    		}
    	}
    }
    
    func (sp *sourcePrinter) addStack(addr uint64, frames []plugin.Frame) {
    	// See if the stack contains a function we are interested in.
    	for i, f := range frames {
    		if !sp.interest[f.Func] {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  2. src/log/slog/value.go

    	return AnyValue(err)
    }
    
    func stack(skip, nFrames int) string {
    	pcs := make([]uintptr, nFrames+1)
    	n := runtime.Callers(skip+1, pcs)
    	if n == 0 {
    		return "(no stack)"
    	}
    	frames := runtime.CallersFrames(pcs[:n])
    	var b strings.Builder
    	i := 0
    	for {
    		frame, more := frames.Next()
    		fmt.Fprintf(&b, "called from %s (%s:%d)\n", frame.Function, frame.File, frame.Line)
    		if !more {
    			break
    		}
    		i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm/obj5.go

    	if autoffset == -4 {
    		// Historical way to mark NOFRAME.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		autoffset = 0
    	}
    	if autoffset < 0 || autoffset%4 != 0 {
    		c.ctxt.Diag("frame size %d not 0 or a positive multiple of 4", autoffset)
    	}
    	if p.From.Sym.NoFrame() {
    		if autoffset != 0 {
    			c.ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", autoffset)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/taskInputsOutputs.graffle

    ural\qc \f0\fs24 \cf0 JavaCompile task}VerticalPad0GridInfo 1PrintYESViewYESLayo.0layoutEnginedotneat.0twopiSeparation0.0LinksVisibleNOMagne-08-22 08:33:10 +0000ModifierPeter LedbrookNotesVisible{595, 842}NSPrintReverseOrient 1SmartAlignmentGuide 1Frame{{256, 101}, {693, 925}}ListViewfalseOutline{{-60, 0}, {679, 783}}Zoom1ZoomValuesCanva 111...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_de.properties

    labels.notificationTo=Benachrichtigung an
    labels.num=Anzahl
    labels.pn=Seitenzahl
    labels.protocolScheme=Schema
    labels.purgeByBots=Bereinige Aufrufe von Bots
    labels.purgeSearchLogDay=Bereinige Suchprotokoll
    labels.query=Anfrage
    labels.queryId=Anfrage-ID
    labels.rt=rt
    labels.searchLog=Protokoll durchsuchen
    labels.sort=Sortieren
    labels.start=Start-Pos.
    labels.loginRequired=Anmeldung erforderlich
    labels.loginLink=Login-Link
    labels.threadName=Thread-Name
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. src/internal/trace/summary.go

    			// and identify the goroutine by the root frame of that stack.
    			// This root frame will be identical for all transitions on this
    			// goroutine, because it represents its immutable start point.
    			if g.Name == "" {
    				stk := st.Stack
    				if stk != NoStack {
    					var frame StackFrame
    					var ok bool
    					stk.Frames(func(f StackFrame) bool {
    						frame = f
    						ok = true
    						return true
    					})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/debug/dwarf/entry_test.go

    		truncated := info[:i]
    		dw, err := New(abbrev, aranges, frame, truncated, nil, nil, nil, nil)
    		if err == nil {
    			t.Errorf("expected error")
    		} else {
    			if dw != nil {
    				t.Errorf("got non-nil dw, wanted nil")
    			}
    		}
    	}
    }
    
    func TestIssue52045(t *testing.T) {
    	var abbrev, aranges, frame, line, pubnames, ranges, str []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/mips/obj0.go

    	if textstksiz == -ctxt.Arch.FixedFrameSize {
    		// Historical way to mark NOFRAME.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    	}
    	if textstksiz < 0 {
    		c.ctxt.Diag("negative frame size %d - did you mean NOFRAME?", textstksiz)
    	}
    	if p.From.Sym.NoFrame() {
    		if textstksiz != 0 {
    			c.ctxt.Diag("NOFRAME functions must have a frame size of 0, not %d", textstksiz)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

            .build()
        connection.start(sendConnectionPreface = false)
    
        // verify the peer received the ACK
        val ackFrame = peer.takeFrame()
        assertThat(ackFrame.type).isEqualTo(Http2.TYPE_SETTINGS)
        assertThat(ackFrame.streamId).isEqualTo(0)
        assertThat(ackFrame.ack).isTrue()
    
        taskFaker.runTasks()
    
        return connection
      }
    
      private fun updateMaxConcurrentStreams(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 24 04:40:49 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/emit.go

    // the openOutputFiles() stores the counter data file in 'cfname' and
    // then places the *io.File into 'cf'.
    type emitState struct {
    	mfname string   // path of final meta-data output file
    	mftmp  string   // path to meta-data temp file (if needed)
    	mf     *os.File // open os.File for meta-data temp file
    	cfname string   // path of final counter data file
    	cftmp  string   // path to counter data temp file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top