Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for makemap (0.32 sec)

  1. src/reflect/value.go

    		panic("reflect.MakeChan: unidirectional channel type")
    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    func MakeMap(typ Type) Value {
    	return MakeMapWithSize(typ, 0)
    }
    
    // MakeMapWithSize creates a new map with the specified type
    // and initial space for approximately n elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    func TestMap(t *testing.T) {
    	m := map[string]int{"a": 1, "b": 2}
    	mv := ValueOf(m)
    	if n := mv.Len(); n != len(m) {
    		t.Errorf("Len = %d, want %d", n, len(m))
    	}
    	keys := mv.MapKeys()
    	newmap := MakeMap(mv.Type())
    	for k, v := range m {
    		// Check that returned Keys match keys in range.
    		// These aren't required to be in the same order.
    		seen := false
    		for _, kv := range keys {
    			if kv.String() == k {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // madrid : 2014-05-01 Comunidad de Madrid
    madrid
    
    // maif : 2014-10-02 Mutuelle Assurance Instituteur France (MAIF)
    maif
    
    // maison : 2013-12-05 Binky Moon, LLC
    maison
    
    // makeup : 2015-01-15 XYZ.COM LLC
    makeup
    
    // man : 2014-12-04 MAN SE
    man
    
    // management : 2013-11-07 Binky Moon, LLC
    management
    
    // mango : 2013-10-24 PUNTO FA S.L.
    mango
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. src/encoding/json/testdata/code.json.gz

    51,"touches":2,"min_t":1236205616,"max_t":1237229192,"mean_t":1236717404},{"name":"animated-svg-as-image-expected.checksum","kids":[],"cl_weight":0.00611677379115851,"touches":2,"min_t":1236205616,"max_t":1237229192,"mean_t":1236717404},{"name":"imagemap-case-expected.png","kids":[],"cl_weight":0.0015018965813701369,"touches":3,"min_t":1228525763,"max_t":1236205616,"mean_t":1231401975},{"name":"animated-gif-with-offsets-expected.checksum","kids":[],"cl_weight":0.0006270059426999707,"touches":2,"...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
Back to top