Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for fixed (0.16 sec)

  1. doc/next/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.23 {#introduction}
    
    **Go 1.23 is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  2. src/cmd/fix/main.go

    		}
    		file = newFile
    		fmt.Fprintf(&fixlog, " fmt")
    	}
    
    	// Apply all fixes to file.
    	newFile := file
    	fixed := false
    	for _, fix := range fixes {
    		if allowed != nil && !allowed[fix.name] {
    			continue
    		}
    		if fix.disabled && !force[fix.name] {
    			continue
    		}
    		if fix.f(newFile) {
    			fixed = true
    			fmt.Fprintf(&fixlog, " %s", fix.name)
    
    			// AST changed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. doc/next/9-todo.md

    CL 561935 - crypto CL that used purego tag and mentioned accepted-but-not-implemented proposal https://go.dev/issue/23172 to document purego tag; doesn't need a release note
    CL 568340 - fixed a spurious race in time.Ticker.Reset (added via accepted proposal https://go.dev/issue/33184), doesn't seem to need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. doc/initial/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/edit.go

    // unpruning the selected version of each module path that is a root in rs or in
    // the roots slice until the graph reaches a fixed point.
    //
    // The graph is guaranteed to converge to a fixed point because unpruning a
    // module version can only increase (never decrease) the selected versions,
    // and the set of versions for each module is finite.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    //
    // The VersionFixer sets 'fixed' if it ever returns a non-canonical version.
    func fixVersion(ctx context.Context, fixed *bool) modfile.VersionFixer {
    	return func(path, vers string) (resolved string, err error) {
    		defer func() {
    			if err == nil && resolved != vers {
    				*fixed = true
    			}
    		}()
    
    		// Special case: remove the old -gopkgin- hack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/doc/main.go

    	if slash >= 0 {
    		// build.Import should always include the path in its error message,
    		// and we should avoid repeating it. Unfortunately, build.Import doesn't
    		// return a structured error. That can't easily be fixed, since it
    		// invokes 'go list' and returns the error text from the loaded package.
    		// TODO(golang.org/issue/34750): load using golang.org/x/tools/go/packages
    		// instead of go/build.
    		importErrStr := importErr.Error()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/buildid.go

    // named tool (asm, compile, cover, link).
    //
    // It is important that if the tool changes (for example a compiler bug is fixed
    // and the compiler reinstalled), toolID returns a different string, so that old
    // package archives look stale and are rebuilt (with the fixed compiler).
    // This suggests using a content hash of the tool binary, as stored in the build ID.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	// to match StaticCall's 32 bit arg size limit.
    	// TODO(drchase,josharian): could the arg size limit be bundled into the rules for CallOff?
    
    	// Before lowering, LECalls receive their fixed inputs (first), memory (last),
    	// and a variable number of input values in the middle.
    	// They produce a variable number of result values.
    	// These values are not necessarily "SSA-able"; they can be too large,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    	}
    
    	return true
    }
    
    // The result of implicitstar MUST be assigned back to n, e.g.
    //
    //	n.Left = implicitstar(n.Left)
    func implicitstar(n ir.Node) ir.Node {
    	// insert implicit * if needed for fixed array
    	t := n.Type()
    	if t == nil || !t.IsPtr() {
    		return n
    	}
    	t = t.Elem()
    	if t == nil {
    		return n
    	}
    	if !t.IsArray() {
    		return n
    	}
    	star := ir.NewStarExpr(base.Pos, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top