Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for file (0.16 sec)

  1. src/cmd/covdata/doc.go

    // Copyright 2022 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.
    
    /*
    Covdata is a program for manipulating and generating reports
    from 2nd-generation coverage testing output files, those produced
    from running applications or integration tests. E.g.
    
    	$ mkdir ./profiledir
    	$ go build -cover -o myapp.exe .
    	$ GOCOVERDIR=./profiledir ./myapp.exe <arguments>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. src/cmd/asm/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Asm, typically invoked as “go tool asm”, assembles the source file into an object
    file named for the basename of the argument source file with a .o suffix. The
    object file can then be combined with other objects into a package archive.
    
    # Command Line
    
    Usage:
    
    	go tool asm [flags] file
    
    The specified file must be a Go assembly file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/internal/osinfo/doc.go

    // Copyright 2022 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 osinfo provides OS metadata.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 08 21:35:38 UTC 2022
    - 215 bytes
    - Viewed (0)
  4. src/cmd/link/doc.go

    	-g
    		Disable Go package data checks.
    	-importcfg file
    		Read import configuration from file.
    		In the file, set packagefile, packageshlib to specify import resolution.
    	-installsuffix suffix
    		Look for packages in $GOROOT/pkg/$GOOS_$GOARCH_suffix
    		instead of $GOROOT/pkg/$GOOS_$GOARCH.
    	-k symbol
    		Set field tracking symbol. Use this flag when GOEXPERIMENT=fieldtrack is set.
    	-libgcc file
    		Set name of compiler support library.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/doc/doc.go

    // Copyright 2015 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 doc implements the “go doc” command.
    package doc
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"context"
    )
    
    var CmdDoc = &base.Command{
    	Run:         runDoc,
    	UsageLine:   "go doc [doc flags] [package|[package.]symbol[.methodOrField]]",
    	CustomFlags: true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/gofmt/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Gofmt formats Go programs.
    It uses tabs for indentation and blanks for alignment.
    Alignment assumes that an editor is using a fixed-width font.
    
    Without an explicit path, it processes the standard input.  Given a file,
    it operates on that file; given a directory, it operates on all .go files in
    that directory, recursively.  (Files starting with a period are ignored.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/fix/doc.go

    directory tree.  When fix rewrites a file, it prints a line to standard
    error giving the name of the file and the rewrite applied.
    
    If the -diff flag is set, no files are rewritten. Instead fix prints
    the differences a rewrite would introduce.
    
    The -r flag restricts the set of rewrites considered to those in the
    named list.  By default fix considers all known rewrites.  Fix's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/doc.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 ppc64 implements a PPC64 assembler that assembles Go asm into
    the corresponding PPC64 instructions as defined by the Power ISA 3.0B.
    
    This document provides information on how to write code in Go assembler
    for PPC64, focusing on the differences between Go and PPC64 assembly language.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/buildid/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Buildid displays or updates the build ID stored in a Go package or binary.
    
    Usage:
    
    	go tool buildid [-w] file
    
    By default, buildid prints the build ID found in the named file.
    If the -w option is given, buildid rewrites the build ID found in
    the file to accurately record a content hash of the file.
    
    This tool is only intended for use by the go command or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 558 bytes
    - Viewed (0)
  10. src/cmd/cgo/doc.go

    	-dynimport file
    		Write list of symbols imported by file. Write to
    		-dynout argument or to standard output. Used by go
    		build when building a cgo package.
    	-dynlinker
    		Write dynamic linker as part of -dynimport output.
    	-dynout file
    		Write -dynimport output to file.
    	-dynpackage package
    		Set Go package for -dynimport output.
    	-exportheader file
    		If there are any exported functions, write the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
Back to top