Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for exports (0.74 sec)

  1. src/cmd/doc/main.go

    		log.Printf("too many periods in symbol specification")
    		usage()
    	}
    	symbol = elem[0]
    	return
    }
    
    // isExported reports whether the name is an exported identifier.
    // If the unexported flag (-u) is true, isExported returns true because
    // it means that we treat the name as if it is exported.
    func isExported(name string) bool {
    	return unexported || token.IsExported(name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/main.go

    	flag.Var(&flagExtldflags, "extldflags", "pass `flags` to external linker")
    	flag.Var(&flagW, "w", "disable DWARF generation")
    }
    
    // Flags used by the linker. The exported flags are used by the architecture-specific packages.
    var (
    	flagBuildid = flag.String("buildid", "", "record `id` as Go toolchain build id")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/main.go

    	fpregmask          regMask
    	fp32regmask        regMask
    	fp64regmask        regMask
    	specialregmask     regMask
    	framepointerreg    int8
    	linkreg            int8
    	generic            bool
    	imports            []string
    }
    
    type opData struct {
    	name              string
    	reg               regInfo
    	asm               string
    	typ               string // default result type
    	aux               string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // targets implement this protocol. We plan to publish that package
    // in a non-internal location after finalizing its API.
    //
    // Bisect starts by running the target with no changes enabled and then
    // with all changes enabled. It expects the former to succeed and the latter to fail,
    // and then it will search for the minimal set of changes that must be enabled
    // to provoke the failure. If the situation is reversed – the target fails with no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  5. misc/go_android_exec/main.go

    		}
    	}()
    	cmd := `export TMPDIR="` + deviceGotmp + `"` +
    		`; export GOROOT="` + deviceGoroot + `"` +
    		`; export GOPATH="` + deviceGopath + `"` +
    		`; export CGO_ENABLED=0` +
    		`; export GOPROXY=` + os.Getenv("GOPROXY") +
    		`; export GOCACHE="` + deviceRoot + `/gocache"` +
    		`; export PATH="` + deviceGoroot + `/bin":$PATH` +
    		`; export HOME="` + deviceRoot + `/home"` +
    		`; cd "` + deviceCwd + `"` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top