Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 188 for Are (0.09 sec)

  1. src/cmd/compile/internal/types2/decl.go

    	// A dependency on a grey object indicates a cycle which may or may not be
    	// valid.
    	//
    	// When objects turn grey, they are pushed on the object path (a stack);
    	// they are popped again when they turn black. Thus, if a grey object (a
    	// cycle) is encountered, it is on the object path, and all the objects
    	// it depends on are the remaining objects on that path. Color encoding
    	// is such that the color value of a grey object indicates the index of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/edit.go

    //     needed to satisfy (1) and (2).
    //
    // Generally, the module versions in mustSelect are due to the module or a
    // package within the module matching an explicit command line argument to 'go
    // get', and the versions in tryUpgrade are transitive dependencies that are
    // either being upgraded by 'go get -u' or being added to satisfy some
    // otherwise-missing package import.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    cache for fuzz testing. The fuzzing engine caches files that expand
    code coverage, so removing them may make fuzzing less effective until
    new inputs are found that provide the same coverage. These files are
    distinct from those stored in testdata directory; clean does not remove
    those files.
    
    For more about build flags, see 'go help build'.
    
    For more about specifying packages, see 'go help packages'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    To improve efficiency and scalability, large programs are routinely
    built using separate compilation: units of the program are compiled
    separately, and recompiled only when one of their dependencies changes;
    independent modules may be compiled in parallel. The same technique may
    be applied to static analyses, for the same benefits. Such analyses are
    described as "modular".
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// But they are used for generating more efficient code on certain modern machines, with run-time CPU feature detection.
    	// On ARM64, these are used when the LSE hardware feature is avaliable (either known at compile time or detected at runtime). If LSE is not avaliable,
    	// then the basic atomic oprations are used instead.
    	// These are not currently used on any other platform.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // # Unicode Restrictions
    //
    // Today, paths are disallowed from using Unicode.
    //
    // Although paths are currently disallowed from using Unicode,
    // we would like at some point to allow Unicode letters as well, to assume that
    // file systems and URLs are Unicode-safe (storing UTF-8), and apply
    // the !-for-uppercase convention for escaping them in the file system.
    // But there are at least two subtle considerations.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore.go

    // license that can be found in the LICENSE file.
    
    package ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    )
    
    // dse does dead-store elimination on the Function.
    // Dead stores are those which are unconditionally followed by
    // another store to the same location, with no intervening load.
    // This implementation only works within a basic block. TODO: use something more global.
    func dse(f *Func) {
    	var stores []*Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/initorder.go

    	// (the one with the fewest dependencies) and its edges from the graph,
    	// repeatedly, until there are no nodes left.
    	// In a valid Go program, those nodes always have zero dependencies (after
    	// removing all incoming dependencies), otherwise there are initialization
    	// cycles.
    	emitted := make(map[*declInfo]bool)
    	for len(pq) > 0 {
    		// get the next node
    		n := heap.Pop(&pq).(*graphNode)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/pgo_inl_test.go

    	}
    	return out
    }
    
    // testPGOIntendedInlining tests that specific functions are inlined.
    func testPGOIntendedInlining(t *testing.T, dir string, profFile string) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	const pkg = "example.com/pgo/inline"
    
    	want := []string{
    		"(*BS).NS",
    	}
    
    	// The functions which are not expected to be inlined are as follows.
    	wantNot := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    // corresponding object, and that object's type is the (possibly generic) Named
    // type. Declared Named types are identical if and only if their pointers are
    // identical. On the other hand, multiple instantiated Named types may be
    // identical even though their pointers are not identical. One has to use
    // Identical to compare them. For instantiated named types, their obj is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top