Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. test/fixedbugs/bug458.go

    // license that can be found in the LICENSE file.
    
    // Issue 4200: 6g crashes when a type is larger than 4GB.
    
    package main
    
    import "unsafe"
    
    // N=16 on 32-bit arches, 256 on 64-bit arches.
    // On 32-bit arches we don't want to test types
    // that are over 4GB large.
    const N = 1 << unsafe.Sizeof(uintptr(0))
    
    type T [N][10][10][10][10][3]byte
    
    func F(t *T) byte {
    	return t[0][0][0][0][0][0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 513 bytes
    - Viewed (0)
  2. tools/build-kind-image.sh

    # Example usage: `tools/build-kind-image.sh ~/go/src/k8s.io/kubernetes gcr.io/istio-testing/kind-node:v1.23.4`
    
    set -uex
    
    kdir="${1:?Kubernetes directory}"
    registry="${2:?registry}"
    
    ARCHES="${ARCHES:-amd64 arm64}"
    IFS=" " read -r -a __arches__ <<< "$ARCHES"
    
    images=()
    for arch in "${__arches__[@]}"; do
        image="${registry}-${arch}"
        kind build node-image --image="${image}" --arch="${arch}" "${kdir}"
        images+=("${image}")
    done
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 12 17:36:35 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. src/debug/macho/fat.go

    			if fa.Type != machoType {
    				return nil, &FormatError{offset, fmt.Sprintf("Mach-O type for architecture #%d (type=%#x) does not match first (type=%#x)", i, fa.Type, machoType), nil}
    			}
    		}
    
    		ff.Arches = append(ff.Arches, fa)
    	}
    
    	return &ff, nil
    }
    
    // OpenFat opens the named file using [os.Open] and prepares it for use as a Mach-O
    // universal binary.
    func OpenFat(name string) (*FatFile, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/internal/abi/abi.go

    // register space otherwise.
    type RegArgs struct {
    	// Values in these slots should be precisely the bit-by-bit
    	// representation of how they would appear in a register.
    	//
    	// This means that on big endian arches, integer values should
    	// be in the top bits of the slot. Floats are usually just
    	// directly represented, but some architectures treat narrow
    	// width floating point values specially (e.g. they're promoted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/config/aggregate/config.go

    // MakeWriteableCache creates an aggregate config store cache from several config store caches. An additional
    // `writer` config store is passed, which may or may not be part of `caches`.
    func MakeWriteableCache(caches []model.ConfigStoreController, writer model.ConfigStore) (model.ConfigStoreController, error) {
    	stores := make([]model.ConfigStore, 0, len(caches))
    	for _, cache := range caches {
    		stores = append(stores, cache)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. cmd/metacache-bucket.go

    			remove[id] = struct{}{}
    			continue
    		}
    	}
    
    	// If above limit, remove the caches with the oldest handout time.
    	if len(caches)-len(remove) > metacacheMaxEntries {
    		remainCaches := make([]metacache, 0, len(caches)-len(remove))
    		for id, cache := range caches {
    			if _, ok := remove[id]; ok {
    				continue
    			}
    			remainCaches = append(remainCaches, cache)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/cache/CacheMarkingStrategyIntegrationTest.groovy

            "jdks"          | "CACHEDIR_TAG"  | true      | "marked"
            // Caches will be generated by test framework, so marked even if not created
            "caches"        | "NONE"          | false     | "not marked"
            "caches"        | "NONE"          | true      | "not marked"
            "caches"        | "CACHEDIR_TAG"  | false     | "marked"
            "caches"        | "CACHEDIR_TAG"  | true      | "marked"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top