Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for heures (0.89 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMultiProjectIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheMultiProjectIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "reuses cache for absolute task invocation from subproject dir across dirs"() {
            given:
            settingsFile << """
                include 'a', 'b'
            """
            buildScript """
                task ok
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

    import org.gradle.integtests.fixtures.longlived.PersistentBuildProcessIntegrationTest
    
    class ConfigurationCacheClassLoaderCachingIntegrationTest extends PersistentBuildProcessIntegrationTest {
    
        def "reuses cached ClassLoaders"() {
    
            given: 'a Task that holds some static data'
            File staticDataLib = file("lib/StaticData.jar").tap {
                parentFile.mkdirs()
            }
            jarWithClasses(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CleanupFrequency.java

    import java.time.Instant;
    
    /**
     * Represents when cache cleanup should be triggered.
     *
     * @since 8.0
     */
    public interface CleanupFrequency {
        /**
         * Trigger cleanup once every 24 hours.
         */
        CleanupFrequency DAILY = new CleanupFrequency() {
            @Override
            public boolean requiresCleanup(@Nullable Instant lastCleanupTime) {
                if (lastCleanupTime == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LeastRecentlyUsedCacheCleanupTest.groovy

            long now = System.currentTimeMillis()
            def cacheEntries = [
                createCacheEntry(now),
                createCacheEntry(now - TimeUnit.MINUTES.toMillis(15)),
                createCacheEntry(now - TimeUnit.HOURS.toMillis(5)),
            ]
    
            when:
            cleanupAction.clean(cleanableStore, progressMonitor)
    
            then:
            cacheEntries[0].assertExists()
            cacheEntries[1].assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryCacheDecoratorFactoryTest.groovy

        def target = Mock(MultiProcessSafeIndexedCache)
        def asyncCacheAccess = Mock(AsyncCacheAccess)
        def crossProcessCacheAccess = Mock(CrossProcessCacheAccess)
    
        def "caches result from backing cache and reuses for other instances with the same cache id"() {
            given:
            def cache = cacheFactory.decorator(100, true).decorate("path/fileSnapshots.bin", "fileSnapshots", target, crossProcessCacheAccess, asyncCacheAccess)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultCacheFactoryTest.groovy

            cache.baseDir == tmpDir.testDirectory
            cache.toString().startsWith "<display>"
    
            cleanup:
            factory.close()
        }
    
        void "reuses directory backed cache instances"() {
            when:
            def ref1 = factory.open(tmpDir.testDirectory, null, [prop: 'value'], mode(Exclusive), null, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/tooling/internal/provider/serialization/PayloadSerializerTest.groovy

            def serialized = originator.serialize(cl)
            def received = receiver.deserialize(serialized)
    
            then:
            received != cl
            received.name == cl.name
        }
    
        def "reuses ClassLoaders for multiple invocations"() {
            def cl = isolated(WrapperPayload, CustomPayload, PayloadInterface)
            def wrapperClass = cl.loadClass(WrapperPayload.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/configuration-management.apt

     in a known location. This would also help with developer setup i.e. getting
     new developers up and running. They could run a maven command and have all
     their source trees set up in the same way as their colleagues.
    
     here's what I do currently in the netbeans part of the mavenide project to
     find the relevant subprojects/sibling projects. I check if the user has
     defined the maven.multiproject.includes property in any of his properties
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top