Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for u4 (0.05 sec)

  1. src/go/doc/testdata/b.2.golden

    CONSTANTS
    	// 
    	const (
    		C1	notExported	= iota
    		C2
    	
    		C4
    		C5
    	)
    
    	// 
    	const C notExported = 0
    
    	// 
    	const Pi = 3.14	// Pi
    
    
    VARIABLES
    	// 
    	var (
    		U1, U2, U4, U5	notExported
    	
    		U7	notExported	= 7
    	)
    
    	// 
    	var MaxInt int	// MaxInt
    
    	// 
    	var V notExported
    
    	// 
    	var V1, V2, V4, V5 notExported
    
    
    FUNCTIONS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/quantize.mlir

      %w = arith.constant dense<-1.0> : tensor<32x3x3x3xf32>
      %3 = "tfl.quantize"(%w) {qtype = tensor<32x3x3x3x!quant.uniform<u4<1:15>:f32, 0.1>>} : (tensor<32x3x3x3xf32>) -> tensor<32x3x3x3x!quant.uniform<u4<1:15>:f32, 0.1>>
      %4 = "tfl.dequantize"(%3) : (tensor<32x3x3x3x!quant.uniform<u4<1:15>:f32, 0.1>>) -> tensor<32x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:10:13 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        assertEvents(
            "R0.00, R1.38, R1.13, R0.88, R0.63, R0.50, R0.50, R0.50", // #1
            "U4.50", // #2
            "R0.00, R1.38, R1.13", // #3, after that the rate changes
            "R0.88", // #4, this is what the throttling would be with the old rate
            "R0.34, R0.28, R0.25, R0.25", // #5
            "U4.25", // #6
            "R0.00, R0.72, R0.66, R0.59, R0.53, R0.47, R0.41", // #7
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        assertEvents(
            "R0.00, R1.38, R1.13, R0.88, R0.63, R0.50, R0.50, R0.50", // #1
            "U4.50", // #2
            "R0.00, R1.38, R1.13", // #3, after that the rate changes
            "R0.88", // #4, this is what the throttling would be with the old rate
            "R0.34, R0.28, R0.25, R0.25", // #5
            "U4.25", // #6
            "R0.00, R0.72, R0.66, R0.59, R0.53, R0.47, R0.41", // #7
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  5. src/go/doc/testdata/b.go

    type notExported int
    
    const C notExported = 0
    
    const (
    	C1 notExported = iota
    	C2
    	c3
    	C4
    	C5
    )
    
    var V notExported
    var V1, V2, v3, V4, V5 notExported
    
    var (
    	U1, U2, u3, U4, U5 notExported
    	u6                 notExported
    	U7                 notExported = 7
    )
    
    func F1() notExported {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/math/big/arith_amd64.s

    	NEGQ CX
    	MOVQ R11, 0(R10)(SI*8)
    	MOVQ R12, 8(R10)(SI*8)
    	MOVQ R13, 16(R10)(SI*8)
    	MOVQ R14, 24(R10)(SI*8)
    
    	ADDQ $4, SI		// i += 4
    	SUBQ $4, DI		// n -= 4
    	JGE U4			// if n >= 0 goto U4
    
    V4:	ADDQ $4, DI		// n += 4
    	JLE E4			// if n <= 0 goto E4
    
    L4:	// n > 0
    	MOVQ 0(R8)(SI*8), R11
    	SUBQ CX, R11
    	MOVQ R11, 0(R10)(SI*8)
    	SBBQ CX, CX		// save CF
    	NEGQ CX
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/decls1.go

    	t21 int = a /* ERRORx `cannot use .* variable declaration` */
    )
    
    // Various more complex expressions
    var (
    	u1 = x /* ERROR "not an interface" */ .(int)
    	u2 = iface.([]int)
    	u3 = iface.(a /* ERROR "not a type" */ )
    	u4, ok = iface.(int)
    	u5, ok2, ok3 = iface /* ERROR "assignment mismatch" */ .(int)
    )
    
    // Constant expression initializations
    var (
    	v1 = 1 /* ERROR "mismatched types untyped int and untyped string" */ + "foo"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. cmd/endpoint_test.go

    package cmd
    
    import (
    	"fmt"
    	"net"
    	"net/url"
    	"path/filepath"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    func TestNewEndpoint(t *testing.T) {
    	u2, _ := url.Parse("https://example.org/path")
    	u4, _ := url.Parse("http://192.168.253.200/path")
    	rootSlashFoo, _ := filepath.Abs("/foo")
    	testCases := []struct {
    		arg              string
    		expectedEndpoint Endpoint
    		expectedType     EndpointType
    		expectedErr      error
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-KeySharePreference

    000003c0  c7 f2 4c 99 5d 7c 56 cd  29 5c 30 91 93 6f a2 00  |..L.]|V.)\0..o..|
    000003d0  c4 97 17 03 03 00 35 81  b3 9e 92 c5 dc 08 b3 f3  |......5.........|
    000003e0  70 56 52 40 16 d4 75 34  1e e8 b7 ce 5e 5a 7e 47  |pVR@..u4....^Z~G|
    000003f0  ec d0 75 68 24 06 a6 1b  87 73 6c b0 ff e4 3c 6d  |..uh$....sl...<m|
    00000400  80 7e 02 d3 c1 83 78 e3  82 fe 22 d2 17 03 03 00  |.~....x...".....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:19:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK-LABEL: fakeQuantArgsTrue
      // CHECK: "tfl.quantize"(%arg0) <{qtype = tensor<8x8x8x8x!quant.uniform<u4<1:15>:f32, 0.021428571747882024:6>>}> : (tensor<8x8x8x8xf32>) -> tensor<8x8x8x8x!quant.uniform<u4<1:15>:f32, 0.021428571747882024:6>>
      // CHECK: %1 = "tfl.dequantize"(%0) : (tensor<8x8x8x8x!quant.uniform<u4<1:15>:f32, 0.021428571747882024:6>>) -> tensor<8x8x8x8xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
Back to top