Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 88 for initially (0.89 sec)

  1. src/cmd/go/testdata/script/mod_all.txt

    stdout '^example.com/s$'
    stdout '^example.com/t$'
    stdout '^example.com/u$'
    stdout '^example.com/w$'
    ! stdout '^example.com/x$'
    
    -- go.mod --
    module example.com/main
    
    // Note: this go.mod file initially specifies go 1.15,
    // but includes some redundant roots so that it
    // also already obeys the 1.17 lazy loading invariants.
    go 1.15
    
    require (
    	example.com/a v0.1.0
    	example.com/b v0.1.0 // indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    env GO111MODULE=on
    [short] skip
    
    # Initially, we are at v1.0.0 for all dependencies.
    go get
    cp go.mod go.mod.orig
    go list -m all
    stdout '^patch.example.com/direct v1.0.0'
    stdout '^patch.example.com/indirect v1.0.0'
    ! stdout '^patch.example.com/depofdirectpatch'
    
    # @patch should be rejected for modules not already in the build list.
    ! go get patch.example.com/depofdirectpatch@patch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    # scenario may fail to converge.
    
    # The import graph used in this test looks like:
    #
    # m --- x
    #       |
    #       x_test --- y
    #
    # The module dependency graph of m is initially empty.
    # Modules x and y look like:
    #
    # x.1 (provides package x that imports y, but does not depend on module y)
    #
    # x.2-pre (no dependencies, but does not provide package x)
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. doc/next/9-todo.md

    CL 580076 - seemingly internal cmd/go change to propagate module information for accepted proposal https://go.dev/issue/66315; doesn't seem to warrant a release note
    CL 529816 - the 'tests' vet check was initially added to the 'go test' suite per accepted proposal https://go.dev/issue/44251, but the change was rolled back in CL 571695, with no roll forward as of 2024-05-23; nothing to document in Go 1.23 release notes for it at this time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_lazy_new_import.txt

    #
    # lazy ---- a/x ---- b
    #     \
    #      ---- a/y (new) ---- c
    #
    # Where a/x and a/y are disjoint packages, but both contained in module a.
    #
    # The module dependency graph initially looks like:
    #
    # lazy ---- a.1 ---- b.1
    #              \
    #               c.1
    
    
    cp go.mod go.mod.old
    cp lazy.go lazy.go.old
    go mod tidy
    cmp go.mod go.mod.old
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 27 23:27:52 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sccp.go

    //
    //      Top        undefined
    //     / | \
    // .. 1  2  3 ..   constant
    //     \ | /
    //     Bottom      not constant
    //
    // It starts with optimistically assuming that all SSA values are initially Top
    // and then propagates constant facts only along reachable control flow paths.
    // Since some basic blocks are not visited yet, corresponding inputs of phi become
    // Top, we use the meet(phi) to compute its lattice.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteCond_test.go

    // the order of arguments to comparisons", which helps with CSE, are covered.
    // The tedious if-else structures are necessary to ensure all concerned rules
    // and machine code sequences are covered.
    // It's for arm64 initially, please see https://github.com/golang/go/issues/38740
    func TestCondRewrite(t *testing.T) {
    	for _, test := range crTests {
    		t.Run(test.name, test.tf)
    	}
    }
    
    // Profile the aforementioned optimization from two angles:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 01:19:09 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    # scenario may fail to converge.
    
    # The import graph used in this test looks like:
    #
    # m --- w
    # |
    # + --- x
    # |
    # + --- y
    # |
    # + --- z
    #
    # The module dependency graph of m initially contains w.1 (and, by extension,
    # y.2-pre and z.2-pre). This is an arbitrary point in the cycle of possible
    # configurations.
    #
    # w.1 requires y.2-pre and z.2-pre
    # x.1 requires z.2-pre and w.2-pre
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/mvs/mvs.go

    	// requirements of other modules.
    	//
    	// If one of those requirements pulls the version back up above the version
    	// identified by reqs.Previous, then the transitive dependencies of that that
    	// initially-downgraded version should no longer matter — in particular, we
    	// should not add new dependencies on module paths that nothing else in the
    	// updated module graph even requires.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/scoring.go

    // can be adjusted down by some amount due to heuristics, however we
    // won't know whether this is going to happen until much later after
    // the CanInline call. This function returns the amount to relax the
    // budget initially (to allow for a large score adjustment); later on
    // in RevisitInlinability we'll look at each individual function to
    // demote it if needed.
    func BudgetExpansion(maxBudget int32) int32 {
    	if base.Debug.InlBudgetSlack != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top