Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for T18 (0.04 sec)

  1. test/writebarrier.go

    	// barrier requires both to have barriers.
    	x.f = f17                      // ERROR "write barrier"
    	x.f = func(y *T17) { *y = *x } // ERROR "write barrier"
    }
    
    type T18 struct {
    	a []int
    	s string
    }
    
    func f18(p *T18, x *[]int) {
    	p.a = p.a[:5]    // no barrier
    	*x = (*x)[0:5]   // no barrier
    	p.a = p.a[3:5]   // ERROR "write barrier"
    	p.a = p.a[1:2:3] // ERROR "write barrier"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 19:46:36 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                }
                val t17: TaskProvider<Copy> = tasks.named<Copy>("pipistrelle") {
                    description += "C"
                    destinationDir = file("out")
                }
    
                val t18: TaskProvider<Task> = tasks.register("yate")
                val t19: TaskProvider<Copy> = tasks.register("quartern", Copy::class)
                val t20: TaskProvider<Copy> = tasks.register<Copy>("veduta")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/sccp_test.go

    			Valu("t15", OpCeil, c.config.Types.Float64, 0, nil, "t14"),
    			Valu("t16", OpTrunc, c.config.Types.Float64, 0, nil, "t15"),
    			Valu("t17", OpRoundToEven, c.config.Types.Float64, 0, nil, "t16"),
    			Valu("t18", OpTrunc64to32, c.config.Types.Int64, 0, nil, "t12"),
    			Valu("t19", OpCvt64Fto64, c.config.Types.Float64, 0, nil, "t17"),
    			Valu("t20", OpCtz64, c.config.Types.Int64, 0, nil, "v2"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 21:01:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/decls1.go

    	t12 complex64 = -(u + *t11) / *&v
    	t13 int = a /* ERROR "shifted operand" */ << d
    	t14 int = i << j
    	t15 math /* ERROR "math is not a type" */
    	t16 math.xxx /* ERROR "undefined" */
    	t17 math /* ERROR "not a type" */ .Pi
    	t18 float64 = math.Pi * 10.0
    	t19 int = t1 /* ERROR "cannot call" */ ()
    	t20 int = f0 /* ERROR "no value" */ ()
    	t21 int = a /* ERRORx `cannot use .* variable declaration` */
    )
    
    // Various more complex expressions
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top