Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 137 for 8128 (0.04 sec)

  1. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    func.func @DequantizeAndQuantize() -> tensor<2x2x!quant.uniform<u8:f32, 7.8431372549019615E-4:128>> {
      %cst = "tfl.pseudo_qconst"() {qtype = tensor<2x2x!quant.uniform<u8:f32, 7.8431372549019615E-4:128>>, value = dense<-1> : tensor<2x2xi8>} : () -> tensor<2x2x!quant.uniform<u8:f32, 7.8431372549019615E-4:128>>
      %0 = "tfl.dequantize"(%cst) : (tensor<2x2x!quant.uniform<u8:f32, 7.8431372549019615E-4:128>>) -> tensor<2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  2. src/crypto/internal/boring/sha.go

    	ctx C.GO_SHA512_CTX
    	out [512 / 8]byte
    }
    
    func (h *sha512Hash) noescapeCtx() *C.GO_SHA512_CTX {
    	return (*C.GO_SHA512_CTX)(noescape(unsafe.Pointer(&h.ctx)))
    }
    
    func (h *sha512Hash) Reset() {
    	C._goboringcrypto_SHA512_Init(h.noescapeCtx())
    }
    func (h *sha512Hash) Size() int             { return 512 / 8 }
    func (h *sha512Hash) BlockSize() int        { return 128 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/RejectedLanguageFeaturesParsingTest.kt

                        languageFeature = ValModifierNotSupported,
                        potentialElementSource = indexes: 22..40, line/column: 2/1..2/19, file: test,
                        erroneousSource = indexes: 22..29, line/column: 2/1..2/8, file: test
                    )
                    UnsupportedConstruct(
                        languageFeature = ExplicitVariableType,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/net/addrselect.go

    // RFC 6724 section 2.1.
    // Items are sorted by the size of their Prefix.Mask.Size,
    var rfc6724policyTable = policyTable{
    	{
    		// "::1/128"
    		Prefix:     netip.PrefixFrom(netip.AddrFrom16([16]byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}), 128),
    		Precedence: 50,
    		Label:      0,
    	},
    	{
    		// "::ffff:0:0/96"
    		// IPv4-compatible, etc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/Utf8Test.java

          assertThat(expected)
              .hasMessageThat()
              .isEqualTo("Unpaired surrogate at index " + invalidCodePointIndex);
        }
      }
    
      // 128 - [chars 0x0000 to 0x007f]
      private static final long ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS = 0x007f - 0x0000 + 1;
    
      // 128
      private static final long EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT =
          ONE_BYTE_ROUNDTRIPPABLE_CHARACTERS;
    
      // 1920 [chars 0x0080 to 0x07FF]
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server_bootstrap_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	keyRaw, err := x509.MarshalECPrivateKey(key)
    	if err != nil {
    		t.Fatal(err)
    	}
    	serialNumberLimit := new(big.Int).Lsh(big.NewInt(1), 128)
    	serialNumber, err := rand.Int(rand.Reader, serialNumberLimit)
    	if err != nil {
    		t.Fatal(err)
    	}
    	cert := &x509.Certificate{
    		SerialNumber: serialNumber,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/checks_test.go

    		if strings.HasSuffix(strings.ToLower(key), "_proxy") {
    			t.Cleanup(func() { os.Setenv(key, value) })
    			os.Unsetenv(key)
    		}
    	}
    
    	t.Setenv("HTTP_PROXY", "http://proxy.example.com:3128")
    	t.Setenv("HTTPS_PROXY", "https://proxy.example.com:3128")
    	t.Setenv("NO_PROXY", "example.com,10.0.0.0/8,2001:db8::/48")
    	// Check if we can reliably execute tests:
    	// ProxyFromEnvironment caches the *_proxy environment variables and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. src/net/ip_test.go

    	{"135.104.0.1/24", IPv4(135, 104, 0, 1), &IPNet{IP: IPv4(135, 104, 0, 0), Mask: IPv4Mask(255, 255, 255, 0)}, nil},
    	{"::1/128", ParseIP("::1"), &IPNet{IP: ParseIP("::1"), Mask: IPMask(ParseIP("ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff"))}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    )
    
    // initialize loads the 256-bit key into the two 128-bit secret values r and s.
    func initialize(key *[32]byte, m *macState) {
    	m.r[0] = binary.LittleEndian.Uint64(key[0:8]) & rMask0
    	m.r[1] = binary.LittleEndian.Uint64(key[8:16]) & rMask1
    	m.s[0] = binary.LittleEndian.Uint64(key[16:24])
    	m.s[1] = binary.LittleEndian.Uint64(key[24:32])
    }
    
    // uint128 holds a 128-bit number as two 64-bit limbs, for use with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EISCONN            = Errno(1123)
    	ENOTCONN           = Errno(1124)
    	ESHUTDOWN          = Errno(1125)
    	ETOOMANYREFS       = Errno(1126)
    	ETIMEDOUT          = Errno(1127)
    	ECONNREFUSED       = Errno(1128)
    	EHOSTDOWN          = Errno(1129)
    	EHOSTUNREACH       = Errno(1130)
    	EPROCLIM           = Errno(1131)
    	EUSERS             = Errno(1132)
    	EDQUOT             = Errno(1133)
    	ESTALE             = Errno(1134)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top