Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 91 for frameset (1.81 sec)

  1. src/reflect/asm_loong64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "funcdata.h"
    
    #define	REGCTXT	R29
    
    // 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: Mon May 13 15:04:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/image/gif/writer_test.go

    			return false
    		}
    	}
    	return true
    }
    
    var frames = []string{
    	"../testdata/video-001.gif",
    	"../testdata/video-005.gray.gif",
    }
    
    func testEncodeAll(t *testing.T, go1Dot5Fields bool, useGlobalColorModel bool) {
    	const width, height = 150, 103
    
    	g0 := &GIF{
    		Image:     make([]*image.Paletted, len(frames)),
    		Delay:     make([]int, len(frames)),
    		LoopCount: 5,
    	}
    	for i, f := range frames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K 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/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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssa/deadstore.go

    func elimDeadAutosGeneric(f *Func) {
    	addr := make(map[*Value]*ir.Name) // values that the address of the auto reaches
    	elim := make(map[*Value]*ir.Name) // values that could be eliminated if the auto is
    	var used ir.NameSet               // used autos that must be kept
    
    	// visit the value and report whether any of the maps are updated
    	visit := func(v *Value) (changed bool) {
    		args := v.Args
    		switch v.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/framer/framer.go

    	}
    	return w.w.Write(data)
    }
    
    type lengthDelimitedFrameReader struct {
    	r         io.ReadCloser
    	remaining int
    }
    
    // NewLengthDelimitedFrameReader returns an io.Reader that will decode length-prefixed
    // frames off of a stream.
    //
    // The protocol is:
    //
    //	stream: message ...
    //	message: prefix body
    //	prefix: 4 byte uint32 in BigEndian order, denotes length of body
    //	body: bytes (0..prefix)
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 13:33:12 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/os/zero_copy_linux.go

    	// where splice(2) will just return EINVAL; newer kernels support non-streams like UDP, but I really
    	// doubt that splice(2) could help non-streams, cuz they usually send small frames respectively
    	// and one splice call would result in one frame.
    	// splice(2) is suitable for large data but the generation of fragments defeats its edge here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top