Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for u4 (0.04 sec)

  1. src/go/doc/testdata/e.1.golden

    	func (*U2) M()
    
    	// 
    	type U3 struct {
    		*U2
    	}
    
    	// U3.N should appear as method of U3 and as method of U2 only if ...
    	func (*U3) N()
    
    	// 
    	type U4 struct {
    		*u5
    	}
    
    	// U4.M should appear as method of U4. 
    	func (*U4) M()
    
    	// 
    	type V1 struct {
    		*V2
    		*V5
    	}
    
    	// 
    	type V2 struct {
    		*V3
    	}
    
    	// 
    	type V3 struct {
    		*V4
    	}
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.8K bytes
    - Viewed (0)
  2. src/go/doc/testdata/e.go

    type U3 struct {
    	*U2
    }
    
    // U3.N should appear as method of U3 and as method of U2 only if AllMethods is set.
    func (*U3) N() {}
    
    type U4 struct {
    	*u5
    }
    
    // U4.M should appear as method of U4.
    func (*U4) M() {}
    
    type u5 struct {
    	*U4
    }
    
    // ----------------------------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.8K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/expr0.go

    	// uint
    	u0 = uint(1)
    	u1 uint = u0
    	u2 = +1
    	u3 = +u0
    	u4 uint = +1
    	u5 uint = +u4
    	u6 = -1
    	u7 = -u0
    	u8 uint = - /* ERROR "overflows" */ 1
    	u9 uint = -u4
    	u10 = !u0 /* ERROR "not defined" */
    	u11 = ^1
    	u12 = ^i0
    	u13 uint = ^ /* ERROR "overflows" */ 1
    	u14 uint = ^u4
    	u15 = *u0 /* ERROR "cannot indirect" */
    	u16 = &u0
    	u17 = *u16
    	u18 = <-u16 /* ERROR "cannot receive" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/go/doc/testdata/e.0.golden

    	// 
    	type U3 struct {
    		*U2
    	}
    
    	// U3.N should appear as method of U3 and as method of U2 only if ...
    	func (*U3) N()
    
    	// 
    	type U4 struct {
    		// contains filtered or unexported fields
    	}
    
    	// U4.M should appear as method of U4. 
    	func (*U4) M()
    
    	// 
    	type V1 struct {
    		*V2
    		*V5
    	}
    
    	// 
    	type V2 struct {
    		*V3
    	}
    
    	// 
    	type V3 struct {
    		*V4
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  5. test/fixedbugs/issue6977.go

    type M interface { m() }
    type M32 interface { m() int32 }
    type M64 interface { m() int64 }
    
    type U1 interface { m() }
    type U2 interface { m(); M }
    type U3 interface { M; m() }
    type U4 interface { M; M; M }
    type U5 interface { U1; U2; U3; U4 }
    
    type U6 interface { m(); m() } // ERROR "duplicate method .*m"
    type U7 interface { M32; m() } // ERROR "duplicate method .*m"
    type U8 interface { m(); M32 } // ERROR "duplicate method .*m"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 20:30:02 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/prepare-tf-fake-quant-4bit.mlir

      %1 = "tfl.quantize"(%0) {qtype = tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>} : (tensor<8xf32>) -> tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>
      func.return %1 : tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>
    
    // CHECK:  %0 = "tf.FakeQuantWithMinMaxVars"(%arg0, %cst, %cst_0) <{narrow_range = false, num_bits = 3 : i64}>
    // CHECK:  %1 = "tfl.quantize"(%0) <{qtype = tensor<8x!quant.uniform<u4:f32, 1.000000e+00>>}>
    // CHECK:  return %1
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 22K bytes
    - Viewed (0)
  7. src/go/doc/testdata/e.2.golden

    	func (U3) M()
    
    	// U3.N should appear as method of U3 and as method of U2 only if ...
    	func (*U3) N()
    
    	// 
    	type U4 struct {
    		// contains filtered or unexported fields
    	}
    
    	// U4.M should appear as method of U4. 
    	func (*U4) M()
    
    	// 
    	type V1 struct {
    		*V2
    		*V5
    	}
    
    	// V6.M should appear as method of V1 and V5 if AllMethods is set. 
    	func (V1) M()
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2.1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/b.0.golden

    CONSTANTS
    	// 
    	const (
    		C1	notExported	= iota
    		C2
    	
    		C4
    		C5
    	)
    
    	// 
    	const C notExported = 0
    
    	// 
    	const Pi = 3.14	// Pi
    
    
    VARIABLES
    	// 
    	var (
    		U1, U2, U4, U5	notExported
    	
    		U7	notExported	= 7
    	)
    
    	// 
    	var MaxInt int	// MaxInt
    
    	// 
    	var V notExported
    
    	// 
    	var V1, V2, V4, V5 notExported
    
    
    FUNCTIONS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 766 bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue6977.go

    type M interface { m() }
    type M32 interface { m() int32 }
    type M64 interface { m() int64 }
    
    type U1 interface { m() }
    type U2 interface { m(); M }
    type U3 interface { M; m() }
    type U4 interface { M; M; M }
    type U5 interface { U1; U2; U3; U4 }
    
    type U6 interface { m(); m /* ERROR "duplicate method" */ () }
    type U7 interface { M32 /* ERROR "duplicate method" */ ; m() }
    type U8 interface { m(); M32 /* ERROR "duplicate method" */ }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:04:33 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. src/go/doc/testdata/b.1.golden

    	// 
    	type notExported int
    
    	// 
    	const (
    		C1	notExported	= iota
    		C2
    		c3
    		C4
    		C5
    	)
    
    	// 
    	const C notExported = 0
    
    	// 
    	var (
    		U1, U2, u3, U4, U5	notExported
    		u6			notExported
    		U7			notExported	= 7
    	)
    
    	// 
    	var V notExported
    
    	// 
    	var V1, V2, v3, V4, V5 notExported
    
    	// 
    	func F1() notExported
    
    	// 
    	func f2() notExported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top