Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"postbox":                              "\U0001f4ee",
    	"potable_water":                        "\U0001f6b0",
    	"potato":                               "\U0001f954",
    	"potted_plant":                         "\U0001fab4",
    	"pouch":                                "\U0001f45d",
    	"poultry_leg":                          "\U0001f357",
    	"pound":                                "\U0001f4b7",
    	"pout":                                 "\U0001f621",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/favicons/apple-touch-icon-180x180.png

    apple-touch-icon-180x180.png...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultSourceDirectorySetTest.groovy

            File srcDir1 = new File(testDir, 'dir1')
            touch(new File(srcDir1, 'subdir/file1.txt'))
            touch(new File(srcDir1, 'subdir/file2.txt'))
            touch(new File(srcDir1, 'subdir/ignored.txt'))
            File srcDir2 = new File(testDir, 'dir2')
            touch(new File(srcDir2, 'subdir2/file1.txt'))
            touch(new File(srcDir2, 'subdir2/file2.txt'))
            touch(new File(srcDir2, 'subdir2/ignored.txt'))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 14.4K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesArchivesIntegrationTest.groovy

            def archivesDir = dslDir.file("build/toArchive")
            archivesDir.createDir().file("my-report.pdf").touch()
            archivesDir.createDir().file("numbers.csv").touch()
    
            and: "A PDF report in a subdirectory of build/toArchive"
            archivesDir.createDir("metrics").file("scatterPlot.pdf").touch()
    
            when:
            succeeds("packageDistribution")
    
            then:
            def tmpOutDir = dslDir.file("tmp")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/assembler/plugins/AssemblerPluginTest.groovy

            realizeComponents().exe.sources.asm.source.srcDirs*.name == ["d1", "d2"]
        }
    
        def "creates assemble tasks for each non-empty executable source set "() {
            when:
            touch("src/test/asm/dummy.s")
            touch("src/test/anotherOne/dummy.s")
            dsl {
                pluginManager.apply AssemblerPlugin
    
                model {
                    components {
                        test(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesFilesMiscIntegrationTest.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('moveReports')
    
            then:
            def toArchiveDir = dslDir.file("build/toArchive")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/initialization/InternalGradleFailuresIntegrationTest.groovy

                }
            """
        }
    
        def "Error message due to unwritable build scope cache directory is not scary"() {
            given:
            def localGradleCache = file('.gradle')
            localGradleCache.touch()
    
            when:
            fails 'hello'
    
            then:
            localGradleCache.isFile()
            assertHasStartupFailure(failure, "Cache directory '${localGradleCache}' exists and is not a directory.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. 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)
  10. subprojects/core/src/test/groovy/org/gradle/api/file/MicroBenchmarkPerformanceTest.groovy

        def "creating #number of files"() {
            expect:
            number.times {
                touch("src/test/dummy${it}.s")
            }
            where:
            number << [10, 100, 1000]
        }
    
        def touch(String filePath) {
            FileUtils.touch(project.file(filePath))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top