Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for byNameValue (0.21 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/tables.go

    	byName map[string]uint64
    
    	// byNameValue maps a HeaderField name/value pair to the unique id of the newest
    	// entry with the same name and value. See above for a definition of "unique id".
    	byNameValue map[pairNameValue]uint64
    }
    
    type pairNameValue struct {
    	name, value string
    }
    
    func (t *headerFieldTable) init() {
    	t.byName = make(map[string]uint64)
    	t.byNameValue = make(map[pairNameValue]uint64)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		"transfer-encoding":           57,
    		"user-agent":                  58,
    		"vary":                        59,
    		"via":                         60,
    		"www-authenticate":            61,
    	},
    	byNameValue: map[pairNameValue]uint64{
    		{name: ":authority", value: ""}:                   1,
    		{name: ":method", value: "GET"}:                   2,
    		{name: ":method", value: "POST"}:                  3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top