Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,571 for GO (0.31 sec)

  1. src/runtime/syscall_windows.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.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    // cbs stores all registered Go callbacks.
    var cbs struct {
    	lock  mutex // use cbsLock / cbsUnlock for race instrumentation.
    	ctxt  [cb_max]winCallback
    	index map[winCallbackKey]int
    	n     int
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/cshared_test.go

    	}
    	defer os.RemoveAll(tmpdir)
    
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "go.mod"), "go.mod")
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "libgo", "libgo.go"), filepath.Join("libgo", "libgo.go"))
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "p", "p.go"), filepath.Join("p", "p.go"))
    
    	buildcmd := []string{"go", "install", "-x", "-buildmode=c-shared", "-installsuffix", "testcshared", "./libgo"}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/plugin_test.go

    	goCmd(t, "build", "-o", "issue19534.exe", "./issue19534/main.go")
    	run(t, "./issue19534.exe")
    }
    
    func TestIssue18584(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "build", "-buildmode=plugin", "-o", "plugin.so", "./issue18584/plugin.go")
    	goCmd(t, "build", "-o", "issue18584.exe", "./issue18584/main.go")
    	run(t, "./issue18584.exe")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.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 work
    
    import (
    	"context"
    	"errors"
    	"flag"
    	"fmt"
    	"go/build"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/fsys"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	< debug/buildinfo
    	< DEBUG;
    
    	# go parser and friends.
    	FMT, sort
    	< internal/gover
    	< go/version
    	< go/token
    	< go/scanner
    	< go/ast
    	< go/internal/typeparams;
    
    	FMT
    	< go/build/constraint;
    
    	FMT, sort
    	< go/doc/comment;
    
    	go/internal/typeparams, go/build/constraint
    	< go/parser;
    
    	go/doc/comment, go/parser, text/tabwriter
    	< go/printer
    	< go/format;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. cmd/dependencyverifier/dependencyverifier.go

    }
    
    // option1: dependencyverifier dependencies.json
    // it will run `go mod graph` and check it.
    func main() {
    	var modeGraphStr string
    	var err error
    	if len(os.Args) == 2 {
    		// run `go mod graph`
    		modeGraphStr, err = runCommand("go", "mod", "graph")
    		if err != nil {
    			log.Fatalf("Error running 'go mod graph': %s", err)
    		}
    	} else {
    		log.Fatalf("Usage: %s dependencies.json", os.Args[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. pkg/bootstrap/instance_test.go

    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/compressor/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/router/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    	_ "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/generate/generate.go

    	"cmd/go/internal/cfg"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/str"
    	"cmd/go/internal/work"
    )
    
    var CmdGenerate = &base.Command{
    	Run:       runGenerate,
    	UsageLine: "go generate [-run regexp] [-n] [-v] [-x] [build flags] [file.go... | packages]",
    	Short:     "generate Go files by processing source",
    	Long: `
    Generate runs commands described by directives within existing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/net/http/pprof/pprof.go

    //
    // Use the pprof tool to look at the heap profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/heap
    //
    // Or to look at a 30-second CPU profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/profile?seconds=30
    //
    // Or to look at the goroutine blocking profile, after calling
    // [runtime.SetBlockProfileRate] in your program:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/block
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/gcimporter_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gcimporter_test
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    
    	"go/ast"
    	"go/build"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"go/types"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top