Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 135 for pouch (0.07 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/services/DefaultVersionControlRepositoryFactory.java

                            GFileUtils.mkdirs(workingDir);
                            // Update timestamp so that working directory is not garbage collected
                            GFileUtils.touch(baseDir);
                            delegate.populate(workingDir, ref, spec);
                            return workingDir;
                        } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:35:55 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. docs/pt/docs/python-types.md

    O **FastAPI** é baseado nesses type hints, eles oferecem muitas vantagens e benefícios.
    
    Mas mesmo que você nunca use o **FastAPI**, você se beneficiaria de aprender um pouco sobre eles.
    
    !!! note "Nota"
         Se você é um especialista em Python e já sabe tudo sobre type hints, pule para o próximo capítulo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/AbstractDaemonLifecycleSpec.groovy

        def buildDir(buildNum) {
            file("builds/$buildNum")
        }
    
        def buildDirWithScript(buildNum, buildScript) {
            def dir = buildDir(buildNum)
            dir.file("settings.gradle").touch()
            dir.file("build.gradle") << buildScript
            dir
        }
    
        void startBuild(String javaHome = null, String buildEncoding = null) {
            run {
                executer.withTasks("watch")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top