Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 470 for spacer (0.34 sec)

  1. test/fixedbugs/issue49814.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // "must be integer" error is for 32-bit architectures
    type V [1 << 50]byte // ERROR "larger than address space|invalid array length"
    
    var X [1 << 50]byte // ERROR "larger than address space|invalid array length"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 27 18:59:51 UTC 2023
    - 418 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cgo_path_space_quote.txt

    # This test checks that the CC environment variable may contain quotes and
    # spaces. Arguments are normally split on spaces, tabs, newlines. If an
    # argument contains these characters, the entire argument may be quoted
    # with single or double quotes. This is the same as -gcflags and similar
    # options.
    
    [short] skip
    [!exec:clang] [!exec:gcc] skip
    [!cgo] skip
    
    env GOENV=$WORK/go.env
    mkdir 'program files'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 16 20:23:26 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. src/runtime/cgo/abi_loong64.h

    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R22_TO_R31(offset) saves R22 ~ R31 to the stack space
    // of ((offset)+0*8)(R3) ~ ((offset)+9*8)(R3).
    //
    // SAVE_F24_TO_F31(offset) saves F24 ~ F31 to the stack space
    // of ((offset)+0*8)(R3) ~ ((offset)+7*8)(R3).
    //
    // Note: g is R22
    
    #define SAVE_R22_TO_R31(offset)	\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 02:34:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/mem_bsd.go

    }
    
    // Indicates not to reserve swap space for the mapping.
    const _sunosMAP_NORESERVE = 0x40
    
    func sysReserveOS(v unsafe.Pointer, n uintptr) unsafe.Pointer {
    	flags := int32(_MAP_ANON | _MAP_PRIVATE)
    	if GOOS == "solaris" || GOOS == "illumos" {
    		// Be explicit that we don't want to reserve swap space
    		// for PROT_NONE anonymous mappings. This avoids an issue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/shell_test.go

    	f.Add([]byte(`${FOO}`))
    	f.Add([]byte(`\${FOO}`))
    	f.Add([]byte(`$(/bin/false)`))
    	f.Add([]byte(`\$(/bin/false)`))
    	f.Add([]byte(`$((0))`))
    	f.Add([]byte(`\$((0))`))
    	f.Add([]byte(`unescaped space`))
    	f.Add([]byte(`escaped\ space`))
    	f.Add([]byte(`"unterminated quote`))
    	f.Add([]byte(`'unterminated quote`))
    	f.Add([]byte(`unterminated escape\`))
    	f.Add([]byte(`"quote with unterminated escape\`))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 15:30:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/internal/abi/abi.go

    import (
    	"internal/goarch"
    	"unsafe"
    )
    
    // RegArgs is a struct that has space for each argument
    // and return value register on the current architecture.
    //
    // Assembly code knows the layout of the first two fields
    // of RegArgs.
    //
    // RegArgs also contains additional space to hold pointers
    // when it may not be safe to keep them only in the integer
    // register space otherwise.
    type RegArgs struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/encoding/json/example_test.go

    func ExampleRawMessage_unmarshal() {
    	type Color struct {
    		Space string
    		Point json.RawMessage // delay parsing until we know the color space
    	}
    	type RGB struct {
    		R uint8
    		G uint8
    		B uint8
    	}
    	type YCbCr struct {
    		Y  uint8
    		Cb int8
    		Cr int8
    	}
    
    	var j = []byte(`[
    	{"Space": "YCbCr", "Point": {"Y": 255, "Cb": 0, "Cr": -10}},
    	{"Space": "RGB",   "Point": {"R": 98, "G": 218, "B": 255}}
    ]`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6.1K bytes
    - Viewed (0)
  8. test/unsafebuiltins.go

    		var tooBig uint64 = math.MaxUint64
    		mustPanic(func() { _ = unsafe.Slice(new(byte), tooBig) })
    
    		// size overflows address space
    		mustPanic(func() { _ = unsafe.Slice(new(uint64), maxUintptr/8) })
    		mustPanic(func() { _ = unsafe.Slice(new(uint64), maxUintptr/8+1) })
    
    		// sliced memory overflows address space
    		last := (*byte)(unsafe.Pointer(^uintptr(0)))
    		_ = unsafe.Slice(last, 1)
    		mustPanic(func() { _ = unsafe.Slice(last, 2) })
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 31 17:15:15 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. src/regexp/syntax/perl_groups.go

    	`[:lower:]`:   {+1, code11},
    	`[:^lower:]`:  {-1, code11},
    	`[:print:]`:   {+1, code12},
    	`[:^print:]`:  {-1, code12},
    	`[:punct:]`:   {+1, code13},
    	`[:^punct:]`:  {-1, code13},
    	`[:space:]`:   {+1, code14},
    	`[:^space:]`:  {-1, code14},
    	`[:upper:]`:   {+1, code15},
    	`[:^upper:]`:  {-1, code15},
    	`[:word:]`:    {+1, code16},
    	`[:^word:]`:   {-1, code16},
    	`[:xdigit:]`:  {+1, code17},
    	`[:^xdigit:]`: {-1, code17},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/format_test.go

    			expr:        `format.datetime().validate("2021-01-01T00:00:00Z")`,
    			expectValue: types.OptionalNone,
    		},
    		{
    			name:        "dns1123Label",
    			expr:        `format.dns1123Label().validate("contains a space")`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top