Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for 05 (0.02 sec)

  1. test/intcvt.go

    	cu32 = 1<<32 - 1234567
    	cu64 = 1<<64 - 1234567890123
    
    	cf32 = 1e8 + 0.5
    	cf64 = -1e8 + 0.5
    )
    
    var (
    	i8  int8  = ci8
    	i16 int16 = ci16
    	i32 int32 = ci32
    	i64 int64 = ci64
    
    	u8  uint8  = cu8
    	u16 uint16 = cu16
    	u32 uint32 = cu32
    	u64 uint64 = cu64
    
    	//	f32 float32 = 1e8 + 0.5
    	//	f64 float64 = -1e8 + 0.5
    )
    
    func chki8(i, v int8) {
    	if i != v {
    		println(i, "!=", v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 07:47:26 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  2. docs/debugging/xattr/go.sum

    github.com/mattn/go-runewidth v0.0.15/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
    github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
    github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
    github.com/pkg/xattr v0.4.9 h1:5883YPCtkSd8LFbs13nXplj9g9tlrwoJRjgpgMu1/fE=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.json

    // Checks if calibrated type is exported back to quantized type.
    // RoundTrip: name: "effective_hidden_scale_intermediate",
    // RoundTrip-NEXT: quantization: {
    // RoundTrip-NEXT: min: [ -0.5 ],
    // RoundTrip-NEXT: max: [ 0.5 ]
    
    {
      "version": 3,
      "operator_codes": [
        {
          "builtin_code": "UNIDIRECTIONAL_SEQUENCE_LSTM"
        }
      ],
      "subgraphs": [
        {
          "tensors": [
            {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 06:25:50 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4085a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type T []int
    
    func main() {
    	_ = make(T, -1)    // ERROR "negative"
    	_ = make(T, 0.5)   // ERROR "constant 0.5 truncated to integer|non-integer len argument|truncated to int"
    	_ = make(T, 1.0)   // ok
    	_ = make(T, 1<<63) // ERROR "len argument too large|overflows int"
    	_ = make(T, 0, -1) // ERROR "negative cap|must not be negative"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 604 bytes
    - Viewed (0)
  5. src/internal/runtime/atomic/atomic_mipsx.s

    	MOVW	val+4(FP), R2
    	SYNC
    	MOVW	R2, 0(R1)
    	SYNC
    	RET
    
    TEXT ·Store8(SB),NOSPLIT,$0-5
    	MOVW	ptr+0(FP), R1
    	MOVB	val+4(FP), R2
    	SYNC
    	MOVB	R2, 0(R1)
    	SYNC
    	RET
    
    TEXT ·Load(SB),NOSPLIT,$0-8
    	MOVW	ptr+0(FP), R1
    	SYNC
    	MOVW	0(R1), R1
    	SYNC
    	MOVW	R1, ret+4(FP)
    	RET
    
    TEXT ·Load8(SB),NOSPLIT,$0-5
    	MOVW	ptr+0(FP), R1
    	SYNC
    	MOVB	0(R1), R1
    	SYNC
    	MOVB	R1, ret+4(FP)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildCancellationIntegrationTest.groovy

                stdinPipe << inputBefore
            }
            if (flushBefore) {
                stdinPipe.flush()
            }
            sendEOT()
    
            then:
            ConcurrentTestUtil.poll(buildTimeout, 0.5) {
                assert !gradle.isRunning()
            }
    
            where:
            [inputBefore, flushBefore] << [['', ' ', 'a', 'some input', 'a' * 8192], [true, false]].combinations()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. test/makechan.go

    func main() {
    	sink = make(T, -1)            // ERROR "negative buffer argument in make.*|must not be negative"
    	sink = make(T, uint64(1<<63)) // ERROR "buffer argument too large in make.*|overflows int"
    
    	sink = make(T, 0.5) // ERROR "constant 0.5 truncated to integer|truncated to int"
    	sink = make(T, 1.0)
    	sink = make(T, float32(1.0)) // ERROR "non-integer buffer argument in make.*|must be integer"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    cp stdout README.md
    mkdir v2/pkg
    echo 'package q'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_vendor_prune_all.txt

    example.com/q
    # example.com/w v1.0.0 => ./w
    ## go 1.18
    example.com/w
    # example.com/z v1.0.0 => ./z1_0_0
    ## explicit; go 1.18
    # example.com/z v1.1.0 => ./z1_1_0
    ## go 1.18
    example.com/z
    # example.com/q v1.0.5 => ./q1_0_5
    # example.com/r v1.0.0 => ./r
    # example.com/x v1.0.0 => ./x
    # example.com/y v1.0.0 => ./y
    -- want_versions --
    example.com/a@
    example.com/b@v1.0.0
    example.com/p@
    example.com/q@v1.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/math/DoubleUtils.java

        /*
         * We round up if either the fractional part of signif is strictly greater than 0.5 (which is
         * true if the 0.5 bit is set and any lower bit is set), or if the fractional part of signif is
         * >= 0.5 and signifFloor is odd (which is true if both the 0.5 bit and the 1 bit are set).
         */
        boolean increment =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 28 15:37:52 UTC 2021
    - 5.1K bytes
    - Viewed (0)
Back to top