Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Arches (0.71 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    			// Create the build environments corresponding the above specifiers
    			envs := make([]buildEnv, 0, 4)
    			arches := []string{arch}
    			// ppc64x is a pseudo-arch, generate tests for both endian variants.
    			if arch == "ppc64x" {
    				arches = []string{"ppc64", "ppc64le"}
    			}
    			for _, arch := range arches {
    				if subarch != "" {
    					envs = append(envs, buildEnv(os+"/"+arch+"/"+subarch))
    				} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. 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)
  3. guava/src/com/google/common/cache/CacheBuilder.java

     * calling it should not be necessary with a high throughput cache. Only caches built with {@link
     * #removalListener removalListener}, {@link #expireAfterWrite expireAfterWrite}, {@link
     * #expireAfterAccess expireAfterAccess}, {@link #weakKeys weakKeys}, {@link #weakValues
     * weakValues}, or {@link #softValues softValues} perform periodic maintenance.
     *
     * <p>The caches produced by {@code CacheBuilder} are serializable, and the deserialized caches
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [source,kotlin]
    ----
    beforeSettings {
        caches {
            // Disable cache marking for all caches
            markingStrategy.set(MarkingStrategy.NONE)
        }
    }
    ----
    =====
    [.multi-language-sample]
    =====
    .init.gradle
    [source,groovy]
    ----
    beforeSettings { settings ->
        settings.caches {
            // Disable cache marking for all caches
            markingStrategy = MarkingStrategy.NONE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        // caches
        private final Map<DependencyMetadata, DependencyState> dependencyStateCache = new HashMap<>();
        private final Map<DependencyState, EdgeState> edgesCache = new HashMap<>();
    
        // Caches the list of dependency states for dependencies
        private List<DependencyState> cachedDependencyStates;
    
        // Caches the list of dependency states which are NOT excluded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

      For your information here are the path to the files which failed verification:
        - $<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.1/976d8d30bebc251db406f2bdb3eb01962b5685b3/j2objc-annotations-1.1.jar (signature: GRADLE_USER_HOME/caches/modules-2/files-2.1/com.google.j2objc/j2objc-annotations/1.1/82e922e14f57d522de465fd144ec26eb7da44501/j2objc-annotations-1.1.jar.asc)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    		poolcleanup()
    	}
    
    	// clear boringcrypto caches
    	for _, p := range boringCaches {
    		atomicstorep(p, nil)
    	}
    
    	// clear unique maps
    	if uniqueMapCleanup != nil {
    		select {
    		case uniqueMapCleanup <- struct{}{}:
    		default:
    		}
    	}
    
    	// Clear central sudog cache.
    	// Leave per-P caches alone, they have strictly bounded size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    			namespace: svc.Attributes.Namespace,
    		}
    		ps.serviceAccounts[key] = sa
    	}
    }
    
    // Caches list of authentication policies
    func (ps *PushContext) initAuthnPolicies(env *Environment) {
    	ps.AuthnPolicies = initAuthenticationPolicies(env)
    }
    
    // Caches list of virtual services
    func (ps *PushContext) initVirtualServices(env *Environment) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. pkg/controller/disruption/disruption_test.go

    		if err != nil {
    			t.Fatalf("Failed to create pod: %v", err)
    		}
    	}
    
    	// Block until the fake clientset writes are observable in the informer caches.
    	// FUN FACT: This guarantees that the informer caches have updated, but it does
    	// not guarantee that informer event handlers have completed. Fortunately,
    	// DisruptionController does most of its logic by reading from informer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    To mitigate the risk of accidental exposure, Gradle encrypts the configuration cache.
    Gradle transparently generates a machine-specific secret key as required, caches it under the
    `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>` directory and uses it to encrypt the data in the project specific caches.
    
    To enhance security further, make sure to:
    
    * secure access to configuration cache entries;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top