Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for normale (0.2 sec)

  1. api/go1.3.txt

    pkg syscall (netbsd-386), const MADV_DONTNEED ideal-int
    pkg syscall (netbsd-386), const MADV_FREE = 6
    pkg syscall (netbsd-386), const MADV_FREE ideal-int
    pkg syscall (netbsd-386), const MADV_NORMAL = 0
    pkg syscall (netbsd-386), const MADV_NORMAL ideal-int
    pkg syscall (netbsd-386), const MADV_RANDOM = 1
    pkg syscall (netbsd-386), const MADV_RANDOM ideal-int
    pkg syscall (netbsd-386), const MADV_SEQUENTIAL = 2
    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)
  2. src/arena/arena.go

    error message, but this package reserves the right to not force a fault on
    freed memory. That means a valid implementation of this package is to just
    allocate all memory the way the runtime normally would, and in fact, it
    reserves the right to occasionally do so for some Go values.
    */
    package arena
    
    import (
    	"internal/reflectlite"
    	"unsafe"
    )
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    /*
    Cgo enables the creation of Go packages that call C code.
    
    # Using cgo with the go command
    
    To use cgo write normal Go code that imports a pseudo-package "C".
    The Go code can then refer to types such as C.size_t, variables such
    as C.stdout, or functions such as C.putchar.
    
    If the import of "C" is immediately preceded by a comment, that
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  4. src/bufio/bufio_test.go

    	}
    }
    
    func TestUnreadRune(t *testing.T) {
    	segments := []string{"Hello, world:", "日本語"}
    	r := NewReader(&StringReader{data: segments})
    	got := ""
    	want := strings.Join(segments, "")
    	// Normal execution.
    	for {
    		r1, _, err := r.ReadRune()
    		if err != nil {
    			if err != io.EOF {
    				t.Error("unexpected error on ReadRune:", err)
    			}
    			break
    		}
    		got += string(r1)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    If <code>D</code> returns normally, without starting a new
    <code>panic</code>, the panicking sequence stops. In that case,
    the state of functions called between <code>G</code> and the call to <code>panic</code>
    is discarded, and normal execution resumes.
    Any functions deferred by <code>G</code> before <code>D</code> are then run and <code>G</code>'s
    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)
  6. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const MADV_FREE = 6
    pkg syscall (netbsd-arm64-cgo), const MADV_FREE ideal-int
    pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL = 0
    pkg syscall (netbsd-arm64-cgo), const MADV_NORMAL ideal-int
    pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM = 1
    pkg syscall (netbsd-arm64-cgo), const MADV_RANDOM ideal-int
    pkg syscall (netbsd-arm64-cgo), const MADV_SEQUENTIAL = 2
    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)
  7. src/builtin/builtin.go

    //
    //	x, ok := <-c
    //
    // will also set ok to false for a closed and empty channel.
    func close(c chan<- Type)
    
    // The panic built-in function stops normal execution of the current
    // goroutine. When a function F calls panic, normal execution of F stops
    // immediately. Any functions whose execution was deferred by F are run in
    // the usual way, and then F returns to its caller. To the caller G, the
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/lex/input.go

    	}
    	in.macros[name] = &Macro{
    		name:   name,
    		args:   args,
    		tokens: tokens,
    	}
    }
    
    // macroDefinition returns the list of formals and the tokens of the definition.
    // The argument list is nil for no parens on the definition; otherwise a list of
    // formal argument names.
    func (in *Input) macroDefinition(name string) ([]string, []Token) {
    	prevCol := in.Stack.Col()
    	tok := in.Stack.Next()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Aug 29 07:48:38 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  9. doc/go_spec.html

    If <code>D</code> returns normally, without starting a new
    <code>panic</code>, the panicking sequence stops. In that case,
    the state of functions called between <code>G</code> and the call to <code>panic</code>
    is discarded, and normal execution resumes.
    Any functions deferred by <code>G</code> before <code>D</code> are then run and <code>G</code>'s
    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)
  10. api/go1.1.txt

    pkg syscall (freebsd-386), const BPF_T_NONE = 3
    pkg syscall (freebsd-386), const BPF_T_NONE ideal-int
    pkg syscall (freebsd-386), const BPF_T_NORMAL = 0
    pkg syscall (freebsd-386), const BPF_T_NORMAL ideal-int
    pkg syscall (freebsd-386), const BPF_W = 0
    pkg syscall (freebsd-386), const BPF_X = 8
    pkg syscall (freebsd-386), const BRKINT = 2
    pkg syscall (freebsd-386), const BRKINT ideal-int
    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)
Back to top