Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for direction (0.24 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    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

    CFLAGS, CPPFLAGS, CXXFLAGS, FFLAGS and LDFLAGS may be defined with pseudo
    #cgo directives within these comments to tweak the behavior of the C, C++
    or Fortran compiler. Values defined in multiple directives are concatenated
    together. The directive can include a list of build constraints limiting its
    effect to systems satisfying one of the constraints
    (see https://golang.org/pkg/go/build/#hdr-Build_Constraints for details about the constraint syntax).
    For example:
    
    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. src/archive/zip/reader_test.go

    		File: []ZipTestFile{
    			{
    				Name:    "世界",
    				Content: []byte{},
    				Mode:    0644,
    				// Name is valid UTF-8, but format does not have UTF-8 flag set.
    				// We don't do UTF-8 detection for multi-byte runes due to
    				// false-positives with other encodings (e.g., Shift-JIS).
    				// Format says encoding is not UTF-8, so we trust it.
    				NonUTF8:  true,
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIR = 204
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIR ideal-int
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIRECTION = 166
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIRECTION ideal-int
    pkg syscall (freebsd-arm64), const DLT_PRISM_HEADER = 119
    pkg syscall (freebsd-arm64), const DLT_PRISM_HEADER ideal-int
    pkg syscall (freebsd-arm64), const DLT_PRONET = 4
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

            It does not affect the behaviour of proxy.golang.org or the go command.
            Instead we recommend using the retract directive which will be processed by all 3 of the above.
    
            If you have deleted your repo, please recreate it and publish a retraction.
    
            Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 04 23:31:17 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/gcc.go

    			// #cgo (nocallback|noescape) <function name>
    			if fields := strings.Fields(l); len(fields) == 3 {
    				directive := fields[1]
    				funcName := fields[2]
    				if directive == "nocallback" {
    					fatalf("#cgo nocallback disabled until Go 1.23")
    					f.NoCallbacks[funcName] = true
    				} else if directive == "noescape" {
    					fatalf("#cgo noescape disabled until Go 1.23")
    					f.NoEscapes[funcName] = true
    				}
    			}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg encoding/xml, method (*UnsupportedTypeError) Error() string
    pkg encoding/xml, method (CharData) Copy() CharData
    pkg encoding/xml, method (Comment) Copy() Comment
    pkg encoding/xml, method (Directive) Copy() Directive
    pkg encoding/xml, method (ProcInst) Copy() ProcInst
    pkg encoding/xml, method (StartElement) Copy() StartElement
    pkg encoding/xml, method (UnmarshalError) Error() string
    pkg encoding/xml, type Attr struct
    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)
  8. doc/go_spec.html

    <pre class="ebnf">
    ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If a direction is given, the channel is <i>directional</i>,
    otherwise it is <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignment_statements">assignment</a> or
    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)
  9. src/cmd/asm/internal/lex/input.go

    func (in *Input) enabled() bool {
    	return len(in.ifdefStack) == 0 || in.ifdefStack[len(in.ifdefStack)-1]
    }
    
    func (in *Input) expectNewline(directive string) {
    	tok := in.Stack.Next()
    	if tok != '\n' {
    		in.expectText("expected newline after", directive)
    	}
    }
    
    func (in *Input) Next() ScanToken {
    	if in.peek {
    		in.peek = false
    		tok := in.peekToken
    		in.text = in.peekText
    		return tok
    	}
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg syscall (openbsd-386), const BPF_ALU = 4
    pkg syscall (openbsd-386), const BPF_AND = 80
    pkg syscall (openbsd-386), const BPF_B = 16
    pkg syscall (openbsd-386), const BPF_DIRECTION_IN = 1
    pkg syscall (openbsd-386), const BPF_DIRECTION_OUT = 2
    pkg syscall (openbsd-386), const BPF_DIV = 48
    pkg syscall (openbsd-386), const BPF_H = 8
    pkg syscall (openbsd-386), const BPF_IMM = 0
    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