Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,375 for space1 (0.14 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/rsc.io/markdown/parse.go

    	t := *s
    	for n := 0; n < max; n++ {
    		if t.spaces > 0 {
    			t.spaces--
    			continue
    		}
    		if t.i >= len(t.text) && eolOK {
    			continue
    		}
    		if t.i < len(t.text) {
    			switch t.text[t.i] {
    			case '\t':
    				t.spaces = 4 - (t.i-t.tab)&3 - 1
    				t.i++
    				t.tab = t.i
    				continue
    			case ' ':
    				t.i++
    				continue
    			}
    		}
    		if n >= min {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/config/validation/agent/extensionprovider_test.go

    				Port:    9411,
    			},
    			valid: true,
    		},
    		{
    			name: "zipkin service with invalid namespace",
    			config: &meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider{
    				Service: "name/space/zipkin.istio-system",
    				Port:    9411,
    			},
    			valid: false,
    		},
    		{
    			name: "zipkin service with port",
    			config: &meshconfig.MeshConfig_ExtensionProvider_ZipkinTracingProvider{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/html/template/transition.go

    	if bytes.ContainsAny(s, "#?") {
    		c.urlPart = urlPartQueryOrFrag
    	} else if len(s) != eatWhiteSpace(s, 0) && c.urlPart == urlPartNone {
    		// HTML5 uses "Valid URL potentially surrounded by spaces" for
    		// attrs: https://www.w3.org/TR/html5/index.html#attributes-1
    		c.urlPart = urlPartPreQuery
    	}
    	return c, len(s)
    }
    
    // tJS is the context transition function for the JS state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. 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)
  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. src/reflect/abi.go

    	// the call and return paths of a Go function.
    	call, ret abiSeq
    
    	// These fields describe the stack space allocated
    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    	// is the offset at which return values begin, and
    	// spill is the size in bytes of additional space reserved
    	// to spill argument registers into in case of preemption in
    	// reflectcall's stack frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top