Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 223 for frameset (0.28 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

    // is capable of upgrading HTTP responses using SPDY/3.1 via the spdystream
    // package.
    //
    // If pingPeriod is non-zero, for each incoming connection a background
    // goroutine will send periodic Ping frames to the server. Use this to keep
    // idle connections through certain load balancers alive longer.
    func NewResponseUpgraderWithPings(pingPeriod time.Duration) httpstream.ResponseUpgrader {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 28 08:02:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. api/go1.7.txt

    pkg reflect, func StructOf([]StructField) Type
    pkg reflect, method (StructTag) Lookup(string) (string, bool)
    pkg runtime, func CallersFrames([]uintptr) *Frames
    pkg runtime, func KeepAlive(interface{})
    pkg runtime, func SetCgoTraceback(int, unsafe.Pointer, unsafe.Pointer, unsafe.Pointer)
    pkg runtime, method (*Frames) Next() (Frame, bool)
    pkg runtime, type Frame struct
    pkg runtime, type Frame struct, Entry uintptr
    pkg runtime, type Frame struct, File string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  3. src/runtime/extern.go

    	MemProfileRate for the default value.
    
    	profstackdepth: profstackdepth=128 (the default) will set the maximum stack
    	depth used by all pprof profilers except for the CPU profiler to 128 frames.
    	Stack traces that exceed this limit will be truncated to the limit starting
    	from the leaf frame. Setting profstackdepth to any value above 1024 will
    	silently default to 1024. Future versions of Go may remove this limitation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    }
    
    type internalObjFile struct {
    	ObjFile
    }
    
    func (f *internalObjFile) SourceLine(frame uint64) ([]plugin.Frame, error) {
    	frames, err := f.ObjFile.SourceLine(frame)
    	if err != nil {
    		return nil, err
    	}
    	var pluginFrames []plugin.Frame
    	for _, f := range frames {
    		pluginFrames = append(pluginFrames, plugin.Frame(f))
    	}
    	return pluginFrames, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/runtime/runtime-seh_windows_test.go

    			break
    		}
    		pcs[i] = ctx.GetPC()
    		n++
    		windows.RtlVirtualUnwind(0, base, ctx.GetPC(), fn, uintptr(unsafe.Pointer(ctx)), nil, &frame, nil)
    	}
    	return pcs[:n]
    }
    
    // SEH unwinding does not report inlined frames.
    //
    //go:noinline
    func sehf3(pan bool) []uintptr {
    	return sehf4(pan)
    }
    
    //go:noinline
    func sehf4(pan bool) []uintptr {
    	var pcs []uintptr
    	if pan {
    		panic("sehf4")
    	}
    	pcs = sehCallers()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/runtime1.go

    var traceback_env uint32
    
    // gotraceback returns the current traceback settings.
    //
    // If level is 0, suppress all tracebacks.
    // If level is 1, show tracebacks, but exclude runtime frames.
    // If level is 2, show tracebacks including runtime frames.
    // If all is set, print all goroutine stacks. Otherwise, print just the current goroutine.
    // If crash is set, crash (core dump, etc) after tracebacking.
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/reflect/asm_ppc64x.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    #include "funcdata.h"
    #include "asm_ppc64x.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

        @Suppress("NOTHING_TO_INLINE")
        private inline fun buildPackageNamesSetFrom(vararg fqNameSets: Set<FqName>): Set<String> =
            buildSet {
                for (fqNameSet in fqNameSets) {
                    fqNameSet.mapTo(this, FqName::asString)
                }
            }
    
        override fun getTopLevelProperties(callableId: CallableId): Collection<KtProperty> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    	lineSec := dwarfSecInfo{syms: []loader.Sym{lineSym}}
    	locSec := dwarfSecInfo{syms: []loader.Sym{locSym}}
    	rangesSec := dwarfSecInfo{syms: []loader.Sym{rangesSym}}
    	frameSec := dwarfSecInfo{syms: []loader.Sym{frameSym}}
    	infoSec := dwarfSecInfo{syms: []loader.Sym{infoSym}}
    
    	// Create any new symbols that will be needed during the
    	// parallel portion below.
    	ncu := len(d.linkctxt.compUnits)
    	unitSyms := make([]dwUnitSyms, ncu)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    pointer against g->stackguard to check for overflow.  To cut one
    instruction from the check sequence for functions with tiny frames,
    the stack is allowed to protrude StackSmall bytes below the stack
    guard.  Functions with large frames don't bother with the check and
    always call morestack.  The sequences are (for amd64, others are
    similar):
    
    	guard = g->stackguard
    	frame = function's stack frame size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top