Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 490 for Arches (0.25 sec)

  1. 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)
  2. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    quarrelling with the other players, and shouting `Off with his
    head!' or `Off with her head!'  Those whom she sentenced were
    taken into custody by the soldiers, who of course had to leave
    off being arches to do this, so that by the end of half an hour
    or so there were no arches left, and all the players, except the
    King, the Queen, and Alice, were in custody and under sentence of
    execution.
    
      Then the Queen left off, quite out of breath, and said to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    quarrelling with the other players, and shouting `Off with his
    head!' or `Off with her head!'  Those whom she sentenced were
    taken into custody by the soldiers, who of course had to leave
    off being arches to do this, so that by the end of half an hour
    or so there were no arches left, and all the players, except the
    King, the Queen, and Alice, were in custody and under sentence of
    execution.
    
      Then the Queen left off, quite out of breath, and said to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/runtime/malloc.go

    	_NumStackOrders = 4 - goarch.PtrSize/4*goos.IsWindows - 1*goos.IsPlan9
    
    	// heapAddrBits is the number of bits in a heap address. On
    	// amd64, addresses are sign-extended beyond heapAddrBits. On
    	// other arches, they are zero-extended.
    	//
    	// On most 64-bit platforms, we limit this to 48 bits based on a
    	// combination of hardware and OS limitations.
    	//
    	// amd64 hardware limits addresses to 48 bits, sign-extended
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. releasenotes/notes/delete-archs-helm-templates.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 23:27:47 UTC 2022
    - 189 bytes
    - Viewed (0)
  8. api/go1.3.txt

    pkg debug/macho, type FatArchHeader struct, Size uint32
    pkg debug/macho, type FatArchHeader struct, SubCpu uint32
    pkg debug/macho, type FatFile struct
    pkg debug/macho, type FatFile struct, Arches []FatArch
    pkg debug/macho, type FatFile struct, Magic uint32
    pkg debug/macho, var ErrNotFat *FormatError
    pkg debug/pe, type DataDirectory struct
    pkg debug/pe, type DataDirectory struct, Size uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cache_striped.go

    )
    
    // split cache lookups across N striped caches
    type stripedCache struct {
    	stripeCount uint32
    	hashFunc    func(string) uint32
    	caches      []cache
    }
    
    type hashFunc func(string) uint32
    type newCacheFunc func() cache
    
    func newStripedCache(stripeCount int, hash hashFunc, newCacheFunc newCacheFunc) cache {
    	caches := []cache{}
    	for i := 0; i < stripeCount; i++ {
    		caches = append(caches, newCacheFunc())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleRepositoryCacheProvider.java

    public class ModuleRepositoryCacheProvider {
        private final ModuleRepositoryCaches caches;
        private final ModuleRepositoryCaches inMemoryCaches;
        private final ResolvedArtifactCaches resolvedArtifactCaches = new ResolvedArtifactCaches();
    
        public ModuleRepositoryCacheProvider(ModuleRepositoryCaches caches, ModuleRepositoryCaches inMemoryCaches) {
            this.caches = caches;
            this.inMemoryCaches = inMemoryCaches;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top