Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 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 Apr 23 11:13:09 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 23 11:13:09 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  3. api/go1.6.txt

    pkg debug/elf, const R_MIPS_INSERT_B = 26
    pkg debug/elf, const R_MIPS_INSERT_B R_MIPS
    pkg debug/elf, const R_MIPS_JALR = 37
    pkg debug/elf, const R_MIPS_JALR R_MIPS
    pkg debug/elf, const R_MIPS_LITERAL = 8
    pkg debug/elf, const R_MIPS_LITERAL R_MIPS
    pkg debug/elf, const R_MIPS_LO16 = 6
    pkg debug/elf, const R_MIPS_LO16 R_MIPS
    pkg debug/elf, const R_MIPS_NONE = 0
    pkg debug/elf, const R_MIPS_NONE R_MIPS
    pkg debug/elf, const R_MIPS_PC16 = 10
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 13 23:40:13 GMT 2016
    - 12.9K bytes
    - Viewed (0)
  4. 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 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg debug/elf, const R_ALPHA_IMMED_LO32 R_ALPHA
    pkg debug/elf, const R_ALPHA_IMMED_SCN_HI32 R_ALPHA
    pkg debug/elf, const R_ALPHA_JMP_SLOT R_ALPHA
    pkg debug/elf, const R_ALPHA_LITERAL R_ALPHA
    pkg debug/elf, const R_ALPHA_LITUSE R_ALPHA
    pkg debug/elf, const R_ALPHA_NONE R_ALPHA
    pkg debug/elf, const R_ALPHA_OP_PRSHIFT R_ALPHA
    pkg debug/elf, const R_ALPHA_OP_PSUB R_ALPHA
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  6. 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 Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 279.3K bytes
    - Viewed (0)
  7. 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 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  8. 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 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  9. doc/go1.22.html

      When analyzing a file that requires Go 1.22 or newer
      (due to its go.mod file or a per-file build constraint),
      <code>vet</code>code> no longer reports references to
      loop variables from within a function literal that
      might outlive the iteration of the loop.
      In Go 1.22, loop variables are created anew for each iteration,
      so such references are no longer at risk of using a variable
      after it has been updated by the loop.
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  10. 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 Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top