Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Bitmap (0.2 sec)

  1. src/reflect/all_test.go

    		// may be larger than we expect.
    		return
    	}
    	_, _, line, _ := runtime.Caller(1)
    	t.Errorf("line %d: heapBits incorrect for %v\nhave %v\nwant %v", line, typ, heapBits, bits)
    }
    
    func verifyGCBitsSlice(t *testing.T, typ Type, cap int, bits []byte) {
    	// Creating a slice causes the runtime to repeat a bitmap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  2. src/reflect/value.go

    // in the same regArgs structure.
    //
    // regArgs must also be prepared with an appropriate ReturnIsPtr bitmap
    // indicating which registers will contain pointer-valued return values. The
    // purpose of this bitmap is to keep pointers visible to the GC between
    // returning from reflectcall and actually using them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				})),
    			}),
    			valid: []string{
    				"has(self.listMap[0].v)",
    				"self.listMap.all(m, m.k.startsWith('a'))",
    				"self.listMap.all(m, !has(m.v2) || m.v2 == 'z')",
    				"self.listMap.exists(m, m.k.endsWith('1'))",
    				"self.listMap.exists_one(m, m.k == 'a3')",
    				"!self.listMap.all(m, m.k.endsWith('1'))",
    				"!self.listMap.exists(m, m.v == 'x')",
    				"!self.listMap.exists_one(m, m.k.startsWith('a'))",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top