Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 354 for prolog (0.27 sec)

  1. src/internal/coverage/cfile/apis.go

    	// finished clearing the entire counter segment, we will have lost
    	// the values in the prolog portion of main.XYZ's counter slab
    	// (nctrs, pkgid, funcid). This means that later on at the end of
    	// program execution as we walk through the entire counter array
    	// for the program looking for executed functions, we'll zoom past
    	// main.XYZ's prolog (which was zero'd) and hit the non-zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. test/rotate.go

    	defer b.Flush()
    
    	fmt.Fprintf(b, "%s\n", prolog)
    
    	for logBits := uint(3); logBits <= 6; logBits++ {
    		typ := fmt.Sprintf("int%d", 1<<logBits)
    		fmt.Fprint(b, strings.Replace(checkFunc, "XXX", typ, -1))
    		fmt.Fprint(b, strings.Replace(checkFunc, "XXX", "u"+typ, -1))
    		gentest(b, 1<<logBits, mode&1 != 0, mode&2 != 0)
    	}
    }
    
    const prolog = `
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/test/mergelocals_test.go

    	}
    	vars := make(map[string]string)
    	lines := strings.Split(string(out), "\n")
    	prolog := true
    	varsAtFrameOffset := make(map[string]int)
    	for _, line := range lines {
    		if line == "=-= stack layout for ABC:" {
    			prolog = false
    			continue
    		} else if prolog || line == "" {
    			continue
    		}
    		fields := strings.Fields(line)
    		wantFields := 9
    		if len(fields) != wantFields {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:43:53 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/MavenToolchainsIntegrationTest.groovy

            when:
            succeeds 'javaToolchains', '--info'
    
            then:
            outputContains "Java Toolchain auto-detection failed to parse Maven Toolchains located at ${toolchainsFile}. Content is not allowed in prolog."
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    /**
     * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
     * Based on https://github.com/chriskempson/tomorrow-theme
     * @author Rose Pritchard
     */
    
    .token.comment,
    .token.block-comment,
    .token.prolog,
    .token.doctype,
    .token.cdata {
        color: #999;
    }
    
    .token.punctuation {
        color: #ccc;
    }
    
    .token.tag,
    .token.attr-name,
    .token.namespace,
    .token.deleted {
        color: #e2777a;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. test/index.go

    // Generate test of index and slice bounds checks.
    // The actual tests are index0.go, index1.go, index2.go.
    
    package main
    
    import (
    	"bufio"
    	"fmt"
    	"os"
    	"unsafe"
    )
    
    const prolog = `
    
    package main
    
    import (
    	"runtime"
    )
    
    type quad struct { x, y, z, w int }
    
    const (
    	cj = 100011
    	ci int = 100012
    	ci8 int8 = 115
    	ci16 int16 = 10016
    	ci32 int32 = 100013
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 08 17:28:20 UTC 2019
    - 6.4K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    // error if a Go file with a cgo comment #include's the export header
    // generated by a different package. Unfortunately GoString means two
    // different things: in this prolog it means a C name for the Go type,
    // while in the prolog written into the start of the C code generated
    // from a cgo-using Go file it means the C.GoString function. There is
    // no way to resolve this conflict, but it also doesn't make much
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/seh.go

    		return
    	}
    
    	// This implementation expects the following function prologue layout:
    	// - Stack split code (optional)
    	// - PUSHQ	BP
    	// - MOVQ	SP,	BP
    	//
    	// If the prologue layout change, the unwind information should be updated
    	// accordingly.
    
    	// Search for the PUSHQ BP instruction inside the prologue.
    	var pushbp *obj.Prog
    	for p := s.Func().Text; p != nil; p = p.Link {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    	return list, sizeIdx
    }
    
    // locatePrologEnd walks the entry block of a function with incoming
    // register arguments and locates the last instruction in the prolog
    // that spills a register arg. It returns the ID of that instruction,
    // and (where appropriate) the prolog's lowered closure ptr store inst.
    //
    // Example:
    //
    //	b1:
    //	    v3 = ArgIntReg <int> {p1+0} [0] : AX
    //	    ... more arg regs ..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. src/runtime/asm_wasm.s

    	I64Add
    	I32WrapI64
    	Set SP
    
    	// call target function
    	Get CTXT
    	I32WrapI64
    	I64Load $0
    	CALL
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    // Called during function prolog when more stack is needed.
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    // calling the scheduler calling newm calling gc), so we must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top