Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for issue27856 (0.16 sec)

  1. src/go/internal/gccgoimporter/testdata/issue27856.gox

    Robert Griesemer <******@****.***> 1537914683 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 293 bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/issue27856.go

    Robert Griesemer <******@****.***> 1537914683 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 27 02:52:03 UTC 2018
    - 71 bytes
    - Viewed (0)
  3. src/go/internal/gccgoimporter/importer_test.go

    	{pkgpath: "aliases", name: "C0", gccgoVersion: 7, want: "type C0 struct{f1 C1; f2 C1}"},
    	{pkgpath: "escapeinfo", name: "NewT", want: "func NewT(data []byte) *T"},
    	{pkgpath: "issue27856", name: "M", gccgoVersion: 7, want: "type M struct{E F}"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  4. src/go/doc/testdata/issue22856.1.golden

    // 
    PACKAGE issue22856
    
    IMPORTPATH
    	testdata/issue22856
    
    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  5. src/go/doc/testdata/issue22856.go

    // Copyright 2017 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 issue22856
    
    type T struct{}
    
    func New() T                   { return T{} }
    func NewPointer() *T           { return &T{} }
    func NewPointerSlice() []*T    { return []*T{&T{}} }
    func NewSlice() []T            { return []T{T{}} }
    func NewPointerOfPointer() **T { x := &T{}; return &x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  6. src/go/doc/testdata/issue22856.0.golden

    // 
    PACKAGE issue22856
    
    IMPORTPATH
    	testdata/issue22856
    
    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  7. src/go/doc/testdata/issue22856.2.golden

    // 
    PACKAGE issue22856
    
    IMPORTPATH
    	testdata/issue22856
    
    FILENAMES
    	testdata/issue22856.go
    
    FUNCTIONS
    	// NewPointerSliceOfSlice is not a factory function because slices ...
    	func NewPointerSliceOfSlice() [][]*T
    
    	// NewSlice3 is not a factory function because 3 nested slices of ...
    	func NewSlice3() [][][]T
    
    	// NewSliceOfSlice is not a factory function because slices of a ...
    	func NewSliceOfSlice() [][]T
    
    
    TYPES
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 12 16:37:37 UTC 2018
    - 654 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue8756.go

    // license that can be found in the LICENSE file.
    
    package cgotest
    
    /*
    #cgo !darwin LDFLAGS: -lm
    #include <math.h>
    */
    import "C"
    import (
    	"testing"
    
    	"cmd/cgo/internal/test/issue8756"
    )
    
    func test8756(t *testing.T) {
    	issue8756.Pow()
    	C.pow(1, 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 359 bytes
    - Viewed (0)
  9. test/fixedbugs/issue5856.go

    var x = 1
    
    func f() {
    	if x == 0 {
    		return
    	}
    	defer g()
    	panic("panic")
    }
    
    func g() {
    	_, file, line, _ := runtime.Caller(2)
    	if !strings.HasSuffix(file, "issue5856.go") || line != 28 {
    		fmt.Printf("BUG: defer called from %s:%d, want issue5856.go:28\n", file, line)
    		os.Exit(1)
    	}
    	os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 28 20:55:36 UTC 2018
    - 586 bytes
    - Viewed (0)
  10. src/go/internal/srcimporter/testdata/issue20855/issue20855.go

    // Copyright 2017 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 issue20855
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 15:30:35 UTC 2017
    - 235 bytes
    - Viewed (0)
Back to top