Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for val11 (0.04 sec)

  1. src/mime/mediatype_test.go

    		{` FORM-DATA ; name="foo"`, "form-data", nameFoo},
    
    		{`form-data; key=value;  blah="value";name="foo" `,
    			"form-data",
    			m("key", "value", "blah", "value", "name", "foo")},
    
    		{`foo; key=val1; key=the-key-appears-again-which-is-bogus`,
    			"", m()},
    
    		// From RFC 2231:
    		{`application/x-stuff; title*=us-ascii'en-us'This%20is%20%2A%2A%2Afun%2A%2A%2A`,
    			"application/x-stuff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 26 17:58:37 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/op.go

    // The low 32 bits hold a pointer offset.
    type ValAndOff int64
    
    func (x ValAndOff) Val() int32   { return int32(int64(x) >> 32) }
    func (x ValAndOff) Val64() int64 { return int64(x) >> 32 }
    func (x ValAndOff) Val16() int16 { return int16(int64(x) >> 32) }
    func (x ValAndOff) Val8() int8   { return int8(int64(x) >> 32) }
    
    func (x ValAndOff) Off64() int64 { return int64(int32(x)) }
    func (x ValAndOff) Off() int32   { return int32(x) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	sysInstFields{0, 8, 7, 1}:  {sys_TLBI, "VAE1", true},
    	sysInstFields{0, 8, 7, 2}:  {sys_TLBI, "ASIDE1", true},
    	sysInstFields{0, 8, 7, 3}:  {sys_TLBI, "VAAE1", true},
    	sysInstFields{0, 8, 7, 5}:  {sys_TLBI, "VALE1", true},
    	sysInstFields{0, 8, 7, 7}:  {sys_TLBI, "VAALE1", true},
    	sysInstFields{4, 8, 0, 1}:  {sys_TLBI, "IPAS2E1IS", true},
    	sysInstFields{4, 8, 0, 5}:  {sys_TLBI, "IPAS2LE1IS", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. src/encoding/gob/encoder_test.go

    type Bug1Elem struct {
    	Name string
    	Id   int
    }
    
    type Bug1StructMap map[string]Bug1Elem
    
    func TestMapBug1(t *testing.T) {
    	in := make(Bug1StructMap)
    	in["val1"] = Bug1Elem{"elem1", 1}
    	in["val2"] = Bug1Elem{"elem2", 2}
    
    	b := new(bytes.Buffer)
    	enc := NewEncoder(b)
    	err := enc.Encode(in)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    	dec := NewDecoder(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/net/http/cookiejar/jar_test.go

    		}
    		setCookies[i] = cookies[0]
    	}
    	jar.setCookies(mustParseURL(test.fromURL), setCookies, now)
    	now = now.Add(1001 * time.Millisecond)
    
    	// Serialize non-expired entries in the form "name1=val1 name2=val2".
    	var cs []string
    	for _, submap := range jar.entries {
    		for _, cookie := range submap {
    			if !cookie.Expires.After(now) {
    				continue
    			}
    
    			v := cookie.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top