Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for making (0.65 sec)

  1. src/cmd/internal/pgo/serialize_test.go

    	// consume bytes from b to act as our edge data.
    	r := bytes.NewReader(b)
    	consumeString := func() (string, bool) {
    		// First byte: how many bytes to read for this string? We only
    		// use a byte to avoid making humongous strings.
    		length, err := r.ReadByte()
    		if err != nil {
    			return "", false
    		}
    		if length == 0 {
    			return "", false
    		}
    
    		b := make([]byte, length)
    		_, err = r.Read(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/complit.go

    					// When doing static initialization, init statements may contain dynamic
    					// expression, which will be initialized later, causing liveness analysis
    					// confuses about variables lifetime. So making sure those expressions
    					// are ordered correctly here. See issue #52673.
    					orderBlock(&sinit, map[string][]*ir.Name{})
    					typecheck.Stmts(sinit)
    					walkStmtList(sinit)
    				}
    				init.Append(sinit...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/compile.go

    	{name: "addressing modes", fn: addressingModes, required: false},
    	{name: "late lower", fn: lateLower, required: true},
    	{name: "lowered deadcode for cse", fn: deadcode}, // deadcode immediately before CSE avoids CSE making dead values live again
    	{name: "lowered cse", fn: cse},
    	{name: "elim unread autos", fn: elimUnreadAutos},
    	{name: "tighten tuple selectors", fn: tightenTupleSelectors, required: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/func.go

    	// from another package is imported and inlined.
    	Dcl     []*Name
    	HaveDcl bool // whether we've loaded Dcl
    
    	// Function properties, encoded as a string (these are used for
    	// making inlining decisions). See cmd/compile/internal/inline/inlheur.
    	Properties string
    
    	// CanDelayResults reports whether it's safe for the inliner to delay
    	// initializing the result parameters until immediately before the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/edit.go

    it does not look up information about the modules involved.
    By default, edit reads and writes the go.mod file of the main module,
    but a different target file can be specified after the editing flags.
    
    The editing flags specify a sequence of editing operations.
    
    The -fmt flag reformats the go.mod file without making other changes.
    This reformatting is also implied by any other modifications that use or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //		library that will be used when building with the -linkshared
    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    //		Build the listed main packages and everything they import into
    //		executables. Packages not named main are ignored.
    //
    //	-buildmode=pie
    //		Build the listed main packages and everything they import into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    	return rs.direct[path]
    }
    
    // A ModuleGraph represents the complete graph of module dependencies
    // of a main module.
    //
    // If the main module supports module graph pruning, the graph does not include
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/query.go

    	}
    
    	if search.IsMetaPackage(e.Pattern) || strings.Contains(e.Pattern, "...") {
    		return fmt.Sprintf("pattern %s matches package %s in the main module, so can't request version %s", e.Pattern, e.Packages[0], e.Query)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modindex/build.go

    			di.CgoPkgConfig = append(di.CgoPkgConfig, args...)
    		default:
    			return fmt.Errorf("%s: invalid #cgo verb: %s", filename, orig)
    		}
    	}
    	return nil
    }
    
    // expandSrcDir expands any occurrence of ${SRCDIR}, making sure
    // the result is safe for the shell.
    func expandSrcDir(str string, srcdir string) (string, bool) {
    	// "\" delimited paths cause safeCgoName to fail
    	// so convert native paths with a different delimiter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/fetch.go

    	}
    
    	// Make a best-effort attempt to acquire the side lock, only to exclude
    	// previous versions of the 'go' command from making simultaneous edits.
    	if unlock, err := SideLock(ctx); err == nil {
    		defer unlock()
    	}
    
    	err := lockedfile.Transform(GoSumFile, func(data []byte) ([]byte, error) {
    		tidyGoSum := tidyGoSum(data, keep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top