Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 91 for io16 (0.04 sec)

  1. test/ken/interbasic.go

    	var ia [20]I0
    	var b bool
    	var s string
    	var i8 int8
    	var i16 int16
    	var i32 int32
    	var i64 int64
    	var u8 uint8
    	var u16 uint16
    	var u32 uint32
    	var u64 uint64
    
    	f()
    
    	ia[0] = "xxx"
    	ia[1] = 12345
    	ia[2] = true
    
    	s = "now is"
    	ia[3] = s
    	b = false
    	ia[4] = b
    
    	i8 = 29
    	ia[5] = i8
    	i16 = 994
    	ia[6] = i16
    	i32 = 3434
    	ia[7] = i32
    	i64 = 1234567
    	ia[8] = i64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 2.2K bytes
    - Viewed (0)
  2. test/convT2X.go

    	// pp does not implement error.
    )
    
    func second(a ...interface{}) interface{} {
    	return a[1]
    }
    
    func main() {
    	// Test equality.
    	if u16 != iu16 {
    		panic("u16 != iu16")
    	}
    	if u16 != ju16 {
    		panic("u16 != ju16")
    	}
    	if u32 != iu32 {
    		panic("u32 != iu32")
    	}
    	if u32 != ju32 {
    		panic("u32 != ju32")
    	}
    	if u64 != iu64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 23:09:05 UTC 2012
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/lstm_quantized.mlir

    tensor<640x!quant.uniform<i32:f32, 1.601389680352559E-4>>, %arg15: tensor<2048x!quant.uniform<i16:f32, 4.3700000969693065E-4>>, %arg16: tensor<2048x!quant.uniform<i16:f32, 1.1000000085914508E-4>>, %arg17: tensor<2048x!quant.uniform<i16:f32, 1.6799999866634607E-4>>, %arg18: tensor<2048x!quant.uniform<i16:f32, 1.55999994603917E-4>>, %arg19: tensor<1x640x!quant.uniform<i8:f32, 0.09671100229024887:10>>, %arg20: tensor<1x2048x!quant.uniform<i16:f32, 4.8799999058246613E-4>>) -> tensor<1x640x!quant.uniform<i8:f32, 0.09671100229024887:10>>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 15.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/lstm.mlir

    tensor<640x!quant.uniform<i32:f32, 1.601389680352559E-4>>, %arg15: tensor<2048x!quant.uniform<i16:f32, 4.3700000969693065E-4>>, %arg16: tensor<2048x!quant.uniform<i16:f32, 1.1000000085914508E-4>>, %arg17: tensor<2048x!quant.uniform<i16:f32, 1.6799999866634607E-4>>, %arg18: tensor<2048x!quant.uniform<i16:f32, 1.55999994603917E-4>>, %arg19: tensor<1x640x!quant.uniform<i8:f32, 0.09671100229024887:10>>, %arg20: tensor<1x2048x!quant.uniform<i16:f32, 4.8799999058246613E-4>>) -> tensor<1x640x!quant.uniform<i8:f32, 0.09671100229024887:10>>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. src/net/external_test.go

    	}
    	if len(ips) == 0 {
    		return nil, nil, nil
    	}
    	var ip4, ip6 IP
    	for _, ip := range ips {
    		if ip4 == nil && ip.To4() != nil {
    			ip4 = ip.To4()
    		}
    		if ip6 == nil && ip.To16() != nil && ip.To4() == nil {
    			ip6 = ip.To16()
    		}
    		if ip4 != nil && ip6 != nil {
    			break
    		}
    	}
    	if ip4 != nil {
    		for i, lit4 := range literalAddrs4 {
    			if strings.Contains(lit4, "%") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-quantize-post-training.mlir

    // CHECK-SAME: input_to_cell_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 1.2207403790398877E-4>>
    // CHECK-SAME: input_to_forget_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 4.8829615161595508E-4>>
    // CHECK-SAME: input_to_input_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 9.7659230323191015E-4>>
    // CHECK-SAME: input_to_output_intermediate = tensor<!quant.uniform<i16<-32767:32767>:f32, 3.0518509475997192E-5>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  7. test/bounds.go

    	use(p1[ui8])
    	use(p1k[ui8])   // ERROR "index bounds check elided"
    	use(p100k[ui8]) // ERROR "index bounds check elided"
    
    	use(s[i16])
    	use(a1[i16])
    	use(a1k[i16])
    	use(a100k[i16])
    	use(p1[i16])
    	use(p1k[i16])
    	use(p100k[i16])
    
    	// Unsigned 16-bit numbers don't need checks for len >= 2¹⁶.
    	use(s[ui16])
    	use(a1[ui16])
    	use(a1k[ui16])
    	use(a100k[ui16]) // ERROR "index bounds check elided"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 27 03:11:45 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/import.input

    	"dedup_by_group"
    
    	"dedup_by_group"
    )
    
    import (
    	/* comment */ io1 "io"
    	"fmt" // for Printf
    	/* comment */ "log"
    	/* comment */ io2 "io"
    )
    
    import (
    	/* comment */ io2 "io" // hello
    	/* comment */ io1 "io"
    	"math" /* right side */
    	"fmt"
    	// end
    )
    
    import (
    	/* comment */ io1 "io" /* before */ // after
    	"fmt"
    	"errors" // for New
    	io2 "io" // another
    	// end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/gofmt/testdata/import.golden

    	"dedup_by_group"
    )
    
    import (
    	"fmt" // for Printf
    	/* comment */ io1 "io"
    	/* comment */ io2 "io"
    	/* comment */ "log"
    )
    
    import (
    	"fmt"
    	/* comment */ io1 "io"
    	/* comment */ io2 "io" // hello
    	"math"                 /* right side */
    	// end
    )
    
    import (
    	"errors" // for New
    	"fmt"
    	/* comment */ io1 "io" /* before */ // after
    	io2 "io"               // another
    	// end
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
  10. src/net/net_fake.go

    			ip = IPv4(127, 0, 0, 1)
    		}
    		switch ffd.fd.family {
    		case syscall.AF_INET:
    			if ip4 := ip.To4(); ip4 != nil {
    				ip = ip4
    			}
    		case syscall.AF_INET6:
    			if ip16 := ip.To16(); ip16 != nil {
    				ip = ip16
    			}
    		}
    		if ip == nil {
    			return syscall.EINVAL
    		}
    
    		if port == 0 {
    			var prevPort int32
    			portWrapped := false
    			nextPort := func() (int, bool) {
    				for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
Back to top