Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for GO (0.29 sec)

  1. src/cmd/distpack/pack.go

    		// Generated during cmd/dist. See ../dist/build.go:/gentab.
    		"src/cmd/go/internal/cfg/zdefaultcc.go",
    		"src/go/build/zcgo.go",
    		"src/runtime/internal/sys/zversion.go",
    		"src/time/tzdata/zzipdata.go",
    
    		// Generated during cmd/dist by bootstrapBuildTools.
    		"src/cmd/cgo/zdefaultcc.go",
    		"src/cmd/internal/objabi/zbootstrap.go",
    		"src/internal/buildcfg/zbootstrap.go",
    
    		// Generated by earlier versions of cmd/dist .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. test/fixedbugs/bug012.go

    	if i34 != -1 { panic("i34") }
    }
    /*
    bug12.go:5: overflow converting constant to <uint64>UINT64
    bug12.go:6: overflow converting constant to <uint64>UINT64
    bug12.go:7: overflow converting constant to <uint64>UINT64
    bug12.go:8: overflow converting constant to <uint64>UINT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 756 bytes
    - Viewed (0)
  3. src/internal/abi/abi_test.go

    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("go tool asm -gensymabis failed: %v\n%s", err, out)
    	}
    
    	// compile go code.
    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-importcfg="+importcfgfile, "-p=p", "-symabis", symabi, "-o", obj, goSrc)
    	out, err = cmd.CombinedOutput()
    	if err == nil {
    		t.Fatalf("go tool compile did not fail")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/fix/main.go

    // Copyright 2011 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
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/parser"
    	"go/scanner"
    	"go/token"
    	"go/version"
    	"internal/diff"
    	"io"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"sort"
    	"strings"
    
    	"cmd/internal/telemetry"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/naming/from_stack_test.go

    		},
    		{
    			name:            "ignore-package",
    			ignoredPackages: []string{"k8s.io/apimachinery/pkg/util/naming"},
    			expected:        "testing/testing.go:",
    		},
    		{
    			name:            "ignore-file",
    			ignoredPackages: []string{"k8s.io/apimachinery/pkg/util/naming/from_stack_test.go"},
    			expected:        "testing/testing.go:",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 28 17:40:28 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. src/image/color/palette/generate.go

    // Copyright 2014 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:generate go run gen.go -output palette.go
    
    // Package palette provides standard color palettes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 277 bytes
    - Viewed (0)
  7. src/syscall/mkasm.go

    // Copyright 2018 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 ignore
    
    // mkasm.go generates assembly trampolines to call library routines from Go.
    // This program must be run after mksyscall.pl.
    package main
    
    import (
    	"bytes"
    	"fmt"
    	"log"
    	"os"
    	"strings"
    )
    
    func main() {
    	if len(os.Args) != 3 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag_old.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.
    
    // TODO(rsc): Delete this file once Go 1.17 comes out and we can retire Go 1.15 support.
    
    //go:build !go1.16
    // +build !go1.16
    
    // Package buildtag defines an Analyzer that checks build tags.
    package buildtag
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    // The idea is to get some threads going, so that a signal will be delivered
    // to a thread started by Go.
    //
    //export RunGoroutines
    func RunGoroutines() {
    	for i := 0; i < 4; i++ {
    		go func() {
    			runtime.LockOSThread()
    			select {}
    		}()
    	}
    }
    
    // Block blocks the current thread while running Go code.
    //
    //export Block
    func Block() {
    	select {}
    }
    
    var P *byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/flagdefs_test.go

    // Copyright 2019 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 test
    
    import (
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/test/internal/genflags"
    	"internal/testenv"
    	"maps"
    	"os"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	cfg.SetGOROOT(testenv.GOROOT(nil), false)
    	os.Exit(m.Run())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 09 13:37:58 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top