Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 1486 (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// chained comprehensions
    				"self.mapOfMap.map(k, k).map(k, k).size() == 1":      286,
    				"self.mapOfListMap.map(k, k).map(k, k).size() == 1":  286,
    				"self.mapOfList.map(k, k).map(k, k).size() == 1":     286,
    				"self.listOfMap.map(e, e).map(e, e).size() == 1":     286,
    				"self.listOfListMap.map(e, e).map(e, e).size() == 1": 286,
    
    				// nested comprehensions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

    // %12 = stablehlo.convolution(%10, %11)  // q2 * z1
    // %13 = stablehlo.subtract %7, %12  // q1 * q2 - q2 * z1
    // %14 = stablehlo.constant  // Merged scale s1 * s2, precalculated.
    // %15 = stablehlo.broadcast_in_dim %14
    // %16 = stablehlo.multiply %13 %15  // r3 = s1 s2 (q1 q2 - q2 z1)
    //
    // The following quant -> dequant pattern is a no-op, but is required to
    // retrieve the quantization parameters for the output tensor.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  3. src/fmt/fmt_test.go

    	{"%d", renamedInt8(-9), "-9"},
    	{"%v", renamedInt16(10), "10"},
    	{"%v", renamedInt32(-11), "-11"},
    	{"%X", renamedInt64(255), "FF"},
    	{"%v", renamedUint(13), "13"},
    	{"%o", renamedUint8(14), "16"},
    	{"%X", renamedUint16(15), "F"},
    	{"%d", renamedUint32(16), "16"},
    	{"%X", renamedUint64(17), "11"},
    	{"%o", renamedUintptr(18), "22"},
    	{"%x", renamedString("thing"), "7468696e67"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	if err != nil {
    		return nil, err
    	}
    	rc, ok := body.(io.ReadCloser)
    	if !ok && body != nil {
    		rc = io.NopCloser(body)
    	}
    	// The host's colon:port should be normalized. See Issue 14836.
    	u.Host = removeEmptyPort(u.Host)
    	req := &Request{
    		ctx:        ctx,
    		Method:     method,
    		URL:        u,
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		Header:     make(Header),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    		// pla rX, x@tprel
    
    		const OP_MASK_PFX = 0xFFFFFFFF        // Discard prefix word
    		const OP_MASK = (0x3F << 26) | 0xFFFF // Preserve RT, RA
    		const OP_PFX = 1<<26 | 2<<24
    		const OP_PLA = 14 << 26
    		mask := packInstPair(target, OP_MASK_PFX, OP_MASK)
    		pla_op := packInstPair(target, OP_PFX, OP_PLA)
    		val &^= mask
    		val |= pla_op
    		fallthrough
    
    	case objabi.R_POWER_TLS_LE_TPREL34:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
Back to top