Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for selector (0.22 sec)

  1. doc/go_spec.html

    The identifier <code>f</code> is called the (field or method) <i>selector</i>;
    it must not be the <a href="#Blank_identifier">blank identifier</a>.
    The type of the selector expression is the type of <code>f</code>.
    If <code>x</code> is a package name, see the section on
    <a href="#Qualified_identifiers">qualified identifiers</a>.
    </p>
    
    <p>
    A selector <code>f</code> may denote a field or method <code>f</code> of
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    		abistr := p.get(scanner.Ident).String()
    		if !p.allowABI {
    			if issueError {
    				p.errorf("ABI selector only permitted when compiling runtime, reference was to %q", name)
    			}
    		} else {
    			theabi, valid := obj.ParseABI(abistr)
    			if !valid {
    				if issueError {
    					p.errorf("malformed ABI selector %q in reference to %q",
    						abistr, name)
    				}
    			} else {
    				abi = theabi
    			}
    		}
    	}
    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)
  3. src/bytes/reader_test.go

    		}
    		if fmt.Sprintf("%v", err) != fmt.Sprintf("%v", tt.wanterr) {
    			t.Errorf("%d. got error = %v; want %v", i, err, tt.wanterr)
    		}
    	}
    }
    
    func TestReaderAtConcurrent(t *testing.T) {
    	// Test for the race detector, to verify ReadAt doesn't mutate
    	// any state.
    	r := NewReader([]byte("0123456789"))
    	var wg sync.WaitGroup
    	for i := 0; i < 5; i++ {
    		wg.Add(1)
    		go func(i int) {
    			defer wg.Done()
    			var buf [1]byte
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Dec 13 18:45:54 GMT 2021
    - 8K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg reflect, const Ptr = 22
    pkg reflect, const RecvDir = 1
    pkg reflect, const SelectDefault = 3
    pkg reflect, const SelectDefault SelectDir
    pkg reflect, const SelectRecv = 2
    pkg reflect, const SelectRecv SelectDir
    pkg reflect, const SelectSend = 1
    pkg reflect, const SelectSend SelectDir
    pkg reflect, const SendDir = 2
    pkg reflect, const Slice = 23
    pkg reflect, const String = 24
    pkg reflect, const Struct = 25
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/pseudo_test.go

    		{"TEXT", "$:0:(SB, 0, $1", "expected '(', found 0"},          // Issue 12468.
    		{"TEXT", "@B(SB),0,$0", "expected '(', found B"},             // Issue 23580.
    		{"TEXT", "foo<ABIInternal>(SB),0", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    		{"FUNCDATA", "", "expect two operands for FUNCDATA"},
    		{"FUNCDATA", "(SB ", "expect two operands for FUNCDATA"},
    		{"DATA", "", "expect two operands for DATA"},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    The identifier <code>f</code> is called the (field or method) <i>selector</i>;
    it must not be the <a href="#Blank_identifier">blank identifier</a>.
    The type of the selector expression is the type of <code>f</code>.
    If <code>x</code> is a package name, see the section on
    <a href="#Qualified_identifiers">qualified identifiers</a>.
    </p>
    
    <p>
    A selector <code>f</code> may denote a field or method <code>f</code> of
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/operand_test.go

    	{"[X0,X1,X2,X3]", "register list: expected '-' after `[X0`, found ','"},
    	{"$foo<ABI0>", "ABI selector only permitted when compiling runtime, reference was to \"foo\""},
    }
    
    var amd64BadOperandRuntimeTests = []badOperandTest{
    	{"$foo<bletch>", "malformed ABI selector \"bletch\" in reference to \"foo\""},
    }
    
    var x86OperandTests = []operandTest{
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 18:31:05 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  8. doc/asm.html

    <a href="https://9p.io/sys/doc/compiler.html">this description</a>)
    needs no assembler pass in the usual pipeline.
    Instead, the compiler operates on a kind of semi-abstract instruction set,
    and instruction selection occurs partly after code generation.
    The assembler works on the semi-abstract form, so
    when you see an instruction like <code>MOV</code>
    what the toolchain actually generates for that operation might
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  9. api/go1.5.txt

    pkg go/types, method (*Selection) Index() []int
    pkg go/types, method (*Selection) Indirect() bool
    pkg go/types, method (*Selection) Kind() SelectionKind
    pkg go/types, method (*Selection) Obj() Object
    pkg go/types, method (*Selection) Recv() Type
    pkg go/types, method (*Selection) String() string
    pkg go/types, method (*Selection) Type() Type
    pkg go/types, method (*Signature) Params() *Tuple
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Jul 30 21:14:09 GMT 2015
    - 46.6K bytes
    - Viewed (0)
  10. api/go1.3.txt

    pkg syscall (openbsd-386), const SYS_PPOLL ideal-int
    pkg syscall (openbsd-386), const SYS_PSELECT = 110
    pkg syscall (openbsd-386), const SYS_PSELECT ideal-int
    pkg syscall (openbsd-386), const SYS_SELECT = 71
    pkg syscall (openbsd-386), const SYS_SETITIMER = 69
    pkg syscall (openbsd-386), const SYS_SETTIMEOFDAY = 68
    pkg syscall (openbsd-386), const SYS_STAT = 38
    pkg syscall (openbsd-386), const SYS_STATFS = 63
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
Back to top