Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for State (0.14 sec)

  1. doc/go1.17_spec.html

    </p>
    
    <pre>
    OuterLoop:
    	for i = 0; i &lt; n; i++ {
    		for j = 0; j &lt; m; j++ {
    			switch a[i][j] {
    			case nil:
    				state = Error
    				break OuterLoop
    			case item:
    				state = Found
    				break OuterLoop
    			}
    		}
    	}
    </pre>
    
    <h3 id="Continue_statements">Continue statements</h3>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/archive/tar/common.go

    	// are relevant to all subsequent files.
    	// This package only supports parsing and composing such headers,
    	// but does not currently support persisting the global state across files.
    	TypeXGlobalHeader = 'g'
    
    	// Type 'S' indicates a sparse file in the GNU format.
    	TypeGNUSparse = 'S'
    
    	// Types 'L' and 'K' are used by the GNU format for a meta file
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  3. src/archive/zip/writer.go

    func (w *Writer) CreateHeader(fh *FileHeader) (io.Writer, error) {
    	if err := w.prepare(fh); err != nil {
    		return nil, err
    	}
    
    	// The ZIP format has a sad state of affairs regarding character encoding.
    	// Officially, the name and comment fields are supposed to be encoded
    	// in CP-437 (which is mostly compatible with ASCII), unless the UTF-8
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    </p>
    
    <pre>
    OuterLoop:
    	for i = 0; i &lt; n; i++ {
    		for j = 0; j &lt; m; j++ {
    			switch a[i][j] {
    			case nil:
    				state = Error
    				break OuterLoop
    			case item:
    				state = Found
    				break OuterLoop
    			}
    		}
    	}
    </pre>
    
    <h3 id="Continue_statements">Continue statements</h3>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top