Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for i0 (0.03 sec)

  1. src/go/printer/testdata/comments.golden

    type SZ interface{}
    
    // The I0 interface; no method is exported.
    type I0 interface {
    	f(x int) int	// unexported method
    }
    
    // The I1 interface; some methods are not exported.
    type I1 interface {
    	I0
    	F(x float) float	// exported methods
    	g(x int) int		// unexported method
    }
    
    // The I2 interface; all methods are exported.
    type I2 interface {
    	I0
    	F(x float) float	// exported method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 23:11:14 UTC 2022
    - 11.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/fuse.go

    	if b.Kind != BlockIf {
    		return false
    	}
    	// It doesn't matter how much Preds does s0 or s1 have.
    	var ss0, ss1 *Block
    	s0 := b.Succs[0].b
    	i0 := b.Succs[0].i
    	if s0.Kind != BlockPlain || !isEmpty(s0) {
    		s0, ss0 = b, s0
    	} else {
    		ss0 = s0.Succs[0].b
    		i0 = s0.Succs[0].i
    	}
    	s1 := b.Succs[1].b
    	i1 := b.Succs[1].i
    	if s1.Kind != BlockPlain || !isEmpty(s1) {
    		s1, ss1 = b, s1
    	} else {
    		ss1 = s1.Succs[0].b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/tests/raise_to_tf.mlir

      %0 = "tfr.cast"(%arg0) : (tensor<3xf32>) -> !tfr.tensor
      %n = arith.constant 3: i32
      %split = tfr.call @tf__risc_split(%0, %n) : (!tfr.tensor, i32) -> !tfr.tensor_list
      %i0 = arith.constant 0: index
      %s0 = tfr.get_element %split[%i0] : (!tfr.tensor_list, index) -> !tfr.tensor
      %4 = "tfr.cast"(%s0) : (!tfr.tensor) -> tensor<f32>
      func.return %4 : tensor<f32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/java-sourcesets-process-resources.graffle

    set0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qc\partightenfactor0 \f0\fs32 \cf0 process \f1\i SourceSet \f0\i0 Resources}AllowLabelDropfalseC{156, 57.500000000000014}{207.5, 57.5}Rotation90StylefillD.0g0.0r0.0space9eaea0911d89d6{{9, 19}, {147, 78}}ClassShapedGraphicID.75g1r0.75spacesrgbshadowDra.0g0.0r0.0space9eaea0911d89d6{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf200...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. test/codegen/arithmetic.go

    }
    
    // The reassociate rules "x - (z + C) -> (x - z) - C" and
    // "(z + C) -x -> C + (z - x)" can optimize the following cases.
    func constantFold1(i0, j0, i1, j1, i2, j2, i3, j3 int) (int, int, int, int) {
    	// arm64:"SUB","ADD\t[$]2"
    	// ppc64x:"SUB","ADD\t[$]2"
    	r0 := (i0 + 3) - (j0 + 1)
    	// arm64:"SUB","SUB\t[$]4"
    	// ppc64x:"SUB","ADD\t[$]-4"
    	r1 := (i1 - 3) - (j1 + 1)
    	// arm64:"SUB","ADD\t[$]4"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. test/noinit.go

    var bx bool
    var b0 = false
    var b1 = true
    
    var fx float32
    var f0 = float32(0)
    var f1 = float32(1)
    
    var gx float64
    var g0 = float64(0)
    var g1 = float64(1)
    
    var ix int
    var i0 = 0
    var i1 = 1
    
    var jx uint
    var j0 = uint(0)
    var j1 = uint(1)
    
    var cx complex64
    var c0 = complex64(0)
    var c1 = complex64(1)
    
    var dx complex128
    var d0 = complex128(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. src/internal/types/testdata/examples/types.go

    type I2 interface {
    	I1(int)     // method!
    	I1[string]  // embedded I1
    }
    
    func _() {
    	var x I2
    	x.I1(0)
    	x.m1("foo")
    }
    
    type I0 interface {
    	m0()
    }
    
    type I3 interface {
    	I0
    	I1[bool]
    	m(string)
    }
    
    func _() {
    	var x I3
    	x.m0()
    	x.m1(true)
    	x.m("foo")
    }
    
    type _ struct {
    	( /* ERROR "cannot parenthesize" */ int8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:16:04 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    				m[i] = true
    			}
    		}
    	}
    
    	i0 := -1 // if i0 >= 0 we are in a run and i0 is the start of the run
    	var keepType bool
    	for i, s := range specs {
    		t := s.(*ast.ValueSpec)
    		if t.Values != nil {
    			if i0 < 0 {
    				// start of a run of ValueSpecs with non-nil Values
    				i0 = i
    				keepType = false
    			}
    		} else {
    			if i0 >= 0 {
    				// end of a run
    				populate(i0, i, keepType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    	if !m[GrabBag{c128: 1.0i}] {
    		panic("c128 not found")
    	}
    	m[GrabBag{s: "foo"}] = true
    	if !m[GrabBag{s: "foo"}] {
    		panic("string not found")
    	}
    	m[GrabBag{i0: "foo"}] = true
    	if !m[GrabBag{i0: "foo"}] {
    		panic("interface{} not found")
    	}
    	m[GrabBag{i1: canString(5)}] = true
    	if !m[GrabBag{i1: canString(5)}] {
    		panic("interface{String() string} not found")
    	}
    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. src/go/types/issues_test.go

    			`package main
    import "b"
    type I0 interface {
    	M0(w struct{ f string })
    }
    var _ I0 = b.S{}
    `,
    			`package b
    type S struct{}
    func (S) M0(struct{ f string }) {}
    `,
    			`6:12: cannot use b[.]S{} [(]value of type b[.]S[)] as I0 value in variable declaration: b[.]S does not implement I0 [(]wrong type for method M0[)]
    .*have M0[(]struct{f string /[*] package b [*]/ }[)]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top