Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for Arches (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    		&asmArchS390X,
    		&asmArchWasm,
    		&asmArchLoong64,
    	}
    )
    
    func init() {
    	for _, arch := range arches {
    		arch.sizes = types.SizesFor("gc", arch.name)
    		if arch.sizes == nil {
    			// TODO(adonovan): fix: now that asmdecl is not in the standard
    			// library we cannot assume types.SizesFor is consistent with arches.
    			// For now, assume 64-bit norms and print a warning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    	case "ppc64", "ppc64le":
    		arch = macho.CpuPpc64
    	default:
    		return nil, fmt.Errorf("unsupported host architecture for %s: %s", name, runtime.GOARCH)
    	}
    	for i := range of.Arches {
    		if of.Arches[i].Cpu == arch {
    			return b.openMachOCommon(name, of.Arches[i].File, start, limit, offset)
    		}
    	}
    	return nil, fmt.Errorf("architecture not found in %s: %s", name, runtime.GOARCH)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/runtime/mkpreempt.go

    func main() {
    	flag.Parse()
    	if flag.NArg() > 0 {
    		out = os.Stdout
    		for _, arch := range flag.Args() {
    			gen, ok := arches[arch]
    			if !ok {
    				log.Fatalf("unknown arch %s", arch)
    			}
    			header(arch)
    			gen()
    		}
    		return
    	}
    
    	for arch, gen := range arches {
    		f, err := os.Create(fmt.Sprintf("preempt_%s.s", arch))
    		if err != nil {
    			log.Fatal(err)
    		}
    		out = f
    		header(arch)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/debug/buildinfo/buildinfo.go

    	case bytes.HasPrefix(ident, []byte("\xCA\xFE\xBA\xBE")) || bytes.HasPrefix(ident, []byte("\xCA\xFE\xBA\xBF")):
    		f, err := macho.NewFatFile(r)
    		if err != nil || len(f.Arches) == 0 {
    			return "", "", errUnrecognizedFormat
    		}
    		x = &machoExe{f.Arches[0].File}
    	case bytes.HasPrefix(ident, []byte{0x01, 0xDF}) || bytes.HasPrefix(ident, []byte{0x01, 0xF7}):
    		f, err := xcoff.NewFile(r)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. src/runtime/runtime-gdb_test.go

    // https://golang.org/issue/37238
    func TestGdbInfCallstack(t *testing.T) {
    	checkGdbEnvironment(t)
    
    	testenv.MustHaveCGO(t)
    	if runtime.GOARCH != "arm64" {
    		t.Skip("skipping infinite callstack test on non-arm64 arches")
    	}
    
    	t.Parallel()
    	checkGdbVersion(t)
    
    	dir := t.TempDir()
    
    	// Build the source code.
    	src := filepath.Join(dir, "main.go")
    	err := os.WriteFile(src, []byte(InfCallstackSource), 0644)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    			}
    
    			// Flow backwards from the control value to find the
    			// flag load. We don't know what lowered ops we're
    			// looking for, but all current arches produce a
    			// single op that does the memory load from the flag
    			// address, so we look for that.
    			var load *ssa.Value
    			v := decisionBlock.Controls[0]
    			for {
    				if v.MemoryArg() != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/runtime/asm_ppc64x.s

    	MOVD	g_m(g), R3
    	MOVD	m_curg(R3), g
    	BL	runtime·save_g(SB)
    	MOVD	(g_sched+gobuf_sp)(g), R1
    	MOVD	R0, (g_sched+gobuf_sp)(g)
    	RET
    
    noswitch:
    	// already on m stack, just call directly
    	// On other arches we do a tail call here, but it appears to be
    	// impossible to tail call a function pointer in shared mode on
    	// ppc64 because the caller is responsible for restoring the TOC.
    	MOVD	0(R11), R12	// code pointer
    	MOVD	R12, CTR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    The following cleanup strategies are applied periodically (by default, once every 24 hours):
    
    - Version-specific caches in all `caches/<GRADLE_VERSION>/` directories are checked for whether they are still in use.
    +
    If not, directories for release versions are deleted after 30 days of inactivity, and snapshot versions after 7 days.
    - Shared caches in `caches/` (e.g., `jars-*`) are checked for whether they are still in use.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    /home/paul/.sdkman/candidates/java/10.0.2-oracle/bin/java -cp /home/paul/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-compiler-embeddable/1.3.11/a8db6c14f8b8ed74aa11b8379f961587b639c571/kotlin-compiler-embeddable-1.3.11.jar:/home/paul/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-reflect/1.3.11/aae7b33412715e9ed441934c4ffaad1bb80e9d36/kotlin-reflect-1.3.11.jar:/home/paul/.gradle/caches/modules-2/files-2.1/org.jetbrains.kotlin/kotlin-stdlib/1.3.11/4cbc5922a5437601...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

        for (LoadingCache<Object, Object> cache : caches()) {
          // don't let the entries get GCed
          List<Entry<Object, Object>> warmed = warmUp(cache);
          assertEquals(WARMUP_SIZE, cache.size());
          assertMapSize(cache.asMap(), WARMUP_SIZE);
          checkValidState(cache);
        }
      }
    
      public void testContainsKey_found() {
        for (LoadingCache<Object, Object> cache : caches()) {
          // don't let the entries get GCed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top