Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. subprojects/core/src/test/groovy/org/gradle/cache/internal/VersionSpecificCacheCleanupActionTest.groovy

            def cleanedUp = cleanupAction.execute(progressMonitor)
    
            then:
            cleanedUp
            getGcFile(currentCacheDir).assertExists()
        }
    
        def "does not clean up when gc.properties has been touched in the last 24 hours"() {
            given:
            def oldCacheDir = createVersionSpecificCacheDir(GradleVersion.version("2.3.4"), NOT_USED_WITHIN_30_DAYS)
            def gcFile = getGcFile(currentCacheDir).createFile().makeOlder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 17:27:30 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/de/stopwords.txt

    noch
    nun
    nur
    ob
    oder
    ohne
    sehr
    sein
    seine
    seinem
    seinen
    seiner
    seines
    selbst
    sich
    sie
    ihnen
    sind
    so
    solche
    solchem
    solchen
    solcher
    solches
    soll
    sollte
    sondern
    sonst
    über
    um
    und
    uns
    unse
    unsem
    unsen
    unser
    unses
    unter
    viel
    vom
    von
    vor
    während
    war
    waren
    warst
    was
    weg
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemNode.java

        /**
         * Stores information to the virtual file system that we have learned about.
         *
         * Complete information, like {@link FileSystemLocationSnapshot}s, are not touched nor replaced.
         */
        @CheckReturnValue
        FileSystemNode store(VfsRelativePath targetPath, CaseSensitivity caseSensitivity, MetadataSnapshot snapshot, SnapshotHierarchy.NodeDiffListener diffListener);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    return touches;},storeInitialMouseDownPos_(e){const position=this.extractRelativeMousePosition_(e);this.mouseViewPosAtMouseDown_.x=position.x;this.mouseViewPosAtMouseDown_.y=position....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandlerTest.groovy

        def setup() {
            moduleSwiftDeps = tmpDir.file("module.swiftdeps")
            barSource = tmpDir.file("src/bar.swift").touch()
            fooSource = tmpDir.file("src/foo.swift").touch()
            mainSource = tmpDir.file("src/main.swift").touch()
            unknownSource = tmpDir.file("src/unknown.swift").touch()
    
            moduleSwiftDeps << """
    version: "Swift version 4.0.3 (swift-4.0.3-RELEASE)"
    options: "7890c730e32273cd2686f36d1bd976c0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top