Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 193 for pouch (0.06 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/GroovyCompileScriptBuildOperationIntegrationTest.groovy

                apply from: 'shared.gradle'
                println 'build.gradle'
            """
    
            succeeds "help"
    
            when: // already compiled shared script
            file('otherBuild/settings.gradle').touch()
            file('otherBuild/build.gradle') << "apply from: '../shared.gradle'"
            executer.usingProjectDirectory(file('otherBuild'))
            succeeds 'help'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. ci/official/requirements_updater/updater.sh

    # All commands run relative to this directory
    cd "$(dirname "${BASH_SOURCE[0]}")"
    
    mv BUILD.bazel BUILD
    
    SUPPORTED_VERSIONS=("3_9" "3_10" "3_11" "3_12")
    
    for VERSION in "${SUPPORTED_VERSIONS[@]}"
    do
      touch "requirements_lock_$VERSION.txt"
      bazel run \
        --experimental_convenience_symlinks=ignore \
        --enable_bzlmod=false \
        //:requirements_"$VERSION".update
      sed -i '/^#/d' requirements_lock_"$VERSION".txt
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:05:45 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r88/DaemonJvmCompatibilityCrossVersionSpec.groovy

    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    
    class DaemonJvmCompatibilityCrossVersionSpec extends ToolingApiSpecification {
        def setup() {
            buildFile.touch()
            settingsFile << """
                rootProject.name = "root"
            """
        }
    
        @TargetGradleVersion(">=8.8")
        def "can run a build with Java 21 followed by another build with a different version"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top