Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for GO (0.04 sec)

  1. src/cmd/internal/obj/go.go

    // 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 obj
    
    // go-specific code shared across loaders (5l, 6l, 8l).
    
    func Nopout(p *Prog) {
    	p.As = ANOP
    	p.Scond = 0
    	p.From = Addr{}
    	p.RestArgs = nil
    	p.Reg = 0
    	p.To = Addr{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 21:05:03 UTC 2017
    - 342 bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/go.go

    // 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.
    
    // go-specific code shared across loaders (5l, 6l, 8l).
    
    package ld
    
    import (
    	"cmd/internal/bio"
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"encoding/json"
    	"fmt"
    	"io"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:48:30 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/internal/archive/testdata/mycgo/go.go

    Cherry Zhang <******@****.***> 1596151068 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 10 22:16:32 UTC 2020
    - 62 bytes
    - Viewed (0)
  4. go.sum

    cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU=
    cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY=
    cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc=
    cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0=
    cloud.google.com/go v0.110.7 h1:rJyC7nWRg2jWGZ4wSJ5nY65GTdYJkg0cd/uXb+ACI6o=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
  5. src/cmd/distpack/test.go

    	{name: "go/bin", exclude: true},
    	{name: "go/pkg", exclude: true},
    	{name: "go/src/cmd/dist/dist", exclude: true},
    	{name: "go/src/cmd/dist/dist.exe", exclude: true},
    
    	{name: "go/bin/go", goos: "linux"},
    	{name: "go/bin/go", goos: "darwin"},
    	{name: "go/bin/go", goos: "windows", exclude: true},
    	{name: "go/bin/go.exe", goos: "windows"},
    	{name: "go/bin/gofmt", goos: "linux"},
    	{name: "go/bin/gofmt", goos: "darwin"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. go.mod

    	github.com/go-asn1-ber/asn1-ber v1.5.7 // indirect
    	github.com/go-jose/go-jose/v4 v4.0.2 // indirect
    	github.com/go-logr/logr v1.4.2 // indirect
    	github.com/go-logr/stdr v1.2.2 // indirect
    	github.com/go-ole/go-ole v1.3.0 // indirect
    	github.com/go-openapi/analysis v0.23.0 // indirect
    	github.com/go-openapi/errors v0.22.0 // indirect
    	github.com/go-openapi/jsonpointer v0.21.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/crypto/internal/bigmod/_asm/go.sum

    golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
    golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 16:19:43 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/telemetrystats/telemetrystats.go

    	if !modload.WillBeEnabled() {
    		telemetry.Inc("go/mode:gopath")
    	} else if workfile := modload.FindGoWork(base.Cwd()); workfile != "" {
    		telemetry.Inc("go/mode:workspace")
    	} else {
    		telemetry.Inc("go/mode:module")
    	}
    	telemetry.Inc("go/platform/target/goos:" + cfg.Goos)
    	telemetry.Inc("go/platform/target/goarch:" + cfg.Goarch)
    	switch cfg.Goarch {
    	case "386":
    		telemetry.Inc("go/platform/target/go386:" + cfg.GO386)
    	case "amd64":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/covdata/doc.go

    	$ go tool covdata textfmt -i=profiledir -o=cov.txt
    	$ head cov.txt
    	mode: set
    	cov-example/p/p.go:12.22,13.2 0 0
    	cov-example/p/p.go:15.31,16.2 1 0
    	cov-example/p/p.go:16.3,18.3 0 0
    	cov-example/p/p.go:19.3,21.3 0 0
    	...
    	$ go tool cover -html=cov.txt
    	$
    
    5. Merge profiles together:
    
    	$ go tool covdata merge -i=indir1,indir2 -o=outdir -modpaths=github.com/go-delve/delve
    	$
    
    6. Subtract one profile from another
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/go/types/stdlib_test.go

    		"issue6889.go",   // gc-specific test
    		"issue11362.go",  // canonical import path check
    		"issue16369.go",  // go/types handles this correctly - not an issue
    		"issue18459.go",  // go/types doesn't check validity of //go:xxx directives
    		"issue18882.go",  // go/types doesn't check validity of //go:xxx directives
    		"issue20529.go",  // go/types does not have constraints on stack size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top