Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for compact (0.21 sec)

  1. api/go1.11.txt

    pkg debug/elf, const EM_AMDGPU Machine
    pkg debug/elf, const EM_ARCA = 109
    pkg debug/elf, const EM_ARCA Machine
    pkg debug/elf, const EM_ARC_COMPACT = 93
    pkg debug/elf, const EM_ARC_COMPACT Machine
    pkg debug/elf, const EM_ARC_COMPACT2 = 195
    pkg debug/elf, const EM_ARC_COMPACT2 Machine
    pkg debug/elf, const EM_AVR = 83
    pkg debug/elf, const EM_AVR Machine
    pkg debug/elf, const EM_AVR32 = 185
    pkg debug/elf, const EM_AVR32 Machine
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  2. src/bytes/buffer_test.go

    	}
    	c, err := b.ReadByte()
    	if err != nil {
    		t.Fatalf("ReadByte: %v", err)
    	}
    	if c != 'm' {
    		t.Errorf("ReadByte = %q; want %q", c, 'm')
    	}
    }
    
    // Tests that we occasionally compact. Issue 5154.
    func TestBufferGrowth(t *testing.T) {
    	var b Buffer
    	buf := make([]byte, 1024)
    	b.Write(buf[0:1])
    	var cap0 int
    	for i := 0; i < 5<<10; i++ {
    		b.Write(buf)
    		b.Read(buf)
    		if i == 0 {
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 20 01:07:29 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  3. api/go1.21.txt

    pkg slices, func Clone[$0 interface{ ~[]$1 }, $1 interface{}]($0) $0 #57433
    pkg slices, func Compact[$0 interface{ ~[]$1 }, $1 comparable]($0) $0 #57433
    pkg slices, func CompactFunc[$0 interface{ ~[]$1 }, $1 interface{}]($0, func($1, $1) bool) $0 #57433
    pkg slices, func Compare[$0 interface{ ~[]$1 }, $1 cmp.Ordered]($0, $0) int #60091
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  4. doc/go_spec.html

    support for concurrent programming.  Programs are constructed from
    <i>packages</i>, whose properties allow efficient management of
    dependencies.
    </p>
    
    <p>
    The syntax is compact and simple to parse, allowing for easy analysis
    by automatic tools such as integrated development environments.
    </p>
    
    <h2 id="Notation">Notation</h2>
    <p>
    The syntax is specified using a
    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. src/bytes/bytes.go

    	return string(a) == string(b)
    }
    
    // Compare returns an integer comparing two byte slices lexicographically.
    // The result will be 0 if a == b, -1 if a < b, and +1 if a > b.
    // A nil argument is equivalent to an empty slice.
    func Compare(a, b []byte) int {
    	return bytealg.Compare(a, b)
    }
    
    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 syscall (freebsd-386), const MCL_CURRENT ideal-int
    pkg syscall (freebsd-386), const MCL_FUTURE = 2
    pkg syscall (freebsd-386), const MCL_FUTURE ideal-int
    pkg syscall (freebsd-386), const MSG_COMPAT = 32768
    pkg syscall (freebsd-386), const MSG_CTRUNC = 32
    pkg syscall (freebsd-386), const MSG_DONTROUTE = 4
    pkg syscall (freebsd-386), const MSG_DONTWAIT = 128
    pkg syscall (freebsd-386), const MSG_EOF = 256
    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. api/go1.19.txt

    pkg debug/elf, type R_LARCH int #46229
    pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY = 2 #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_ANY ideal-int #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE = 5 #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_ASSOCIATIVE ideal-int #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_EXACT_MATCH = 4 #51868
    pkg debug/pe, const IMAGE_COMDAT_SELECT_EXACT_MATCH ideal-int #51868
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  8. src/cmd/asm/internal/asm/asm.go

    			break
    		}
    		if p.arch.Family == sys.S390X {
    			// 3-operand jumps.
    			target = &a[2]
    			prog.From = a[0]
    			if a[1].Reg != 0 {
    				// Compare two registers and jump.
    				prog.Reg = p.getRegister(prog, op, &a[1])
    			} else {
    				// Compare register with immediate and jump.
    				prog.AddRestSource(a[1])
    			}
    			break
    		}
    		if p.arch.Family == sys.ARM64 {
    			// Special 3-operand jumps.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 25.3K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64.s

    	FMADDS	F1, F2, F3, F4				// 43822018
    	FMSUBS	F1, F2, F3, F4				// 47822018
    	FNMSUBS	F1, F2, F3, F4				// 4b822018
    	FNMADDS	F1, F2, F3, F4				// 4f822018
    
    	// 11.8: Single-Precision Floating-Point Compare Instructions
    	FEQS	F0, F1, X7				// d3a300a0
    	FLTS	F0, F1, X7				// d39300a0
    	FLES	F0, F1, X7				// d38300a0
    
    	// 11.9: Single-Precision Floating-Point Classify Instruction
    	FCLASSS	F0, X5					// d31200e0
    
    Others
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const MAP_STACK ideal-int
    pkg syscall (freebsd-386-cgo), const MCL_CURRENT ideal-int
    pkg syscall (freebsd-386-cgo), const MCL_FUTURE ideal-int
    pkg syscall (freebsd-386-cgo), const MSG_COMPAT ideal-int
    pkg syscall (freebsd-386-cgo), const MSG_CTRUNC ideal-int
    pkg syscall (freebsd-386-cgo), const MSG_DONTROUTE ideal-int
    pkg syscall (freebsd-386-cgo), const MSG_DONTWAIT ideal-int
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top