Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for GO (0.36 sec)

  1. test/fixedbugs/bug007.go

    // run
    
    // Copyright 2009 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 main
    
    type (
    	Point struct {
    		x, y float64
    	}
    	Polar Point
    )
    
    func main() {
    }
    
    /*
    bug7.go:5: addtyp: renaming Point to Polar
    main.go.c:14: error: redefinition of typedef ‘_T_2’
    main.go.c:13: error: previous declaration of ‘_T_2’ was here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 481 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.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.22
    // +build !go1.22
    
    package versions
    
    import (
    	"go/ast"
    	"go/types"
    )
    
    // FileVersion returns a language version (<=1.21) derived from runtime.Version()
    // or an unknown future version.
    func FileVersion(info *types.Info, file *ast.File) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/go.sum

    cloud.google.com/go/texttospeech v1.7.1/go.mod h1:m7QfG5IXxeneGqTapXNxv2ItxP/FS0hCZBwXYqucgSk=
    cloud.google.com/go/tpu v1.6.1/go.mod h1:sOdcHVIgDEEOKuqUoi6Fq53MKHJAtOwtz0GuKsWSH3E=
    cloud.google.com/go/trace v1.10.1/go.mod h1:gbtL94KE5AJLH3y+WVpfWILmqgc6dXcqgNXdOPAQTYk=
    cloud.google.com/go/translate v1.8.2/go.mod h1:d1ZH5aaOA0CNhWeXeC8ujd4tdCFw8XoNWRljklu5RHs=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    }
    
    // ProgramInfo extracts the go version, program package path, and program
    // version to use for counter files.
    //
    // For programs in the Go toolchain, the program version will be the same as
    // the Go version, and will typically be of the form "go1.2.3", not a semantic
    // version of the form "v1.2.3". Go versions may also include spaces and
    // special characters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. go.sum

    github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
    github.com/go-ole/go-ole v1.3.0 h1:Dt6ye7+vXGIKZ7Xtk4s6/xVdGDQynvom7xCFEdWr6uE=
    github.com/go-ole/go-ole v1.3.0/go.mod h1:5LS6F96DhAwUc7C+1HLexzMXY1xGRSryjyPPKW6zv78=
    github.com/go-openapi/analysis v0.23.0 h1:aGday7OWupfMs+LbmLZG4k0MYXIANxcuBTYUC03zFCU=
    github.com/go-openapi/analysis v0.23.0/go.mod h1:9mz9ZWaSlV8TvjQHLl2mUW2PbZtemkE8yA5v22ohupo=
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  6. src/internal/pkgbits/codes.go

    	Value() int
    }
    
    // A CodeVal distinguishes among go/constant.Value encodings.
    type CodeVal int
    
    func (c CodeVal) Marker() SyncMarker { return SyncVal }
    func (c CodeVal) Value() int         { return int(c) }
    
    // Note: These values are public and cannot be changed without
    // updating the go/types importers.
    
    const (
    	ValBool CodeVal = iota
    	ValString
    	ValInt64
    	ValBigInt
    	ValBigRat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 25 16:15:47 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    	"os"
    	"path/filepath"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/gover"
    	"cmd/go/internal/imports"
    	"cmd/go/internal/modfetch"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/par"
    	"cmd/go/internal/search"
    	"cmd/go/internal/toolchain"
    	"cmd/go/internal/work"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    import (
    	"fmt"
    
    	envoy_accesslogv3 "github.com/envoyproxy/go-control-plane/envoy/config/accesslog/v3"
    	envoy_bootstrap "github.com/envoyproxy/go-control-plane/envoy/config/bootstrap/v3"
    	envoy_cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	envoy_core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	envoy_listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/go/types/util_test.go

    // Code generated by "go test -run=Generate -write=all"; DO NOT EDIT.
    // Source: ../../cmd/compile/internal/types2/util_test.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.
    
    // This file exports various functionality of util.go
    // so that it can be used in (package-external) tests.
    
    package types
    
    import (
    	"go/token"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 626 bytes
    - Viewed (0)
  10. test/fixedbugs/issue29919.dir/a.go

    	if debug {
    		println(s)
    	}
    	if strings.Contains(s, "autogenerated") {
    		panic("autogenerated code in traceback")
    	}
    	if !strings.Contains(s, "a.go:15") {
    		panic("missing a.go:15")
    	}
    	if !strings.Contains(s, "a.go:19") {
    		panic("missing a.go:19")
    	}
    	if !strings.Contains(s, "a.init") {
    		panic("missing a.init")
    	}
    
    	// Check the CallersFrames results.
    	if debug {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 17:50:47 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top