Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for frog (0.13 sec)

  1. src/cmd/internal/gcprog/gcprog.go

    // and Append panics if that is not true.
    func (w *Writer) Append(prog []byte, n int64) {
    	w.flushlit()
    	if w.debug != nil {
    		fmt.Fprintf(w.debug, "gcprog: append prog for %d ptrs\n", n)
    		fmt.Fprintf(w.debug, "\t")
    	}
    	n1 := progbits(prog)
    	if n1 != n {
    		panic("gcprog: wrong bit count in append")
    	}
    	// The last byte of the prog terminates the program.
    	// Don't emit that, or else our own program will end.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. src/bufio/bufio.go

    	var frag []byte
    	// Use ReadSlice to look for delim, accumulating full buffers.
    	for {
    		var e error
    		frag, e = b.ReadSlice(delim)
    		if e == nil { // got final fragment
    			break
    		}
    		if e != ErrBufferFull { // unexpected error
    			err = e
    			break
    		}
    
    		// Make a copy of the buffer.
    		buf := bytes.Clone(frag)
    		fullBuffers = append(fullBuffers, buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    # Build a stdlib command with coverage.
    go build -o $WORK/nm.exe -cover cmd/nm 
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    # Collect a coverage profile from running 'cmd/nm' on the object.
    mkdir $WORK/covdata
    env GOCOVERDIR=$WORK/covdata
    exec $WORK/nm.exe tiny.o
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    }
    
    func subreg(p *obj.Prog, from int, to int) {
    	if false { /* debug['Q'] */
    		fmt.Printf("\n%v\ts/%v/%v/\n", p, rconv(from), rconv(to))
    	}
    
    	if int(p.From.Reg) == from {
    		p.From.Reg = int16(to)
    		p.Ft = 0
    	}
    
    	if int(p.To.Reg) == from {
    		p.To.Reg = int16(to)
    		p.Tt = 0
    	}
    
    	if int(p.From.Index) == from {
    		p.From.Index = int16(to)
    		p.Ft = 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. src/reflect/abi.go

    	freg   int     // FP register index, used if kind == abiStepFloatReg
    }
    
    // abiStepKind is the "op-code" for an abiStep instruction.
    type abiStepKind int
    
    const (
    	abiStepBad      abiStepKind = iota
    	abiStepStack                // copy to/from stack
    	abiStepIntReg               // copy to/from integer register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. security/tools/jwt/README.md

    ```
    
    ## Example
    
    Here is an example of using sa-jwt.py to generate a JWT token.
    
    ```bash
    ./sa-jwt.py /path/to/service_account.json -iss frod@gserviceaccount.com -aud foo,bar
    ./sa-jwt.py /path/to/service_account.json -iss frod@gserviceaccount.com -aud foo,bar -claims key1:value1,key2:value2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  7. src/time/genzabbrs.go

    		zs,
    	}
    	var buf bytes.Buffer
    	err = template.Must(template.New("prog").Parse(prog)).Execute(&buf, v)
    	if err != nil {
    		log.Fatal(err)
    	}
    	data, err := format.Source(buf.Bytes())
    	if err != nil {
    		log.Fatal(err)
    	}
    	err = os.WriteFile(*filename, data, 0644)
    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    const prog = `
    // Copyright 2013 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/anames7.go

    // license that can be found in the LICENSE file.
    
    package arm64
    
    // This order should be strictly consistent to that in a.out.go
    var cnames7 = []string{
    	"", // C_NONE starts from 1
    	"NONE",
    	"REG",
    	"ZREG",
    	"RSP",
    	"FREG",
    	"VREG",
    	"PAIR",
    	"SHIFT",
    	"EXTREG",
    	"SPR",
    	"SPOP",
    	"COND",
    	"ARNG",
    	"ELEM",
    	"LIST",
    	"ZCON",
    	"ABCON0",
    	"ADDCON0",
    	"ABCON",
    	"AMCON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:37:49 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. src/html/template/context.go

    	// ^ in "^http://auth/path?k=v#frag".
    	urlPartNone urlPart = iota
    	// urlPartPreQuery occurs in the scheme, authority, or path; between the
    	// ^s in "h^ttp://auth/path^?k=v#frag".
    	urlPartPreQuery
    	// urlPartQueryOrFrag occurs in the query portion between the ^s in
    	// "http://auth/path?^k=v#frag^".
    	urlPartQueryOrFrag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. src/regexp/syntax/compile.go

    func (c *compiler) inst(op InstOp) frag {
    	// TODO: impose length limit
    	f := frag{i: uint32(len(c.p.Inst)), nullable: true}
    	c.p.Inst = append(c.p.Inst, Inst{Op: op})
    	return f
    }
    
    func (c *compiler) nop() frag {
    	f := c.inst(InstNop)
    	f.out = makePatchList(f.i << 1)
    	return f
    }
    
    func (c *compiler) fail() frag {
    	return frag{}
    }
    
    func (c *compiler) cap(arg uint32) frag {
    	f := c.inst(InstCapture)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 13 14:52:20 UTC 2021
    - 6.8K bytes
    - Viewed (0)
Back to top