Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 21$ (0.04 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	15:  {From: 0x62f, To: 0x14},
    	16:  {From: 0x630, To: 0x1eb1},
    	17:  {From: 0x651, To: 0x431},
    	18:  {From: 0x662, To: 0x431},
    	19:  {From: 0x6ed, To: 0x3a},
    	20:  {From: 0x6f8, To: 0x1d7},
    	21:  {From: 0x709, To: 0x3625},
    	22:  {From: 0x73e, To: 0x21a1},
    	23:  {From: 0x7b3, To: 0x56},
    	24:  {From: 0x7b9, To: 0x299b},
    	25:  {From: 0x7c5, To: 0x58},
    	26:  {From: 0x7e6, To: 0x145},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        assertFailsWith<IOException> {
          client.newCall(Request.Builder().url(server.url("/0")).build()).execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("Too many follow-up requests: 21")
        }
      }
    
      /**
       * We had a bug where we were passing a null route to the authenticator.
       * https://github.com/square/okhttp/issues/3809
       */
      @Test
      fun authenticateWithNoConnection() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

          TFL_TCresVTEtIsSameAsOp<0, 0>>,
        Pure,
        SameOperandsAndResultsScale,
        TFL_OperandHasRankAtMost<0, 5>,
        TFL_OperandHasRankAtMost<1, 1>,
        TFL_OperandHasRankAtMost<2, 1>]> {
      let summary = "Return a slice from 'input'.";
    
      let description = [{
    The output tensor is a tensor with dimensions described by 'size'
    whose values are extracted from 'input' starting at the offsets in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    // points at opBytes{0x83, 00, 0x05,0x81, 00, 0x01, 0x03}) are:
    //
    //	Yi8, Yml -> Zibo_m, z (0x83, 00)
    //	Yi32, Yax -> Zil_, z+2 (0x05)
    //	Yi32, Yml -> Zilo_m, z+2+1 (0x81, 0x00)
    //	Yrl, Yml -> Zr_m, z+2+1+2 (0x01)
    //	Yml, Yrl -> Zm_r, z+2+1+2+1 (0x03)
    //
    // The Pconstant in the optab line controls the prefix bytes to emit.  That's
    // relatively straightforward as this program goes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        }
    
        for (auto i = 0; i < padding_pairs.size(); ++i) {
          padding_pairs[i] = {padding.getValues<IntegerAttr>()[i * 2].getInt(),
                              padding.getValues<IntegerAttr>()[i * 2 + 1].getInt()};
        }
    
        auto window = InferWindowFromDimensions(
            window_dimensions_vec, window_strides_vec, padding_pairs,
            base_dilations_vec, window_dilations_vec);
        if (!window) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/reflect/all_test.go

    	{V(uint64(15)), V(int8(15))},
    	{V(int8(16)), V(int(16))},
    	{V(int(17)), V(int8(17))},
    	{V(int8(18)), V(uint(18))},
    	{V(uint(19)), V(int8(19))},
    	{V(int8(20)), V(uintptr(20))},
    	{V(uintptr(21)), V(int8(21))},
    	{V(int8(22)), V(float32(22))},
    	{V(float32(23)), V(int8(23))},
    	{V(int8(24)), V(float64(24))},
    	{V(float64(25)), V(int8(25))},
    	{V(uint8(26)), V(uint8(26))},
    	{V(uint8(27)), V(int16(27))},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // Proto debug string:
    //   type : TUPLE
    //   tuple_shardings: {
    //     type: OTHER
    //     tile_assignment_dimensions: [ 2, 1 ]
    //     tile_assignment_devices   : [ 0, 1 ]
    //   }
    //   tuple_shardings: {
    //     type: OTHER
    //     tile_assignment_dimensions: [ 2, 1 ]
    //     tile_assignment_devices   : [ 0, 1 ]
    //   }
    // Serialized string:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

          )
        }
        assertFailsWith<ProtocolException> {
          getResponse(newRequest("/0"))
        }.also { expected ->
          assertThat(expected.message).isEqualTo(
            "Too many follow-up requests: 21",
          )
        }
      }
    
      @Test
      fun httpsWithCustomTrustManager() {
        val hostnameVerifier = RecordingHostnameVerifier()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  9. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/HttpUrl;->hashCode()I
    HSPLokhttp3/HttpUrl;->redact()Ljava/lang/String;
    HSPLokhttp3/HttpUrl;->toString()Ljava/lang/String;
    HSPLokhttp3/HttpUrl;->uri()Ljava/net/URI;
    HSPLokhttp3/JvmCallExtensionsKt$executeAsync$2$1;-><init>(Lokhttp3/Call;)V
    HSPLokhttp3/JvmCallExtensionsKt$executeAsync$2$2$onResponse$1;-><init>(Lokhttp3/Call;)V
    HSPLokhttp3/JvmCallExtensionsKt$executeAsync$2$2;-><init>(Lkotlinx/coroutines/CancellableContinuation;)V
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (1)
  10. samples/addons/grafana.yaml

    ons & Alerts","type":"dashboard"}]},"editable":true,"fiscalYearStartMonth":0,"graphTooltip":0,"links":[],"liveNow":false,"panels":[{"collapsed":false,"datasource":{"type":"prometheus","uid":"${datasource}"},"gridPos":{"h":1,"w":24,"x":0,"y":0},"id":21,"panels":[],"targets":[{"datasource":{"type":"prometheus","uid":"${datasource}"},"refId":"A"}],"title":"Performance Dashboard Notes","type":"row"},{"gridPos":{"h":6,"w":24,"x":0,"y":1},"id":19,"links":[],"options":{"code":{"language":"plaintext","s...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top