Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 193 for pouch (0.06 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

            def firstCopy = file("firstDir")
            def secondCopy = file("secondDir")
            [ firstCopy, secondCopy ].each { projectDir ->
                projectDir.file("settings.gradle").touch()
                def buildFile = projectDir.file("build.gradle")
                buildFile << helloWorldApp.pluginScript
                buildFile << helloWorldApp.extraConfiguration
                buildFile << """
                model {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/cache/internal/VersionSpecificCacheCleanupAction.java

                lastCleanupTime = Instant.ofEpochMilli(gcFile.lastModified());
            }
    
            return cleanupFrequency.requiresCleanup(lastCleanupTime);
        }
    
        private void markCleanedUp() {
            GFileUtils.touch(getGcFile());
        }
    
        private File getGcFile() {
            File currentVersionCacheDir = versionSpecificCacheDirectoryScanner.getDirectory(GradleVersion.current());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

        @Issue("GRADLE-1412")
        @ToBeFixedForConfigurationCache
        void "utility project's library and variable classpath entries contain necessary dependency attribute"() {
            //given
            file('libs/myFoo.jar').touch()
            createDirs("someLib")
            file('settings.gradle') << "include 'someLib'"
    
            file("build.gradle") <<
            """apply plugin: 'java'
               apply plugin: 'eclipse-wtp'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/NestedSourceDependencyIdentityIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in dependency resolution results with #display"() {
            repoC.file("a/.gitkeepdir").touch()
            repoC.file("settings.gradle") << """
                ${settings}
                include 'a'
            """
            repoC.file("build.gradle") << """
                allprojects { apply plugin: 'java-library' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyIdentityIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "includes build identifier in dependency resolution results with #display"() {
            repo.file("a/.gitkeepdir").touch()
            repo.file("settings.gradle") << """
                ${settings}
                include 'a'
            """
            repo.file("build.gradle") << """
                allprojects { apply plugin: 'java-library' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. docs/pt/docs/history-design-future.md

    > Qual é a história desse projeto? Parece que surgiu do nada e se tornou incrível em poucas semanas [...]
    
    Aqui está um pouco dessa história.
    
    ## Alternativas
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part5_gradle_inc_builds.adoc

    To better see incremental builds in action, we are going to switch the console output to verbose.
    
    In the top-level folder of your app (`tutorial`), create a `gradle.properties` file.
    
    [source,properties]
    ----
    $ touch gradle.properties
    ----
    
    Add `org.gradle.console=verbose` so the contents of the file look like this:
    
    .gradle.properties
    [source,properties]
    ----
    org.gradle.console=verbose
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	group           singleflight.Group
    	liveTTL         time.Duration
    	// updatedQuotas holds a cache of quotas that we've updated.  This is used to pull the "really latest" during back to
    	// back quota evaluations that touch the same quota doc.  This only works because we can compare etcd resourceVersions
    	// for the same resource as integers.  Before this change: 22 updates with 12 conflicts.  after this change: 15 updates with 0 conflicts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

            def oldCacheDir = createVersionSpecificCacheDir(oldVersion, NOT_USED_WITHIN_30_DAYS)
            def oldDist = createDistributionChecksumDir(oldVersion).parentFile
    
            when:
            getGcFile(currentCacheDir).touch()
            cleanupService.cleanup()
    
            then:
            oldCacheDir.assertExists()
            oldDist.assertExists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryCacheTest.groovy

            try {
                cache.open()
                dir.file("some-file").touch()
            } finally {
                cache.close()
            }
    
            return dir
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top