Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for assignee (0.28 sec)

  1. src/cmd/cgo/ast.go

    	ctxSwitch
    	ctxTypeSwitch
    	ctxFile
    	ctxDecl
    	ctxSpec
    	ctxDefer
    	ctxCall  // any function call other than ctxCall2
    	ctxCall2 // function call whose result is assigned to two variables
    	ctxSelector
    )
    
    // walk walks the AST x, calling visit(f, x, context) for each node.
    func (f *File) walk(x interface{}, context astContext, visit func(*File, interface{}, astContext)) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    <p>
    In assignments, each value must be <a href="#Assignability">assignable</a>
    to the type of the operand to which it is assigned, with the following special cases:
    </p>
    
    <ol>
    <li>
    	Any typed value may be assigned to the blank identifier.
    </li>
    
    <li>
    	If an untyped constant
    	is assigned to a variable of interface type or the blank identifier,
    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)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const SYS_PSELECT = 436
    pkg syscall (netbsd-arm64-cgo), const SYS_PSELECT ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_PSET_ASSIGN = 414
    pkg syscall (netbsd-arm64-cgo), const SYS_PSET_ASSIGN ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS__PSET_BIND = 415
    pkg syscall (netbsd-arm64-cgo), const SYS__PSET_BIND ideal-int
    pkg syscall (netbsd-arm64-cgo), const SYS_PSET_CREATE = 412
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <p>
    In assignments, each value must be <a href="#Assignability">assignable</a>
    to the type of the operand to which it is assigned, with the following special cases:
    </p>
    
    <ol>
    <li>
    	Any typed value may be assigned to the blank identifier.
    </li>
    
    <li>
    	If an untyped constant
    	is assigned to a variable of interface type or the blank identifier,
    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)
  5. api/go1.1.txt

    pkg go/scanner, const ScanComments = 1
    pkg go/token, const ADD = 12
    pkg go/token, const ADD_ASSIGN = 23
    pkg go/token, const AND = 17
    pkg go/token, const AND_ASSIGN = 28
    pkg go/token, const AND_NOT = 22
    pkg go/token, const AND_NOT_ASSIGN = 33
    pkg go/token, const ARROW = 36
    pkg go/token, const ASSIGN = 42
    pkg go/token, const BREAK = 61
    pkg go/token, const CASE = 62
    pkg go/token, const CHAN = 63
    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)
  6. misc/wasm/wasm_exec_node.js

    globalThis.performance ??= require("performance");
    
    globalThis.crypto ??= require("crypto");
    
    require("./wasm_exec");
    
    const go = new Go();
    go.argv = process.argv.slice(2);
    go.env = Object.assign({ TMPDIR: require("os").tmpdir() }, process.env);
    go.exit = process.exit;
    WebAssembly.instantiate(fs.readFileSync(process.argv[2]), go.importObject).then((result) => {
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jan 30 18:49:42 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (netbsd-386), const SYS_PREADV ideal-int
    pkg syscall (netbsd-386), const SYS_PROFIL ideal-int
    pkg syscall (netbsd-386), const SYS_PSELECT ideal-int
    pkg syscall (netbsd-386), const SYS_PSET_ASSIGN ideal-int
    pkg syscall (netbsd-386), const SYS_PSET_CREATE ideal-int
    pkg syscall (netbsd-386), const SYS_PSET_DESTROY ideal-int
    pkg syscall (netbsd-386), const SYS_PTRACE ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  8. api/go1.9.txt

    pkg encoding/base32, method (Encoding) WithPadding(int32) *Encoding
    pkg encoding/csv, type Reader struct, ReuseRecord bool
    pkg encoding/json, func Valid([]uint8) bool
    pkg go/ast, type TypeSpec struct, Assign token.Pos
    pkg go/types, func SizesFor(string, string) Sizes
    pkg go/types, method (*TypeName) IsAlias() bool
    pkg hash/fnv, func New128() hash.Hash
    pkg hash/fnv, func New128a() hash.Hash
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
  9. src/archive/zip/reader.go

    		return ErrFormat
    	}
    
    	return nil
    }
    
    func readDataDescriptor(r io.Reader, f *File) error {
    	var buf [dataDescriptorLen]byte
    	// The spec says: "Although not originally assigned a
    	// signature, the value 0x08074b50 has commonly been adopted
    	// as a signature value for the data descriptor record.
    	// Implementers should be aware that ZIP files may be
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg go/scanner, type Scanner struct, ErrorCount int
    pkg go/token, const ADD Token
    pkg go/token, const ADD_ASSIGN Token
    pkg go/token, const AND Token
    pkg go/token, const AND_ASSIGN Token
    pkg go/token, const AND_NOT Token
    pkg go/token, const AND_NOT_ASSIGN Token
    pkg go/token, const ARROW Token
    pkg go/token, const ASSIGN Token
    pkg go/token, const BREAK Token
    pkg go/token, const CASE Token
    pkg go/token, const CHAN Token
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top