Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,282 for Sall (0.09 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/msan6.go

    // the stack as uninitialized.
    //
    //go:noinline
    func F1() uintptr {
    	s := C.f()
    	return uintptr(s.a[0])
    }
    
    // F2 allocates a struct on the stack and converts it to an empty interface,
    // which will call msanread and see that the data appears uninitialized.
    //
    //go:noinline
    func F2() interface{} {
    	return C.S{}
    }
    
    func poisonStack(i int) int {
    	if i == 0 {
    		return int(F1())
    	}
    	F1()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/api_predicates.go

    // A collection of symbols is consistent if, for each logical
    // package whose path is P, the creation of those symbols
    // involved at most one call to [NewPackage](P, ...).
    // To ensure consistency, use a single [Importer] for
    // all loaded packages and their dependencies.
    // For more information, see https://github.com/golang/go/issues/57497.
    func Identical(x, y Type) bool {
    	var c comparer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	cache parsedCache
    
    	logFile *os.File
    	logger  *log.Logger
    }
    
    // newUploader creates a new uploader to use for running the upload for the
    // given config.
    //
    // Uploaders should only be used for one call to [uploader.Run].
    func newUploader(rcfg RunConfig) (*uploader, error) {
    	// Determine the upload directory.
    	var dir telemetry.Dir
    	if rcfg.TelemetryDir != "" {
    		dir = telemetry.NewDir(rcfg.TelemetryDir)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/a.out.go

    	ATableFill
    
    	ALast // Sentinel: End of low-level WebAssembly instructions.
    
    	ARESUMEPOINT
    	// ACALLNORESUME is a call which is not followed by a resume point.
    	// It is allowed inside of WebAssembly blocks, whereas obj.ACALL is not.
    	// However, it is not allowed to switch goroutines while inside of an ACALLNORESUME call.
    	ACALLNORESUME
    
    	ARETUNWIND
    
    	AMOVB
    	AMOVH
    	AMOVW
    	AMOVD
    
    	AWORD
    	ALAST
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_pseudo.txt

    go get ...test@d7ae1e4
    go list -m all
    stdout '^github.com/rsc/legacytest v2\.0\.0\+incompatible$'
    
    # v1.2.1-0.pseudo
    go get ...test@d2d4c3e
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.1-0\.\d{14}-d2d4c3ea6623$'
    
    # v1.2.0
    go get ...test@9f6f860
    go list -m all
    stdout '^github.com/rsc/legacytest v1\.2\.0$'
    
    # v1.1.0-pre.0.pseudo
    go get ...test@fb3c628
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/cover.go

    	if testCoverProfile == "" || testC {
    		return
    	}
    	if !filepath.IsAbs(testCoverProfile) {
    		testCoverProfile = filepath.Join(testOutputDir.getAbs(), testCoverProfile)
    	}
    
    	// No mutex - caller's responsibility to call with no racing goroutines.
    	f, err := os.Create(testCoverProfile)
    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    	_, err = fmt.Fprintf(f, "mode: %s\n", cfg.BuildCoverMode)
    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/arch/loong64.go

    	switch word {
    	case "BEQ", "BFPF", "BFPT", "BLTZ", "BGEZ", "BLEZ", "BGTZ", "BLT", "BLTU", "JIRL", "BNE", "BGE", "BGEU", "JMP", "JAL", "CALL":
    		return true
    	}
    	return false
    }
    
    // IsLoong64CMP reports whether the op (as defined by an loong64.A* constant) is
    // one of the CMP instructions that require special handling.
    func IsLoong64CMP(op obj.As) bool {
    	switch op {
    	case loong64.ACMPEQF, loong64.ACMPEQD, loong64.ACMPGEF, loong64.ACMPGED,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/positions.go

    				return MakePos(p.Base(), p.Line(), p.Col()+2)
    			}
    		case *BranchStmt:
    			if n.Label != nil {
    				m = n.Label
    				continue
    			}
    			return n.Pos()
    		case *CallStmt:
    			m = n.Call
    		case *ReturnStmt:
    			if n.Results != nil {
    				m = n.Results
    				continue
    			}
    			return n.Pos()
    		case *IfStmt:
    			if n.Else != nil {
    				m = n.Else
    				continue
    			}
    			m = n.Then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	}
    	return args, nil
    }
    
    // CommandLineToArgv parses a Unicode command line string and sets
    // argc to the number of parsed arguments.
    //
    // The returned memory should be freed using a single call to LocalFree.
    //
    // Note that although the return type of CommandLineToArgv indicates 8192
    // entries of up to 8192 characters each, the actual count of parsed arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/fmahash_test.go

    	output := filepath.Join(tmpdir, "fma.exe")
    	cmd := testenv.Command(t, gocmd, "build", "-o", output, source)
    	// The hash-dependence on file path name is dodged by specifying "all hashes ending in 1" plus "all hashes ending in 0"
    	// i.e., all hashes.  This will print all the FMAs; this test is only interested in one of them (that should appear near the end).
    	cmd.Env = append(cmd.Env, "GOCOMPILEDEBUG=fmahash=1/0", "GOOS=linux", "GOARCH=arm64", "HOME="+tmpdir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top