Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for border (0.24 sec)

  1. PATENTS

    implementation of Go.  This grant does not include claims that would be
    infringed only as a consequence of further modification of this
    implementation.  If you or your agent or exclusive licensee institute or
    order or agree to the institution of patent litigation against any
    entity (including a cross-claim or counterclaim in a lawsuit) alleging
    that this implementation of Go or any code incorporated within this
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Dec 06 21:31:59 GMT 2010
    - 1.3K bytes
    - Viewed (0)
  2. doc/README.md

    ## For developers
    
    Release notes should be added to `next` by editing existing files or creating new files.
    
    At the end of the development cycle, the files will be merged by being
    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    corresponding to standard library package paths, and headings for those package
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Apr 10 19:41:39 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <a href="#Order_of_evaluation">evaluation order</a>.
    </p>
    
    <p>
    For struct literals the following rules apply:
    </p>
    <ul>
    	<li>A key must be a field name declared in the struct type.
    	</li>
    	<li>An element list that does not contain any keys must
    	    list an element for each struct field in the
    	    order in which the fields are declared.
    	</li>
    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)
  4. src/builtin/builtin.go

    // invocation of F then behaves like a call to panic, terminating G's
    // execution and running any deferred functions. This continues until all
    // functions in the executing goroutine have stopped, in reverse order. At
    // that point, the program is terminated with a non-zero exit code. This
    // termination sequence is called panicking and can be controlled by the
    // built-in function recover.
    //
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/bytes/bytes.go

    // returns a slice of subslices of s. If all code points in s satisfy f(c), or
    // len(s) == 0, an empty slice is returned.
    //
    // FieldsFunc makes no guarantees about the order in which it calls f(c)
    // and assumes that f always returns the same value for a given c.
    func FieldsFunc(s []byte, f func(rune) bool) [][]byte {
    	// A span is used to record a slice of s of the form s[start:end].
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg debug/elf, const R_X86_64_TPOFF64 = 18
    pkg debug/elf, const SHF_ALLOC = 2
    pkg debug/elf, const SHF_EXECINSTR = 4
    pkg debug/elf, const SHF_GROUP = 512
    pkg debug/elf, const SHF_INFO_LINK = 64
    pkg debug/elf, const SHF_LINK_ORDER = 128
    pkg debug/elf, const SHF_MASKOS = 267386880
    pkg debug/elf, const SHF_MASKPROC = 4026531840
    pkg debug/elf, const SHF_MERGE = 16
    pkg debug/elf, const SHF_OS_NONCONFORMING = 256
    pkg debug/elf, const SHF_STRINGS = 32
    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)
  7. doc/asm.html

    represents the bitwise and instruction,
    <code>AND</code> (without the leading <code>A</code>),
    and is written in assembly source as <code>AND</code>.
    The enumeration is mostly in alphabetical order.
    (The architecture-independent <code>AXXX</code>, defined in the
    <code>cmd/internal/obj</code> package,
    represents an invalid instruction).
    The sequence of the <code>A</code> names has nothing to do with the actual
    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)
  8. src/cmd/asm/internal/asm/testdata/ppc64.s

    	XOR $1234567, R5                // 6ca5001268a5d687
    	XOR $1234567, R5, R3            // 6ca300126863d687
    	XORIS $15, R3, R4               // 6c64000f
    	XOR   $983040, R3, R4           // 6c64000f
    
    	// TODO: the order of CR operands don't match
    	CMP R3, R4                      // 7c232000
    	CMPU R3, R4                     // 7c232040
    	CMPW R3, R4                     // 7c032000
    	CMPWU R3, R4                    // 7c032040
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Apr 01 18:50:29 GMT 2024
    - 48.8K bytes
    - Viewed (0)
  9. src/archive/zip/fuzz_test.go

    			}
    			files = append(files, file{header: &f.FileHeader, content: content})
    			if _, err := r.Open(f.Name); err != nil {
    				continue
    			}
    		}
    
    		// If we were unable to read anything out of the archive don't
    		// bother trying to roundtrip it.
    		if len(files) == 0 {
    			return
    		}
    
    		w := NewWriter(io.Discard)
    		for _, f := range files {
    			ww, err := w.CreateHeader(f.header)
    			if err != nil {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Jan 13 18:06:33 GMT 2022
    - 1.7K bytes
    - Viewed (0)
  10. src/arena/arena.go

    Arenas allocate large chunks of memory for Go values, so they're likely to
    be inefficient for allocating only small amounts of small Go values. They're
    best used in bulk, on the order of MiB of memory allocated on each use.
    
    Note that by allowing for this limited form of manual memory allocation
    that use-after-free bugs are possible with regular Go values. This package
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
Back to top