Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for touches (0.14 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                }
            """
            file('other/settings.gradle').touch()
            file('other/build.gradle') << """
                task otherBuild(type:GradleBuild) {
                    dir = '../other2'
                    tasks = ['build']
                }
            """
            file('other2/settings.gradle').touch()
            file('other2/build.gradle') << """
                task build
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. hack/lib/init.sh

     admission.k8s.io/v1\
     admission.k8s.io/v1beta1\
    "
    export KUBE_NONSERVER_GROUP_VERSIONS
    
    # This emulates "readlink -f" which is not available on MacOS X.
    # Test:
    # T=/tmp/$$.$RANDOM
    # mkdir $T
    # touch $T/file
    # mkdir $T/dir
    # ln -s $T/file $T/linkfile
    # ln -s $T/dir $T/linkdir
    # function testone() {
    #   X=$(readlink -f $1 2>&1)
    #   Y=$(kube::readlinkdashf $1 2>&1)
    #   if [ "$X" != "$Y" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. docs/fr/docs/advanced/response-directly.md

    ## Renvoyer une `Response` personnalisée
    
    L'exemple ci-dessus montre toutes les parties dont vous avez besoin, mais il n'est pas encore très utile, car vous auriez pu retourner l'`item` directement, et **FastAPI** l'aurait mis dans une `JSONResponse` pour vous, en le convertissant en `dict`, etc. Tout cela par défaut.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/uninstall_test.go

    // If purge is set to true, we expect all resources are removed.
    // Otherwise we expect only selected resources from control plane are removed, resources from base and the legacy addon installation would not be touched.
    func checkCPResourcesUninstalled(t test.Failer, cs cluster.Cluster, gvkResources []schema.GroupVersionKind, label string, purge bool) {
    	retry.UntilSuccessOrFail(t, func() error {
    		var reStrlist []string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleBackedArtifactBuilder.java

            String archiveName = isGradleExecuterVersionLessThan("5.0") ? "archiveName" : "archiveFileName";
    
            rootDir.mkdirs();
            rootDir.file("settings.gradle").touch();
            try {
                try (PrintWriter writer = new PrintWriter(rootDir.file("build.gradle"))) {
                    writer.println("apply plugin: 'java'");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/index.md

    ## Advanced User Guide
    
    There is also an **Advanced User Guide** that you can read later after this **Tutorial - User guide**.
    
    The **Advanced User Guide**, builds on this, uses the same concepts, and teaches you some extra features.
    
    But you should first read the **Tutorial - User Guide** (what you are reading right now).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/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) {
            try {
                if (!file.createNewFile()) {
                    touchExisting(file);
                }
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top