Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for 1251 (0.04 sec)

  1. src/crypto/rand/rand_getrandom.go

    		// Per the manpage:
    		//     When reading from the urandom source, a maximum of 33554431 bytes
    		//     is returned by a single call to getrandom() on systems where int
    		//     has a size of 32 bits.
    		maxGetRandomRead = (1 << 25) - 1
    	case "dragonfly", "freebsd", "illumos", "solaris":
    		maxGetRandomRead = 1 << 8
    	default:
    		panic("no maximum specified for GetRandom")
    	}
    	altGetRandom = batched(getRandom, maxGetRandomRead)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:26:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/convert/BigDecimalConversionUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        public void testToString() throws Exception {
            final BigDecimal d = new BigDecimal(new BigInteger("125"), -1);
            assertEquals("1250", BigDecimalConversionUtil.toString(d));
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/runtime/mksizeclasses.go

    // request up to the next size class wastes at most 12.5% (1.125x).
    //
    // Each size class has its own page count that gets allocated
    // and chopped up when new objects of the size class are needed.
    // That page count is chosen so that chopping up the run of
    // pages into objects of the given size wastes at most 12.5% (1.125x)
    // of the memory. It is not necessary that the cutoff here be
    // the same as above.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/gover/gover_test.go

    	{"1.2", Version{"1", "2", "0", "", ""}},
    	{"1.2.3", Version{"1", "2", "3", "", ""}},
    	{"1.2rc3", Version{"1", "2", "", "rc", "3"}},
    	{"1.20", Version{"1", "20", "0", "", ""}},
    	{"1.21", Version{"1", "21", "", "", ""}},
    	{"1.21rc3", Version{"1", "21", "", "rc", "3"}},
    	{"1.21.0", Version{"1", "21", "0", "", ""}},
    	{"1.24", Version{"1", "24", "", "", ""}},
    	{"1.24rc3", Version{"1", "24", "", "rc", "3"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/internal/src/pos_test.go

    		{MakePos(f2, 7, 10), "f2:17[:7:10]", "", 7, 10, "f2", 17, 0 /* line base doesn't specify a column */},
    		{MakePos(f3, 12, 7), "f3:102:7[f1:12:7]", "f1", 12, 7, "f3", 102, 7},
    		{MakePos(f4, 25, 1), "f4:115:1[f3:25:1]", "f3", 25, 1, "f4", 115, 1},
    
    		// line directives with non-1 columns
    		{MakePos(f5, 5, 5), "f5:10:1[f1:5:5]", "f1", 5, 5, "f5", 10, 1},
    		{MakePos(f5, 5, 10), "f5:10:6[f1:5:10]", "f1", 5, 10, "f5", 10, 6},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:50:26 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_toolchain.txt

    stderr '^go: downgraded toolchain go1.999testmod => go1.24rc1$'
    
    # go get go@1.21 should work if we are the Go 1.21 language version,
    # even though there's no toolchain for it.
    # (Older versions resolve to the latest release in that version, so for example
    # go get go@1.20 might resolve to 1.20.9, but if we're the devel copy of
    # Go 1.21, there's no release yet to resolve to, so we resolve to ourselves.)
    env TESTGO_VERSION=go1.21
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 19:33:16 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

      val java7 = sslLabsClients.first { it.userAgent == "Java" && it.version == "7u25" }
      val java12 = sslLabsClients.first { it.userAgent == "Java" && it.version == "12.0.1" }
      val safari12iOS = sslLabsClients.first { it.userAgent == "Safari" && it.platform == "iOS 12.3.1" }
      val safari12Osx =
        sslLabsClients.first { it.userAgent == "Safari" && it.platform == "MacOS 10.14.6 Beta" }
    
      val okhttp = currentOkHttp(ianaSuitesNew)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/perception_ops_utils_test.cc

      EXPECT_FALSE(failed(convert.VerifySignature()));
    }
    
    TEST_F(PerceptionUtilsTest, VerifySignatureInvalid) {
      auto input_type = RankedTensorType::get({1, 2, 2, 1}, builder_->getF32Type());
      auto output_type =
          RankedTensorType::get({1, 2, 1, 1}, builder_->getF32Type());
      SmallVector<mlir::Type, 1> input_types{input_type};
      SmallVector<mlir::Type, 1> output_types{output_type};
    
      auto max_unpooling_func =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 21:02:21 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_goline_order.txt

    go work use
    go list
    
    # Using a new enough Go version, fails later and can suggest 'go work use'.
    env TESTGO_VERSION=go1.21.2
    env TESTGO_VERSION_SWITCH=switch
    cp go.work.orig go.work
    ! go list
    stderr '^go: module . listed in go.work file requires go >= 1.21.2, but go.work lists go 1.21.1; to update it:\n\tgo work use$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 977 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/prepare-tf-with-allowing-bf16-and-f16-type-legalization.mlir

    func.func @conv_2d_bf16(%arg0 : tensor<256x32x32x3xbf16>, %arg1 : tensor<3x3x3x16xbf16>) -> tensor<256x8x7x16xbf16> {
      %0 = "tf.Conv2D"(%arg0, %arg1) {T = "tfdtype$DT_FLOAT", data_format = "NHWC", dilations = [1, 2, 3, 1], padding = "SAME", strides = [1, 4, 5, 1]} : (tensor<256x32x32x3xbf16>, tensor<3x3x3x16xbf16>) -> tensor<256x8x7x16xbf16>
      func.return %0 : tensor<256x8x7x16xbf16>
      // CHECK: "tfl.conv_2d"
    }
    
    // CHECK-LABEL: fused_batch_norm_v3_bf16
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 26 23:53:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top