Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for starting (1.03 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "EXTRconst", argLength: 2, reg: gp21, asm: "EXTR", aux: "Int64"},   // extract 64 bits from arg0:arg1 starting at lsb auxInt, auxInt should be in the range 0 to 63.
    		{name: "EXTRWconst", argLength: 2, reg: gp21, asm: "EXTRW", aux: "Int64"}, // extract 32 bits from arg0[31:0]:arg1[31:0] starting at lsb auxInt and zero top 32 bits, auxInt should be in the range 0 to 31.
    
    		// comparisons
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	// false until the block has been processed at least once. This
    	// affects how the merge is done; the goal is to maximize sharing
    	// and avoid allocation.
    	everProcessed bool
    }
    
    // A liveSlot is a slot that's live in loc at entry/exit of a block.
    type liveSlot struct {
    	VarLoc
    }
    
    func (ls *liveSlot) String() string {
    	return fmt.Sprintf("0x%x.%d.%d", ls.Registers, ls.stackOffsetValue(), int32(ls.StackOffset)&1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		// there are at least 64 bytes to clear, so add
    		// that to the remainder to generate the code
    		// to clear those doublewords
    		if ctr == 1 {
    			rem += 64
    		}
    
    		// Clear the remainder starting at offset zero
    		offset := int64(0)
    
    		if rem >= 16 && ctr <= 1 {
    			// If the XXLXOR hasn't already been
    			// generated, do it here to initialize
    			// VS32 (V0) to 0.
    			p := s.Prog(ppc64.AXXLXOR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    	}
    
    	if rs.maxRootVersion["go"] == "" {
    		panic(`newRequirements called without a "go" version`)
    	}
    	return rs
    }
    
    // String returns a string describing the Requirements for debugging.
    func (rs *Requirements) String() string {
    	return fmt.Sprintf("{%v %v}", rs.pruning, rs.rootModules)
    }
    
    // initVendor initializes rs.graph from the given list of vendored module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/regalloc.go

    // TODO: regMask -> regSet?
    type regMask uint64
    
    func (m regMask) String() string {
    	s := ""
    	for r := register(0); m != 0; r++ {
    		if m>>r&1 == 0 {
    			continue
    		}
    		m &^= regMask(1) << r
    		if s != "" {
    			s += " "
    		}
    		s += fmt.Sprintf("r%d", r)
    	}
    	return s
    }
    
    func (s *regAllocState) RegMaskString(m regMask) string {
    	str := ""
    	for r := register(0); m != 0; r++ {
    		if m>>r&1 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // if dir is in the module cache copy of a module in our build list.
    func pathInModuleCache(ctx context.Context, dir string, rs *Requirements) string {
    	tryMod := func(m module.Version) (string, bool) {
    		if gover.IsToolchain(m.Path) {
    			return "", false
    		}
    		var root string
    		var err error
    		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
    			root = repl.Path
    			if !filepath.IsAbs(root) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    		return
    	}
    
    	// determine token string
    	var tok string
    	switch p.tok {
    	case _Name:
    		tok = "name " + p.lit
    	case _Semi:
    		tok = p.lit
    	case _Literal:
    		tok = "literal " + p.lit
    	case _Operator:
    		tok = p.op.String()
    	case _AssignOp:
    		tok = p.op.String() + "="
    	case _IncOp:
    		tok = p.op.String()
    		tok += tok
    	default:
    		tok = tokstring(p.tok)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	// channel-binding.
    	clientFinished [12]byte
    	serverFinished [12]byte
    
    	// clientProtocol is the negotiated ALPN protocol.
    	clientProtocol string
    
    	// input/output
    	in, out   halfConn
    	rawInput  bytes.Buffer // raw input, starting with a record header
    	input     bytes.Reader // application data waiting to be read, from rawInput.Next
    	hand      bytes.Buffer // handshake data waiting to be read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        private static final String EXT_CLASS_PATH = "maven.ext.class.path";
    
        private static final String EXTENSIONS_FILENAME = "extensions.xml";
    
        private static final String MVN_EXTENSIONS_FILENAME = ".mvn/" + EXTENSIONS_FILENAME;
    
        private static final String MVN_MAVEN_CONFIG = ".mvn/maven.config";
    
        public static final String STYLE_COLOR_PROPERTY = "style.color";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                String fieldName,
                ModelProblemCollector problems,
                Severity severity,
                Version version,
                String string,
                String sourceHint,
                InputLocationTracker tracker) {
            if (string == null || string.isEmpty()) {
                return true;
            }
    
            if ("true".equalsIgnoreCase(string) || "false".equalsIgnoreCase(string)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
Back to top