Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for if (0.08 sec)

  1. src/cmd/asm/doc.go

    The assembler uses mostly the same syntax for all architectures,
    the main variation having to do with addressing modes. Input is
    run through a simplified C preprocessor that implements #include,
    #define, #ifdef/endif, but not #if or ##.
    
    For more information, see https://golang.org/doc/asm.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:46:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/doc/doc.go

    In all forms, when matching symbols, lower-case letters in the argument match
    either case but upper-case letters match exactly. This means that there may be
    multiple matches of a lower-case argument in a package if different symbols have
    different cases. If this occurs, documentation for all matches is printed.
    
    Examples:
    	go doc
    		Show documentation for current package.
    	go doc Foo
    		Show documentation for Foo in the current package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. src/cmd/link/doc.go

    	-V
    		Print linker version and exit.
    	-X importpath.name=value
    		Set the value of the string variable in importpath named name to value.
    		This is only effective if the variable is declared in the source code either uninitialized
    		or initialized to a constant string expression. -X will not work if the initializer makes
    		a function call or refers to other variables.
    		Note that before Go 1.5 this option took two separate arguments.
    	-asan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/cmd/gofmt/doc.go

    	-s
    		Try to simplify code (after applying the rewrite rule, if any).
    	-w
    		Do not print reformatted sources to standard output.
    		If a file's formatting is different from gofmt's, overwrite it
    		with gofmt's version. If an error occurred during overwriting,
    		the original file is restored from an automatic backup.
    
    Debugging support:
    
    	-cpuprofile filename
    		Write cpu profile to the specified file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  5. src/cmd/fix/doc.go

    Without an explicit path, fix reads standard input and writes the
    result to standard output.
    
    If the named path is a file, fix rewrites the named files in place.
    If the named path is a directory, fix rewrites all .go files in that
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/doc.go

    PPC64 in Go defined many opcodes that are different from PPC64 opcodes, but
    updates to the Go assembly language used mnemonics that are mostly similar if not
    identical to the PPC64 mneumonics, such as VMX and VSX instructions. Not all detail
    is included here; refer to the Power ISA document if interested in more detail.
    
    Starting with Go 1.15 the Go objdump supports the -gnu option, which provides a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/cgo/doc.go

    	y.cgo1.go       # for gc
    	_cgo_gotypes.go # for gc
    	_cgo_import.go  # for gc (if -dynout _cgo_import.go)
    	x.cgo2.c        # for gcc
    	y.cgo2.c        # for gcc
    	_cgo_defun.c    # for gcc (if -gccgo)
    	_cgo_export.c   # for gcc
    	_cgo_export.h   # for gcc
    	_cgo_main.c     # for gcc
    	_cgo_flags      # for build tool (if -gccgo)
    
    The file x.cgo1.go is a copy of x.go with the import "C" removed and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  8. src/cmd/pack/doc.go

    valid archive file, which will be cleared before adding new entries. It
    is an error if the file exists but is not an archive.
    
    For the p, t, and x commands, listing no names on the command line
    causes the operation to apply to all files in the archive.
    
    In contrast to Unix ar, the r operation always appends to the archive,
    even if a file with the given name already exists in the archive. In this way
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/buildid/doc.go

    /*
    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
    other build systems.
    */
    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/internal/obj/arm64/doc.go

    Examples:
    
    	PCALIGN $16
    	MOVD $2, R0          // This instruction is aligned with 16 bytes.
    	PCALIGN $1024
    	MOVD $3, R1          // This instruction is aligned with 1024 bytes.
    
    PCALIGN also changes the function alignment. If a function has one or more PCALIGN directives,
    its address will be aligned to the same or coarser boundary, which is the maximum of all the
    alignment values.
    
    In the following example, the function Add is aligned with 128 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top