Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 466 for are (0.05 sec)

  1. doc/asm.html

    it is a distinct program, so there are some differences.
    One is in constant evaluation.
    Constant expressions in the assembler are parsed using Go's operator
    precedence, not the C-like precedence of the original.
    Thus <code>3&amp;1&lt;&lt;2</code> is 4, not 0—it parses as <code>(3&amp;1)&lt;&lt;2</code>
    not <code>3&amp;(1&lt;&lt;2)</code>.
    Also, constants are always evaluated as 64-bit unsigned integers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/README

    This directory holds small tests and benchmarks of code
    generated by the compiler.  This code is not for importing,
    and the tests are intended to verify that specific optimizations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 206 bytes
    - Viewed (0)
  3. doc/next/6-stdlib/2-unique.md

    Any value of comparable type may be canonicalized with the new
    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //
    // The build flags are shared by the build, clean, get, install, list, run,
    // and test commands:
    //
    //	-C dir
    //		Change to dir before running the command.
    //		Any files named on the command line are interpreted after
    //		changing directories.
    //		If used, this flag must be the first one in the command line.
    //	-a
    //		force rebuilding of packages that are already up-to-date.
    //	-n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/inline/inlheur/function_properties.go

    // FuncProps describes a set of function or method properties that may
    // be useful for inlining heuristics. Here 'Flags' are properties that
    // we think apply to the entire function; 'RecvrParamFlags' are
    // properties of specific function params (or the receiver), and
    // 'ResultFlags' are things properties we think will apply to values
    // of specific results. Note that 'ParamFlags' includes and entry for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. doc/go_mem.html

    published in PLDI 2008.
    The definition of data-race-free programs and the guarantee of sequential consistency
    for race-free programs are equivalent to the ones in that work.
    </p>
    
    <p>
    The memory model describes the requirements on program executions,
    which are made up of goroutine executions,
    which in turn are made up of memory operations.
    </p>
    
    <p>
    A <i>memory operation</i> is modeled by four details:
    </p>
    <ul>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  7. src/README.vendor

    Vendoring in std and cmd
    ========================
    
    The Go command maintains copies of external packages needed by the
    standard library in the src/vendor and src/cmd/vendor directories.
    
    There are two modules, std and cmd, defined in src/go.mod and
    src/cmd/go.mod. When a package outside std or cmd is imported
    by a package inside std or cmd, the import path is interpreted
    as if it had a "vendor/" prefix. For example, within "crypto/tls",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_predicates.go

    func Identical(x, y Type) bool {
    	var c comparer
    	return c.identical(x, y, nil)
    }
    
    // IdenticalIgnoreTags reports whether x and y are identical types if tags are ignored.
    // Receivers of [Signature] types are ignored.
    func IdenticalIgnoreTags(x, y Type) bool {
    	var c comparer
    	c.ignoreTags = true
    	return c.identical(x, y, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    // and all requested packages are in "all", then loading completes in a single
    // iteration.
    // TODO(bcmills): We should also be able to load in a single iteration if the
    // requested packages all come from modules that are themselves tidy, regardless
    // of whether those packages are in "all". Today, that requires two iterations
    // if those packages are not found in existing dependencies of the main module.
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/go/internal/imports/build.go

    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    //
    //	if GOOS=android, then files with GOOS=linux are also matched.
    //	if GOOS=illumos, then files with GOOS=solaris are also matched.
    //	if GOOS=ios, then files with GOOS=darwin are also matched.
    //
    // If tags["*"] is true, then MatchFile will consider all possible
    // GOOS and GOARCH to be available and will consequently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top