Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,266 for qtext (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        public void generate() {
            outputFile.text = text
        }
    }
    
    task a(type: GeneratorTask) {
        text = project.text
        outputFile = file('dest.txt')
    }
    '''
    
            when:
            succeeds "a", "-Ptext=text"
    
            then:
            result.assertTasksNotSkipped(":a")
    
            when:
            succeeds "a", "-Ptext=text"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. src/runtime/symtab.go

    			println("runtime: textAddr", hex(res), "out of range", hex(md.text), "-", hex(md.etext))
    			throw("runtime: text offset out of range")
    		}
    	}
    	return res
    }
    
    // textOff is the opposite of textAddr. It converts a PC to a (virtual) offset
    // to md.text, and returns if the PC is in any Go text section.
    //
    // It is nosplit because it is part of the findfunc implementation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/macho.go

    			s := ldr.Lookup("runtime.text", 0)
    			if ldr.SymType(s) == sym.STEXT {
    				addsym(s)
    			}
    		}
    		for n := range Segtext.Sections[1:] {
    			s := ldr.Lookup(fmt.Sprintf("runtime.text.%d", n+1), 0)
    			if s != 0 {
    				addsym(s)
    			} else {
    				break
    			}
    		}
    		if !ctxt.DynlinkingGo() {
    			s := ldr.Lookup("runtime.etext", 0)
    			if ldr.SymType(s) == sym.STEXT {
    				addsym(s)
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  4. src/image/gif/reader.go

    	DisposalPrevious   = 0x03
    )
    
    // Section indicators.
    const (
    	sExtension       = 0x21
    	sImageDescriptor = 0x2C
    	sTrailer         = 0x3B
    )
    
    // Extensions.
    const (
    	eText           = 0x01 // Plain Text
    	eGraphicControl = 0xF9 // Graphic Control
    	eComment        = 0xFE // Comment
    	eApplication    = 0xFF // Application
    )
    
    func readFull(r io.Reader, b []byte) error {
    	_, err := io.ReadFull(r, b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/riscv64/asm.go

    		// Find the text symbol for the AUIPC instruction targeted
    		// by this relocation.
    		relocs := ldr.Relocs(s)
    		offset := int64(relocs.At(ri).Off())
    		hi20Sym := findHI20Symbol(ctxt, ldr, ldr.SymValue(s)+offset)
    		if hi20Sym == 0 {
    			ld.Errorf(nil, "failed to find text symbol for HI20 relocation at %d (%x)", sectoff, ldr.SymValue(s)+offset)
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. src/html/template/transition.go

    	stateCSSBlockCmt:    tBlockCmt,
    	stateCSSLineCmt:     tLineCmt,
    	stateError:          tError,
    }
    
    var commentStart = []byte("<!--")
    var commentEnd = []byte("-->")
    
    // tText is the context transition function for the text state.
    func tText(c context, s []byte) (context, int) {
    	k := 0
    	for {
    		i := k + bytes.IndexByte(s[k:], '<')
    		if i < k || i+1 == len(s) {
    			return c, len(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/obj9.go

    	// TODO(minux): add morestack short-cuts with small fixed frame-size.
    	if cursym.Func().Text == nil || cursym.Func().Text.Link == nil {
    		return
    	}
    
    	c := ctxt9{ctxt: ctxt, cursym: cursym, newprog: newprog}
    
    	p := c.cursym.Func().Text
    	textstksiz := p.To.Offset
    	if textstksiz == -8 {
    		// Compatibility hack.
    		p.From.Sym.Set(obj.AttrNoFrame, true)
    		textstksiz = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    //go:generate stringer -type ABI
    
    // ABI is the calling convention of a text symbol.
    type ABI uint8
    
    const (
    	// ABI0 is the stable stack-based ABI. It's important that the
    	// value of this is "0": we can't distinguish between
    	// references to data and ABI0 text symbols in assembly code,
    	// and hence this doesn't distinguish between symbols without
    	// an ABI and text symbols with ABI0.
    	ABI0 ABI = iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_amd64.s

    TEXT ·libc_socketpair_trampoline(SB),NOSPLIT,$0-0
    	JMP	libc_socketpair(SB)
    TEXT ·libc_recvfrom_trampoline(SB),NOSPLIT,$0-0
    	JMP	libc_recvfrom(SB)
    TEXT ·libc_sendto_trampoline(SB),NOSPLIT,$0-0
    	JMP	libc_sendto(SB)
    TEXT ·libc_recvmsg_trampoline(SB),NOSPLIT,$0-0
    	JMP	libc_recvmsg(SB)
    TEXT ·libc_sendmsg_trampoline(SB),NOSPLIT,$0-0
    	JMP	libc_sendmsg(SB)
    TEXT ·libc_kevent_trampoline(SB),NOSPLIT,$0-0
    	JMP	libc_kevent(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/asm_darwin.s

    TEXT ·libc_getgrouplist_trampoline(SB),NOSPLIT,$0-0; JMP libc_getgrouplist(SB)
    TEXT ·libc_getpwnam_r_trampoline(SB),NOSPLIT,$0-0; JMP libc_getpwnam_r(SB)
    TEXT ·libc_getpwuid_r_trampoline(SB),NOSPLIT,$0-0; JMP libc_getpwuid_r(SB)
    TEXT ·libc_getgrnam_r_trampoline(SB),NOSPLIT,$0-0; JMP libc_getgrnam_r(SB)
    TEXT ·libc_getgrgid_r_trampoline(SB),NOSPLIT,$0-0; JMP libc_getgrgid_r(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 15:02:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top