Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 618 for go12 (0.19 sec)

  1. src/debug/gosym/pclntab.go

    // index out of bounds errors, we trust Go to detect them, and then
    // we recover from the panics and treat them as indicative of a malformed
    // or incomplete table.
    //
    // The methods called by symtab.go, which begin with "go12" prefixes,
    // are expected to have that recovery logic.
    
    // isGo12 reports whether this is a Go 1.2 (or later) symbol table.
    func (t *LineTable) isGo12() bool {
    	t.parsePclnTab()
    	return t.version >= ver12
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. internal/fips/go19.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    //go:build go1.19
    // +build go1.19
    
    package fips
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 30 19:37:07 UTC 2022
    - 831 bytes
    - Viewed (0)
  3. src/internal/trace/version/version.go

    package version
    
    import (
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // Version represents the version of a trace file.
    type Version uint32
    
    const (
    	Go111   Version = 11
    	Go119   Version = 19
    	Go121   Version = 21
    	Go122   Version = 22
    	Go123   Version = 23
    	Current         = Go123
    )
    
    var versions = map[Version][]event.Spec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/go11.go

    // Copyright 2013 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.
    
    //go:build go1.1
    
    package main
    
    // Test that go1.1 tag above is included in builds. main.go refers to this definition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 300 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/go120.go

    // Copyright 2023 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.
    
    //go:build go1.20
    
    package main
    
    import (
    	"os"
    	"os/exec"
    	"time"
    )
    
    func cmdInterrupt(cmd *exec.Cmd) {
    	cmd.Cancel = func() error {
    		// On timeout, send interrupt,
    		// in hopes of shutting down process tree.
    		// Ignore errors sending signal; it's all best effort
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:10 UTC 2023
    - 628 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sync/errgroup/go120.go

    // Copyright 2023 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.
    
    //go:build go1.20
    
    package errgroup
    
    import "context"
    
    func withCancelCause(parent context.Context) (context.Context, func(error)) {
    	return context.WithCancelCause(parent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 335 bytes
    - Viewed (0)
  7. src/cmd/internal/archive/testdata/go1.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 mypkg
    
    import "fmt"
    
    func go1() {
    	fmt.Println("go1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 224 bytes
    - Viewed (0)
  8. src/cmd/internal/archive/testdata/mycgo/go1.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 mycgo
    
    import "fmt"
    
    func go1() {
    	fmt.Println("go1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 224 bytes
    - Viewed (0)
  9. src/cmd/internal/archive/testdata/mycgo/go2.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 mycgo
    
    import "fmt"
    
    func go2() {
    	fmt.Println("go2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 224 bytes
    - Viewed (0)
  10. src/cmd/internal/archive/testdata/go2.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 mypkg
    
    import "fmt"
    
    func go2() {
    	fmt.Println("go2")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 224 bytes
    - Viewed (0)
Back to top