Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for RAW (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/scalehandler_test.go

    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:another-field":{}}}`)},
    				},
    				{
    					Manager:    "manager-2",
    					Operation:  metav1.ManagedFieldsOperationApply,
    					APIVersion: "apps/v1",
    					FieldsType: "FieldsV1",
    					FieldsV1:   &metav1.FieldsV1{Raw: []byte(`{"f:spec":{"f:replicas":{}}}`)},
    					Time:       &managedFieldTime,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/readme-templates/multi-common-body.adoc.template

    However, the general concepts apply for any software you are building with Gradle.
    You can follow the guide step-by-step to create a new project from scratch or download the complete sample project using the links above.
    
    == What you’ll build
    
    You'll build a ${language.raw} ${componentType.raw} that consists of an _application_ and multiple _library_ projects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 11:21:22 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    	}
    
    	for i := 0; i < len; i++ {
    		raw := items.Index(i)
    		if takeAddr {
    			if allocNew {
    				// shallow copy to avoid retaining a reference to the original list item
    				itemCopy := reflect.New(raw.Type())
    				// assign to itemCopy and type-assert
    				itemCopy.Elem().Set(raw)
    				// reflect.New will guarantee that itemCopy must be a pointer.
    				raw = itemCopy
    			} else {
    				raw = raw.Addr()
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. src/net/http/cookie_test.go

    	},
    	{
    		Header{"Set-Cookie": {`special-6=",z"`}},
    		[]*Cookie{{Name: "special-6", Value: ",z", Quoted: true, Raw: `special-6=",z"`}},
    	},
    	{
    		Header{"Set-Cookie": {`special-7=a,`}},
    		[]*Cookie{{Name: "special-7", Value: "a,", Raw: `special-7=a,`}},
    	},
    	{
    		Header{"Set-Cookie": {`special-8=","`}},
    		[]*Cookie{{Name: "special-8", Value: ",", Quoted: true, Raw: `special-8=","`}},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/syscall/syscall_bsd.go

    	sa.raw.Index = sa.Index
    	sa.raw.Type = sa.Type
    	sa.raw.Nlen = sa.Nlen
    	sa.raw.Alen = sa.Alen
    	sa.raw.Slen = sa.Slen
    	sa.raw.Data = sa.Data
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrDatalink, nil
    }
    
    func anyToSockaddr(rsa *RawSockaddrAny) (Sockaddr, error) {
    	switch rsa.Addr.Family {
    	case AF_LINK:
    		pp := (*RawSockaddrDatalink)(unsafe.Pointer(rsa))
    		sa := new(SockaddrDatalink)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    	sa.raw.Index = sa.Index
    	sa.raw.Type = sa.Type
    	sa.raw.Nlen = sa.Nlen
    	sa.raw.Alen = sa.Alen
    	sa.raw.Slen = sa.Slen
    	sa.raw.Data = sa.Data
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrDatalink, nil
    }
    
    func anyToSockaddr(fd int, rsa *RawSockaddrAny) (Sockaddr, error) {
    	switch rsa.Addr.Family {
    	case AF_LINK:
    		pp := (*RawSockaddrDatalink)(unsafe.Pointer(rsa))
    		sa := new(SockaddrDatalink)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn_test.go

    			requested: []string{"v1.raw", "v1.base64"},
    			error:     true,
    		}, {
    			supported: map[string]bool{"": binary, "raw": binary, "base64": base64},
    			requested: []string{"v1.raw", "raw"},
    			expected:  "raw",
    		},
    		{
    			supported: map[string]bool{"": binary, "v1.raw": binary, "v1.base64": base64, "v2.raw": binary, "v2.base64": base64},
    			requested: []string{"v1.raw"},
    			expected:  "v1.raw",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/generated.pb.go

    }
    
    func (m *RawExtension) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.Raw != nil {
    		i -= len(m.Raw)
    		copy(dAtA[i:], m.Raw)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(m.Raw)))
    		i--
    		dAtA[i] = 0xa
    	}
    	return len(dAtA) - i, nil
    }
    
    func (m *TypeMeta) Marshal() (dAtA []byte, err error) {
    	size := m.Size()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  9. src/internal/trace/internal/oldtrace/parser.go

    	}
    	switch raw.typ {
    	case EvBatch:
    		p.lastGs[p.lastP] = p.lastG
    		if raw.args[0] != math.MaxUint64 && raw.args[0] > math.MaxInt32 {
    			return fmt.Errorf("processor ID %d is larger than maximum of %d", raw.args[0], uint64(math.MaxInt32))
    		}
    		if raw.args[0] == math.MaxUint64 {
    			p.lastP = -1
    		} else {
    			p.lastP = int32(raw.args[0])
    		}
    		p.lastG = p.lastGs[p.lastP]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. src/net/http/cookie.go

    // value was enclosed in double quotes.
    func parseCookieValue(raw string, allowDoubleQuote bool) (value string, quoted, ok bool) {
    	// Strip the quotes, if present.
    	if allowDoubleQuote && len(raw) > 1 && raw[0] == '"' && raw[len(raw)-1] == '"' {
    		raw = raw[1 : len(raw)-1]
    		quoted = true
    	}
    	for i := 0; i < len(raw); i++ {
    		if !validCookieValueByte(raw[i]) {
    			return "", quoted, false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top