Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for littoral (0.23 sec)

  1. doc/go1.17_spec.html

    <p>
    An imaginary literal represents the imaginary part of a
    <a href="#Constants">complex constant</a>.
    It consists of an <a href="#Integer_literals">integer</a> or
    <a href="#Floating-point_literals">floating-point</a> literal
    followed by the lower-case letter <code>i</code>.
    The value of an imaginary literal is the value of the respective
    integer or floating-point literal multiplied by the imaginary unit <i>i</i>.
    </p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    to it. Whether Go memory is pinned is a dynamic property of that memory
    region; it has nothing to do with the type of the pointer.
    
    Go values created by calling new, by taking the address of a composite
    literal, or by taking the address of a local variable may also have their
    memory pinned using [runtime.Pinner]. This type may be used to manage
    the duration of the memory's pinned status, potentially beyond the
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/gcc.go

    	// literal to evaluate the arguments at the right time.
    	//    defer func() func() {
    	//            _cgo0 := p
    	//            return func() {
    	//                    _cgoCheckPointer(_cgo0, nil)
    	//                    C.f(_cgo0)
    	//            }
    	//    }()()
    	// This works because the defer statement evaluates the first
    	// function literal in order to get the function to call.
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. doc/godebug.md

    controlled by the [`panicnil` setting](/pkg/builtin/#panic).
    
    Go 1.21 made it an error for html/template actions to appear inside of an ECMAScript 6
    template literal, controlled by the
    [`jstmpllitinterp` setting](/pkg/html/template#hdr-Security_Model).
    This behavior was backported to Go 1.19.8+ and Go 1.20.3+.
    
    Go 1.21 introduced a limit on the maximum number of MIME headers and multipart
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <p>
    An imaginary literal represents the imaginary part of a
    <a href="#Constants">complex constant</a>.
    It consists of an <a href="#Integer_literals">integer</a> or
    <a href="#Floating-point_literals">floating-point</a> literal
    followed by the lowercase letter <code>i</code>.
    The value of an imaginary literal is the value of the respective
    integer or floating-point literal multiplied by the imaginary unit <i>i</i>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  6. src/builtin/builtin.go

    //	String: the number of bytes in v.
    //	Channel: the number of elements queued (unread) in the channel buffer;
    //	         if v is nil, len(v) is zero.
    //
    // For some arguments, such as a string literal or a simple array expression, the
    // result can be a constant. See the Go language specification's "Length and
    // capacity" section for details.
    func len(v Type) int
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    		if p.atRegisterShift() {
    			// ARM shifted register such as R1<<R2 or R1>>2.
    			a.Type = obj.TYPE_SHIFT
    			a.Offset = p.registerShift(tok.String(), prefix)
    			if p.peek() == '(' {
    				// Can only be a literal register here.
    				p.next()
    				tok := p.next()
    				name := tok.String()
    				if !p.atStartOfRegister(name) {
    					p.errorf("expected register; found %s", name)
    				}
    				a.Reg, _ = p.registerReference(name)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  8. api/go1.1.txt

    pkg debug/elf, const R_ALPHA_IMMED_GP_HI32 = 20
    pkg debug/elf, const R_ALPHA_IMMED_LO32 = 23
    pkg debug/elf, const R_ALPHA_IMMED_SCN_HI32 = 21
    pkg debug/elf, const R_ALPHA_JMP_SLOT = 26
    pkg debug/elf, const R_ALPHA_LITERAL = 4
    pkg debug/elf, const R_ALPHA_LITUSE = 5
    pkg debug/elf, const R_ALPHA_NONE = 0
    pkg debug/elf, const R_ALPHA_OP_PRSHIFT = 15
    pkg debug/elf, const R_ALPHA_OP_PSUB = 14
    pkg debug/elf, const R_ALPHA_OP_PUSH = 12
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/asm.go

    	nameAddr := p.address(operands[0])
    	if !p.validSymbol("TEXT", &nameAddr, false) {
    		return
    	}
    	name := symbolName(&nameAddr)
    	next := 1
    
    	// Next operand is the optional text flag, a literal integer.
    	var flag = int64(0)
    	if len(operands) == 3 {
    		flag = p.evalInteger("TEXT", operands[1])
    		next++
    	}
    
    	// Issue an error if we see a function defined as ABIInternal
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
Back to top