Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,840 for f012 (0.22 sec)

  1. test/fixedbugs/issue4370.dir/p3.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p3
    
    import "./p2"
    
    func F() {
    	p2.F()
    	var t p2.T
    	println(t.T.M())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 238 bytes
    - Viewed (0)
  2. test/fixedbugs/bug468.go

    // rundir
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The reflect package was not correctly checking field names
    // when checking for struct assignability.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 293 bytes
    - Viewed (0)
  3. test/fixedbugs/issue4399.go

    // compile
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4399: 8g would print "gins LEAQ nil *A".
    
    package main
    
    type A struct{ a int }
    
    func main() {
    	println(((*A)(nil)).a)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 301 bytes
    - Viewed (0)
  4. test/fixedbugs/issue4510.dir/f1.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    import "fmt" // GCCGO_ERROR "fmt redeclared|imported"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 245 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/build.gradle

    }
    
    // tag::custom-task-class[]
    tasks.register('processTemplates', ProcessTemplates) {
        templateEngine = TemplateEngineType.FREEMARKER
        templateData.name = 'test'
        templateData.variables = [year: '2012']
        outputDir = file(layout.buildDirectory.dir('genOutput'))
    
        sources fileTree('src/templates')
    }
    // end::custom-task-class[]
    
    // tag::task-arg-method[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/build.gradle.kts

    }
    
    // tag::custom-task-class[]
    tasks.register<ProcessTemplates>("processTemplates") {
        templateEngine = TemplateEngineType.FREEMARKER
        templateData.name = "test"
        templateData.variables = mapOf("year" to "2012")
        outputDir = layout.buildDirectory.dir("genOutput")
    
        sources(fileTree("src/templates"))
    }
    // end::custom-task-class[]
    
    // tag::task-arg-method[]
    val copyTemplates by tasks.registering(Copy::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. src/go/doc/testdata/a1.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // comment 1
    package a
    
    //BUG(uid): bug1
    
    //TODO(uid): todo1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 240 bytes
    - Viewed (0)
  8. test/fixedbugs/bug424.dir/lib.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package lib
    
    type I interface {
    	m() string
    }
    
    type T struct{}
    
    // m is not accessible from outside this package.
    func (t *T) m() string {
    	return "lib.T.m"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  9. test/fixedbugs/issue4470.go

    // errorcheck
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4470: parens are not allowed around .(type) "expressions"
    
    package main
    
    func main() {
    	var i interface{}
    	switch (i.(type)) { // ERROR "outside type switch"
    	default:
    	}
    	_ = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 364 bytes
    - Viewed (0)
  10. test/fixedbugs/bug460.go

    // errorcheckdir
    
    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // part one of issue 4124. Make sure that the compiler rejects access attempts.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 276 bytes
    - Viewed (0)
Back to top