Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for pouch (0.04 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/FullExceptionFormatterTest.groovy

            formatter.format(testDescriptor, [new RuntimeException("oops"), new Exception("ouch")]) == """\
        java.lang.RuntimeException: oops
    
        java.lang.Exception: ouch
    """
        }
    
        def "optionally shows causes"() {
            testLogging.getShowCauses() >> true
            def cause = new RuntimeException("oops")
            def exception = new Exception("ouch", cause)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            def reportsDir = dslDir.file('build/reports')
            reportsDir.createDir().file('my-report.pdf').touch()
            reportsDir.file('numbers.csv').touch()
    
            and: "A PDF report in a subdirectory of build/reports"
            reportsDir.createDir("metrics").file("scatterPlot.pdf").touch()
    
            when:
            succeeds('copyPdfReportsForArchiving')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            def staleFileInDir = file("build/dir/stale-file.txt").touch()
            def fileInBuildDir = file("build/file").touch()
    
            expect:
            succeeds("myTask")
    
            when:
            invalidateBuildOutputCleanupState()
            dirInBuildDir.createDir()
            staleFileInDir.touch()
            fileInBuildDir.touch()
            then:
            succeeds("myTask")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitInteractiveIntegrationTest.groovy

        }
    
        def "prompts to overwrite files if any exist and defaults to no"() {
            given: "a file exists in the build directory"
            targetDir.file(defaultFileName).touch()
    
            when:
            def handle = startInteractiveExecutorWithTasks(
                "init",
                "--incubating",
                "--dsl", "groovy",
                "--type", "basic",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 12:58:10 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. docs/site-replication/run-sse-kms-object-replication.sh

    # Prepare data for tests
    echo -n "Preparing test data ..."
    mkdir -p /tmp/data
    echo "Hello from encrypted world" >/tmp/data/encrypted
    touch /tmp/data/mpartobj
    shred -s 500M /tmp/data/mpartobj
    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
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. 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)
Back to top