Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 436 for GO (0.61 sec)

  1. src/cmd/dist/test.go

    	//
    	// These tests *must* be able to run normally as part of "go test std cmd",
    	// even if they are also registered separately by dist, because users often
    	// run go test directly. Use skips or build tags in preference to expanding
    	// this list.
    	registerStdTestSpecially := map[string]bool{
    		// testdir can run normally as part of "go test std cmd", but because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/runtime/map.go

    // If you modify hiter, also change cmd/compile/internal/reflectdata/reflect.go
    // and reflect/value.go to match the layout of this structure.
    type hiter struct {
    	key         unsafe.Pointer // Must be in first position.  Write nil to indicate iteration end (see cmd/compile/internal/walk/range.go).
    	elem        unsafe.Pointer // Must be in second position (see cmd/compile/internal/walk/range.go).
    	t           *maptype
    	h           *hmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	clientset "k8s.io/client-go/kubernetes"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	restclient "k8s.io/client-go/rest"
    	"k8s.io/client-go/tools/clientcmd"
    	"k8s.io/client-go/tools/record"
    	certutil "k8s.io/client-go/util/cert"
    	"k8s.io/client-go/util/certificate"
    	"k8s.io/client-go/util/connrotation"
    	"k8s.io/client-go/util/keyutil"
    	cloudprovider "k8s.io/cloud-provider"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "go-relocation-test-gcc492.c", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrCompDir, Val: "/root/go/src/debug/elf/testdata", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. src/go/types/expr.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.
    
    // This file implements typechecking of expressions.
    
    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/constant"
    	"go/internal/typeparams"
    	"go/token"
    	. "internal/types/errors"
    	"strings"
    )
    
    /*
    Basic algorithm:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    		if ctxt.BuildMode == BuildModeShared {
    			sh := elfshname(".note.go.pkg-list")
    			sh.Type = uint32(elf.SHT_NOTE)
    			sh = elfshname(".note.go.abihash")
    			sh.Type = uint32(elf.SHT_NOTE)
    			sh.Flags = uint64(elf.SHF_ALLOC)
    			sh = elfshname(".note.go.deps")
    			sh.Type = uint32(elf.SHT_NOTE)
    		}
    
    		if *flagBuildid != "" {
    			sh := elfshname(".note.go.buildid")
    			sh.Type = uint32(elf.SHT_NOTE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/os/os_test.go

    		io.Copy(io.Discard, Stdin)
    		Exit(0)
    	}
    
    	log.SetFlags(log.LstdFlags | log.Lshortfile)
    
    	Exit(m.Run())
    }
    
    var dot = []string{
    	"dir_unix.go",
    	"env.go",
    	"error.go",
    	"file.go",
    	"os_test.go",
    	"types.go",
    	"stat_darwin.go",
    	"stat_linux.go",
    }
    
    type sysDir struct {
    	name  string
    	files []string
    }
    
    var sysdir = func() *sysDir {
    	switch runtime.GOOS {
    	case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. src/go/types/api_test.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.
    
    package types_test
    
    import (
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"internal/goversion"
    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    
    	. "go/types"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api_test.go

    // or module is tagged with a newer version of Go than this go/types.
    func TestTooNew(t *testing.T) {
    	for _, test := range []struct {
    		goVersion   string // package's Go version (as if derived from go.mod file)
    		fileVersion string // file's Go version (becomes a build tag)
    		wantErr     string // expected substring of concatenation of all errors
    	}{
    		{"go1.98", "", "package requires newer Go version go1.98"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  10. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	appsv1informers "k8s.io/client-go/informers/apps/v1"
    	coordinformers "k8s.io/client-go/informers/coordination/v1"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/scheme"
    	v1core "k8s.io/client-go/kubernetes/typed/core/v1"
    	appsv1listers "k8s.io/client-go/listers/apps/v1"
    	coordlisters "k8s.io/client-go/listers/coordination/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
Back to top