Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for RAW (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            SimpleProblemCollector result = validateRaw("raw-model/self-referencing-classifier.xml");
    
            assertViolations(result, 0, 0, 0);
        }
    
        @Test
        void testCiFriendlySha1() throws Exception {
            SimpleProblemCollector result = validateRaw("raw-model/ok-ci-friendly-sha1.xml");
            assertViolations(result, 0, 0, 0);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 13:13:07 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. pilot/pkg/xds/sds_test.go

    	}
    
    	secrets, _, _ := gen.Generate(s.SetupProxy(istiosystem), &model.WatchedResource{ResourceNames: []string{"kubernetes://generic"}}, fullPush)
    	raw := xdstest.ExtractTLSSecrets(t, xdsserver.ResourcesToAny(secrets))
    	if len(raw) != 1 {
    		t.Fatalf("failed to get expected secrets for authorized proxy: %v", raw)
    	}
    
    	// We should not get secret returned, even though we are asking for the same one
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. src/syscall/syscall_linux.go

    	}
    	sa.raw.Family = AF_PACKET
    	sa.raw.Protocol = sa.Protocol
    	sa.raw.Ifindex = int32(sa.Ifindex)
    	sa.raw.Hatype = sa.Hatype
    	sa.raw.Pkttype = sa.Pkttype
    	sa.raw.Halen = sa.Halen
    	sa.raw.Addr = sa.Addr
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrLinklayer, nil
    }
    
    type SockaddrNetlink struct {
    	Family uint16
    	Pad    uint16
    	Pid    uint32
    	Groups uint32
    	raw    RawSockaddrNetlink
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. internal/hash/checksum.go

    func NewChecksumFromData(t ChecksumType, data []byte) *Checksum {
    	if !t.IsSet() {
    		return nil
    	}
    	h := t.Hasher()
    	h.Write(data)
    	raw := h.Sum(nil)
    	c := Checksum{Type: t, Encoded: base64.StdEncoding.EncodeToString(raw), Raw: raw}
    	if !c.Valid() {
    		return nil
    	}
    	return &c
    }
    
    // ReadCheckSums will read checksums from b and return them.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 08 16:18:34 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/syscall/syscall_aix.go

    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_INET6
    	p := (*[2]byte)(unsafe.Pointer(&sa.raw.Port))
    	p[0] = byte(sa.Port >> 8)
    	p[1] = byte(sa.Port)
    	sa.raw.Scope_id = sa.ZoneId
    	sa.raw.Addr = sa.Addr
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrInet6, nil
    }
    
    func (sa *RawSockaddrUnix) setLen(n int) {
    	sa.Len = uint8(3 + n) // 2 for Family, Len; 1 for NUL.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. src/crypto/x509/oid_test.go

    }
    
    func TestOID(t *testing.T) {
    	for _, v := range oidTests {
    		oid, ok := newOIDFromDER(v.raw)
    		if ok != v.valid {
    			t.Errorf("newOIDFromDER(%v) = (%v, %v); want = (OID, %v)", v.raw, oid, ok, v.valid)
    			continue
    		}
    
    		if !ok {
    			continue
    		}
    
    		if str := oid.String(); str != v.str {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 19:10:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    									"quantity": {
    										Type: "integer",
    									},
    									"size": {
    										Type: "string",
    										Enum: []apiextensionsv1.JSON{
    											{Raw: []byte(`"S"`)},
    											{Raw: []byte(`"M"`)},
    											{Raw: []byte(`"L"`)},
    											{Raw: []byte(`"XL"`)},
    										},
    									},
    									"branded": {
    										Type: "boolean",
    									},
    								},
    							},
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
Back to top