Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 135 for pouch (0.04 sec)

  1. hack/update-generated-docs.sh

      genman "${dest}/docs/man/man1/" "kubeadm"
    
      mkdir -p "${dest}/docs/yaml/kubectl/"
      genyaml "${dest}/docs/yaml/kubectl/"
    
      # create the list of generated files
      pushd "${dest}" > /dev/null || return 1
      touch docs/.generated_docs
      find . -type f | cut -sd / -f 2- | LC_ALL=C sort > docs/.generated_docs
      popd > /dev/null || return 1
    }
    
    # Removes previously generated docs-- we don't want to check them in. $KUBE_ROOT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/cache/internal/DefaultGeneratedGradleJarCacheTest.groovy

            1 * cacheBuilder.open() >> { cache }
            _ * cache.getBaseDir() >> cacheDir
            1 * cache.useCache(_)
            jarFile == resolvedFile
    
            when:
            FileUtils.touch(jarFile)
            resolvedFile = provider.get("api") { Assert.fail("Should not be called if file already exists") }
    
            then:
            0 * cacheBuilderFactory.createCacheBuilder(CACHE_KEY) >> cacheBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/index.md

    ```
    
    </div>
    
    É **ALTAMENTE recomendado** que você escreva ou copie o código, edite-o e rode-o localmente.
    
    Usá-lo em seu editor é o que realmente te mostra os benefícios do FastAPI, ver quão pouco código você tem que escrever, todas as conferências de tipo, auto completações etc.
    
    ---
    
    ## Instale o FastAPI
    
    O primeiro passo é instalar o FastAPI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperGenerationIntegrationTest.groovy

            run "wrapper", "--gradle-version", "2.2.1", "--no-validate-url"
            def testFile = file("modtime").touch()
            def originalTime = testFile.lastModified()
            when:
            // Zip file time resolution is 2 seconds
            ConcurrentTestUtil.poll {
                testFile.touch()
                assert (testFile.lastModified() - originalTime) >= 2000L
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. docs/site-replication/run-ssec-object-replication.sh

    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello world" >/tmp/data/plainfile
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/defpartsize
    shred -s 500M /tmp/data/defpartsize
    touch /tmp/data/custpartsize
    shred -s 500M /tmp/data/custpartsize
    echo "done"
    
    # Add replication site
    ./mc admin replicate add minio1 minio2 --insecure
    # sleep for replication to complete
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/events.md

    
    Isso é que nós iremos resolver, vamos carregar o modelo antes das requisições serem manuseadas, mas apenas um pouco antes da aplicação começar a receber requisições, não enquanto o código estiver sendo carregado.
    
    ## Vida útil (_Lifespan_)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ReuseArchiveIntegrationTest.groovy

            otherFile.assertDoesNotExist()
    
            when:
            // write into the directory used by the extracted zip file
            cachedFile.text = "some incorrect pre-existing pre-expanded content"
            otherFile.touch()
    
            and:
            succeeds "extract"
            then:
            // the file is not extracted again and retains the modified content
            cachedFile.text == "some incorrect pre-existing pre-expanded content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

            def unzippedDir = file("before/files")
            def unzippedFile = unzippedDir.file("sub/c.txt").touch()
    
            and: "another directory with the same file"
            def unzippedDir2 = file("before2/files")
            def unzippedFile2 = unzippedDir2.file("sub/c2.txt").touch()
    
            and: "a copy task that copies from both of these, failing on duplicates"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/plugins/GroovyJarFileTest.groovy

        }
    
        def "parse symlinked Jar"(String symlinkName, String fileName, String version, String dependencyNotation) {
            def actualFile = tmpDir.file(fileName).touch()
            def symlinkFile = tmpDir.file(symlinkName).createLink(actualFile)
    
            def jar = GroovyJarFile.parse(symlinkFile)
    
            expect:
            jar != null
            jar.file == actualFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 20:09:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            }
        }
    
        /**
         * Ensures that the given file (or directory) is marked as modified. If the file
         * (or directory) does not exist, a new file is created.
         */
        public static void touch(File file) {
            logDeprecation();
            try {
                if (!file.createNewFile()) {
                    touchExistingInternal(file);
                }
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top