Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 462 for original (0.23 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    	// It's fragile and error-prone. We did a trick by reusing the existing rules
    	// in generic rules for compile-time evaluation. But generic rules rewrite
    	// original value, this behavior is undesired, because the lattice of values
    	// may change multiple times, once it was rewritten, we lose the opportunity
    	// to change it permanently, which can lead to errors. For example, We cannot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/internal/testenv/testenv.go

    	"errors"
    	"flag"
    	"fmt"
    	"internal/cfg"
    	"internal/goarch"
    	"internal/platform"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"testing"
    )
    
    // Save the original environment during init for use in checks. A test
    // binary may modify its environment before calling HasExec to change its
    // behavior (such as mimicking a command-line tool), and that modified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/runtime/string.go

    	}
    	return
    }
    
    // slicebytetostringtmp returns a "string" referring to the actual []byte bytes.
    //
    // Callers need to ensure that the returned string will not be used after
    // the calling goroutine modifies the original slice or synchronizes with
    // another goroutine.
    //
    // The function is only called when instrumenting
    // and otherwise intrinsified by the compiler.
    //
    // Some internal compiler optimizations use this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/runtime/asm_mips64x.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall(SB),NOSPLIT,$0-20
    	MOVV	fn+0(FP), R25
    	MOVV	arg+8(FP), R4
    
    	MOVV	R29, R3	// save original stack pointer
    	MOVV	g, R2
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:45:59 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/looprotate.go

    		after[p.ID] = []*Block{b}
    		for {
    			nextIdx := idToIdx[b.ID] + 1
    			if nextIdx >= len(f.Blocks) { // reached end of function (maybe impossible?)
    				break
    			}
    			nextb := f.Blocks[nextIdx]
    			if nextb == p { // original loop predecessor is next
    				break
    			}
    			if loopnest.b2l[nextb.ID] == loop {
    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/action.go

    	fmt.Fprintf(h, "input %q\n", b.fileHash(input))
    
    	return h.Sum()
    }
    
    // pgoActor implements the Actor interface for preprocessing PGO profiles.
    type pgoActor struct {
    	// input is the path to the original pprof profile.
    	input string
    }
    
    func (p *pgoActor) Act(b *Builder, ctx context.Context, a *Action) error {
    	if b.useCache(a, b.pgoActionID(p.input), a.Target, !b.IsCmdList) || b.IsCmdList {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  7. src/runtime/asm_arm64.s

    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall(SB),NOSPLIT,$0-20
    	MOVD	fn+0(FP), R1
    	MOVD	arg+8(FP), R0
    
    	MOVD	RSP, R2		// save original stack pointer
    	CBZ	g, nosave
    	MOVD	g, R4
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/modfile_flag.txt

    env OLD_GOFLAGS=$GOFLAGS
    env GOFLAGS=-modfile=go.gen.mod
    go generate -modfile=go.alt.mod .
    env GOFLAGS=$OLD_GOFLAGS
    grep example.com/exclude go.gen.mod
    ! grep example.com/exclude go.alt.mod
    
    
    # The original files should not have been modified.
    cmp go.mod go.mod.orig
    cmp go.sum go.sum.orig
    
    
    # If the alternate mod file does not have a ".mod" suffix, an error
    # should be reported.
    cp go.alt.mod goaltmod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. src/encoding/asn1/asn1.go

    		ret, err = time.Parse(formatStr, s)
    	}
    	if err != nil {
    		return
    	}
    
    	if serialized := ret.Format(formatStr); serialized != s {
    		err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
    		return
    	}
    
    	if ret.Year() >= 2050 {
    		// UTCTime only encodes times prior to 2050. See https://tools.ietf.org/html/rfc5280#section-4.1.2.5.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  10. src/runtime/asm_riscv64.s

    // Call fn(arg) on the scheduler stack,
    // aligned appropriately for the gcc ABI.
    // See cgocall.go for more details.
    TEXT ·asmcgocall(SB),NOSPLIT,$0-20
    	MOV	fn+0(FP), X5
    	MOV	arg+8(FP), X10
    
    	MOV	X2, X8	// save original stack pointer
    	MOV	g, X9
    
    	// Figure out if we need to switch to m->g0 stack.
    	// We get called to create new OS threads too, and those
    	// come in on the m->g0 stack already. Or we might already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
Back to top