Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Omit (0.18 sec)

  1. src/archive/zip/testdata/readme.zip

    BSD-style license found in the LICENSE file. -- Binary Distribution Notes If you have just untarred a binary Go distribution, you need to set the environment variable $GOROOT to the full path of the go directory (the one containing this README). You can omit the variable if you unpack it into /usr/local/go, or if you rebuild from sources by running all.bash (see doc/install.html). You should also add the Go binary directory $GOROOT/bin to your shell's path. For example, if you extracted the tar file into...
    ZIP Archive
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Sat Jul 11 14:36:33 GMT 2015
    - 1.8K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    valid token.
    </p>
    
    <h3 id="Semicolons">Semicolons</h3>
    
    <p>
    The formal grammar uses semicolons <code>";"</code> as terminators in
    a number of productions. Go programs may omit most of these semicolons
    using the following two rules:
    </p>
    
    <ol>
    <li>
    When the input is broken into tokens, a semicolon is automatically inserted
    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)
  3. src/cmd/cgo/gcc.go

    		notStrLiteral
    		notDeclared
    	)
    	sawUnmatchedErrors := false
    	for _, line := range strings.Split(stderr, "\n") {
    		// Ignore warnings and random comments, with one
    		// exception: newer GCC versions will sometimes emit
    		// an error on a macro #define with a note referring
    		// to where the expansion occurs. We care about where
    		// the expansion occurs, so in that case treat the note
    		// as an error.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  4. doc/go_spec.html

    valid token.
    </p>
    
    <h3 id="Semicolons">Semicolons</h3>
    
    <p>
    The formal syntax uses semicolons <code>";"</code> as terminators in
    a number of productions. Go programs may omit most of these semicolons
    using the following two rules:
    </p>
    
    <ol>
    <li>
    When the input is broken into tokens, a semicolon is automatically inserted
    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)
  5. doc/asm.html

    <pre>
    PCALIGN $32
    MOVD $2, R0
    </pre>
    </p>
    
    <h3 id="data-offsets">Interacting with Go types and constants</h3>
    
    <p>
    If a package has any .s files, then <code>go build</code> will direct
    the compiler to emit a special header called <code>go_asm.h</code>,
    which the .s files can then <code>#include</code>.
    The file contains symbolic <code>#define</code> constants for the
    offsets of Go struct fields, the sizes of Go struct types, and most
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  6. misc/ios/go_ios_exec.go

    <plist version="1.0">
    <dict>
    	<key>rules</key>
    	<dict>
    		<key>.*</key>
    		<true/>
    		<key>Info.plist</key>
    		<dict>
    			<key>omit</key>
    			<true/>
    			<key>weight</key>
    			<integer>10</integer>
    		</dict>
    		<key>ResourceRules.plist</key>
    		<dict>
    			<key>omit</key>
    			<true/>
    			<key>weight</key>
    			<integer>100</integer>
    		</dict>
    	</dict>
    </dict>
    </plist>
    `
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  7. src/cmd/api/main_test.go

    	case *types.Interface:
    		w.emitIfaceType(name, typ)
    		return // methods are handled by emitIfaceType
    	default:
    		w.emitf("type %s %s", name, w.typeString(typ.Underlying()))
    	}
    
    	// emit methods with value receiver
    	var methodNames map[string]bool
    	vset := types.NewMethodSet(typ)
    	for i, n := 0, vset.Len(); i < n; i++ {
    		m := vset.At(i)
    		if m.Obj().Exported() {
    			w.emitMethod(m)
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
Back to top