Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 258 for pouch (0.04 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

            output.contains "value: changed"
        }
    
        def "does not trigger when changes is made to task that is not required"() {
            given:
            def aFile = file("a").touch()
            def bFile = file("b").touch()
    
            when:
            buildFile << """
                task a {
                  inputs.file "a"
                  outputs.files "build/marker"
                  doLast {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

        private DaemonContext candidate = Mock(DaemonContext)
    
        private TestFile javaHome = tmp.createDir("jdk")
    
        def setup() {
            javaHome.file("bin", OperatingSystem.current().getExecutableName("java")).touch()
        }
    
        DaemonRequestContext clientWants(Map args) {
            clientWants(args.requestedJvm,
                args.daemonOpts ?: [],
                args.applyInstrumentationAgent ?: false,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultFileOperationsTest.groovy

            def fileCollection = Stub(FileCollectionInternal)
            fileCollectionFactory.resolving(["file"] as Object[]) >> fileCollection
            fileCollection.iterator() >> [fileToBeDeleted].iterator()
            fileToBeDeleted.touch()
    
            expect:
            fileOperations.delete('file') == true
            fileToBeDeleted.isFile() == false
        }
    
        def makesDir() {
            TestFile dirToBeCreated = tmpDir.file("parentDir", "dir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/runtime/import_test.go

    // license that can be found in the LICENSE file.
    
    // This file and importx_test.go make it possible to write tests in the runtime
    // package, which is generally more convenient for testing runtime internals.
    // For tests that mostly touch public APIs, it's generally easier to write them
    // in the runtime_test package and export any runtime internals via
    // export_test.go.
    //
    // There are a few limitations on runtime package tests that this bridges:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        if (!moved) clickHandler(e.target);
      }
    
      // Find touch object with specified identifier.
      function findTouch(tlist, id) {
        for (const t of tlist) {
          if (t.identifier == id) return t;
        }
        return null;
      }
    
      // Return distance between two touch points
      function touchGap(t1, t2) {
        const dx = t1.clientX - t2.clientX;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    	}
    	if err := os.MkdirAll(filepath.Join(td, "dir2"), 0755); err != nil {
    		t.Fatal(err)
    	}
    
    	touch(t, filepath.Join(td, "dir", "foo1"))
    	touch(t, filepath.Join(td, "dir", "foo2"))
    	touch(t, filepath.Join(td, "dir", "subdir", "foo3"))
    	touch(t, filepath.Join(td, "dir", "foo4"))
    	touch(t, filepath.Join(td, "dir2", "bar"))
    	touch(t, filepath.Join(td, "last"))
    
    	remainingWereSkipped := true
    	walker := func(path string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB = new BuildTestFile(repo.workTree, "B")
            buildB.createDirs("foo", "bar")
            // git doesn't track directories so we need to create files in them
            buildB.file("foo/.gitkeepdir").touch()
            buildB.file("bar/.gitkeepdir").touch()
            buildB.settingsFile << """
                rootProject.name = 'B'
                include 'foo', 'bar'
            """
            buildB.buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.util.TestUtil
    import org.gradle.work.InputChanges
    
    import java.util.concurrent.Callable
    
    import static org.apache.commons.io.FileUtils.touch
    import static org.gradle.api.internal.project.taskfactory.AnnotationProcessingTasks.Bean
    import static org.gradle.api.internal.project.taskfactory.AnnotationProcessingTasks.Bean2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocWorkAvoidanceIntegrationTest.groovy

                        from("external/d")
                    }
    
                    archiveFileName = "external.jar"
                }
            """
            ['a', 'b', 'c', 'd'].each {
                file("external/$it").touch()
            }
            // Generate external jar with entries in alphabetical order
            def externalJar = file('build/libs/external.jar')
            succeeds(":a:javadoc", "-Dreverse=false")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. hack/verify-openapi-docs-urls.sh

    _tmpdir="$(kube::realpath "$(mktemp -d -t "$(basename "$0").XXXXXX")")"
    mkdir -p "${_tmpdir}"
    trap 'rm -rf ${_tmpdir}' EXIT SIGINT
    trap "echo Aborted; exit;" SIGINT SIGTERM
    
    TMP_URLS="${_tmpdir}/docs_urls.txt"
    touch "${TMP_URLS}"
    
    
    for full_repo_path in "${SPECV3PATH}"/*.json; do
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top