Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for tiempo (0.06 sec)

  1. src/cmd/go/internal/fsys/fsys_test.go

    	"reflect"
    	"testing"
    )
    
    // initOverlay resets the overlay state to reflect the config.
    // config should be a text archive string. The comment is the overlay config
    // json, and the files, in the archive are laid out in a temp directory
    // that cwd is set to.
    func initOverlay(t *testing.T, config string) {
    	t.Helper()
    
    	// Create a temporary directory and chdir to it.
    	prevwd, err := os.Getwd()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/cache.go

    	// Note: We expect that for one reason or another it may happen
    	// that repeating an action produces a different output hash
    	// (for example, if the output contains a time stamp or temp dir name).
    	// While not ideal, this is also not a correctness problem, so we
    	// don't make a big deal about it. In particular, we leave the action
    	// cache entries writable specifically so that they can be overwritten.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/builtin.go

    		init.Append(typecheck.Stmt(nif))
    
    		t = types.NewArray(t.Elem(), i) // [r]T
    		var_ := typecheck.TempAt(base.Pos, ir.CurFunc, t)
    		appendWalkStmt(init, ir.NewAssignStmt(base.Pos, var_, nil))  // zero temp
    		r := ir.NewSliceExpr(base.Pos, ir.OSLICE, var_, nil, l, nil) // arr[:l]
    		// The conv is necessary in case n.Type is named.
    		return walkExpr(typecheck.Expr(typecheck.Conv(r, n.Type())), init)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/s390x/ssa.go

    		p.Reg = v.Args[0].Reg()
    	case ssa.OpS390XDIVD, ssa.OpS390XDIVW,
    		ssa.OpS390XDIVDU, ssa.OpS390XDIVWU,
    		ssa.OpS390XMODD, ssa.OpS390XMODW,
    		ssa.OpS390XMODDU, ssa.OpS390XMODWU:
    
    		// TODO(mundaym): use the temp registers every time like x86 does with AX?
    		dividend := v.Args[0].Reg()
    		divisor := v.Args[1].Reg()
    
    		// CPU faults upon signed overflow, which occurs when most
    		// negative int is divided by -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    				inputs:   []regMask{buildReg("R20")},
    				clobbers: buildReg("R20"),
    			},
    			clobberFlags:   true,
    			typ:            "Mem",
    			faultOnNilArg0: true,
    			unsafePoint:    true,
    		},
    
    		// R31 is temp register
    		// Loop code:
    		//	MOVD len/32,R31		set up loop ctr
    		//	MOVD R31,CTR
    		//	MOVD $16,R31		index register
    		// loop:
    		//	LXVD2X (R0)(R4),VS32
    		//	LXVD2X (R31)(R4),VS33
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top