Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 712 for 0010 (0.17 sec)

  1. docs/features/events.md

    0.675 responseHeadersEnd
    0.676 responseBodyStart
    0.679 responseBodyEnd
    0.679 connectionReleased
    0.680 callEnd
    REQUEST 2 (pooled connection)
    0.000 callStart
    0.001 connectionAcquired
    0.001 requestHeadersStart
    0.001 requestHeadersEnd
    0.002 responseHeadersStart
    0.082 responseHeadersEnd
    0.082 responseBodyStart
    0.082 responseBodyEnd
    0.083 connectionReleased
    0.083 callEnd
    ```
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

          new absl::flat_hash_map<StringPiece, StringPiece, StringPieceHasher>{
              {"int", "0"},
              {"string", "\"\""},
              {"list(int)", "{ 0, 1 }"},
              {"list(float)", "{0.0, 1.0}"},
              {"type", "DT_UINT8"},
              {"shape",
               "mediapipe::ParseTextProtoOrDie<TensorShapeProto>("
               "\"dim:[] unknown_rank:true\")"}};
    
      if (attr.has_minimum()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/math/big/floatconv_test.go

    		{"0", defaultRound, 64, 'p', 0, "0"},
    		{"-0", defaultRound, 64, 'p', 0, "-0"},
    		{"1024.0", defaultRound, 64, 'p', 0, "0x.8p+11"},
    		{"-1024.0", defaultRound, 64, 'p', 0, "-0x.8p+11"},
    
    		{"0", defaultRound, 64, 'x', -1, "0x0p+00"},
    		{"0", defaultRound, 64, 'x', 0, "0x0p+00"},
    		{"0", defaultRound, 64, 'x', 1, "0x0.0p+00"},
    		{"0", defaultRound, 64, 'x', 5, "0x0.00000p+00"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        func.return %0 : tensor<4x128xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

            '+'             | _
            '1+'            | _
            '1.2+'          | _
            '1.2.3+'        | _
            '1.2.3.+'       | _
            'abc+'          | _
            '(1.0.0,2.0.0]' | _
            '(1.0.0,2.0.0)' | _
        }
    
        @ToBeFixedForConfigurationCache(because = "Task.getProject() during execution")
        def "maps dependency on latest.integration to master branch"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      ) -> tensor<5x9x!quant.uniform<i8:f32, 2.000000e+00:-1>> {
      %0 = stablehlo.pad %arg0, %arg1, low = [0, 1], high = [2, 1], interior = [1, 2] : (
        tensor<2x3x!quant.uniform<i8:f32, 2.000000e+00:-1>>,
        tensor<!quant.uniform<i8:f32, 2.000000e+00:-1>>
      ) -> tensor<5x9x!quant.uniform<i8:f32, 2.000000e+00:-1>>
      return %0 : tensor<5x9x!quant.uniform<i8:f32, 2.000000e+00:-1>>
    }
    // CHECK-LABEL: pad_with_interior_padding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

      }
    
      public void testOf1() {
        assertThat(ImmutableDoubleArray.of(0).asList()).containsExactly(0.0);
      }
    
      public void testOf2() {
        assertThat(ImmutableDoubleArray.of(0, 1).asList()).containsExactly(0.0, 1.0).inOrder();
      }
    
      public void testOf3() {
        assertThat(ImmutableDoubleArray.of(0, 1, 3).asList()).containsExactly(0.0, 1.0, 3.0).inOrder();
      }
    
      public void testOf4() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 06 15:23:21 UTC 2023
    - 20K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tests/tfcompile_test.cc

      Eigen::ThreadPoolDevice device(&tp, tp.NumThreads());
    
      SplitsComp fn;
    
      fn.set_thread_pool(&device);
      // x = [[1, 2], [3, 4]]
      fn.arg0(0, 0) = 1;
      fn.arg0(0, 1) = 2;
      fn.arg0(1, 0) = 3;
      fn.arg0(1, 1) = 4;
    
      // y = [[10, 20], [30, 40]]
      fn.arg1(0, 0) = 10;
      fn.arg1(0, 1) = 20;
      fn.arg1(1, 0) = 30;
      fn.arg1(1, 1) = 40;
      EXPECT_TRUE(fn.Run());
      EXPECT_EQ(fn.error_msg(), "");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    	}
    }
    
    type FloatInt struct {
    	x float64
    	y int
    }
    
    func TestGrowWithNegativeZero(t *testing.T) {
    	negzero := math.Copysign(0.0, -1.0)
    	m := make(map[FloatInt]int, 4)
    	m[FloatInt{0.0, 0}] = 1
    	m[FloatInt{0.0, 1}] += 2
    	m[FloatInt{0.0, 2}] += 4
    	m[FloatInt{0.0, 3}] = 8
    	growflag := true
    	s := 0
    	cnt := 0
    	negcnt := 0
    	// The first iteration should return the +0 key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java

      }
    
      public void testOf1() {
        assertThat(ImmutableDoubleArray.of(0).asList()).containsExactly(0.0);
      }
    
      public void testOf2() {
        assertThat(ImmutableDoubleArray.of(0, 1).asList()).containsExactly(0.0, 1.0).inOrder();
      }
    
      public void testOf3() {
        assertThat(ImmutableDoubleArray.of(0, 1, 3).asList()).containsExactly(0.0, 1.0, 3.0).inOrder();
      }
    
      public void testOf4() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top