Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 779 for Directories (0.14 sec)

  1. maven-core/src/test/resources-project-builder/nested-build-dir-interpolation/pom.xml

      <version>0.1</version>
      <packaging>jar</packaging>
    
      <name>Maven Integration Test :: MNG-3904</name>
      <description>
        Test that properties which refer to build directories which in turn refer to other build directories are
        properly interpolated.
      </description>
    
      <properties>
        <!-- These are the properties of interest -->
        <dir0>${project.build.outputDirectory}/dir0</dir0>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

                cacheBuilderFactory,
                usedGradleVersions,
                new TestBuildOperationRunner(),
                cacheConfigurations
        )
    
        def "cleans up unused version-specific cache directories and deletes distributions for unused versions with the default retention"() {
            given:
            def oldVersion = GradleVersion.version("2.3.4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/internal/tasks/StaleOutputCleanerTest.groovy

        }
    
        def "deletes empty parent directories"() {
            def file1 = tmpDir.file('foo/bar/file1').createFile()
            tmpDir.file('foo/baz/file2').createFile()
    
            expect:
            StaleOutputCleaner.cleanOutputs(deleter, files(file1), tmpDir.testDirectory)
            !tmpDir.file('foo/bar').exists()
            tmpDir.file('foo/baz').exists()
        }
    
        def "deletes parent directories regardless of order"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. .travis.yml

    dist: xenial
    
    sudo: required
    services:
      - docker
    
    language: java
    
    jdk:
      - openjdk11
    
    cache:
      directories:
        - $HOME/.m2/repository
    
    before_script:
      - java -version
    
    script:
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Dec 07 14:01:56 UTC 2019
    - 202 bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

                def numberMatcher = retainedInformation =~ /Virtual file system retains information about (\d+) files, (\d+) directories and (\d+) missing files until next build/
                return numberMatcher[0][1] as int
            }
    
            int getReceivedFileSystemEventsSinceLastBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/caching/internal/packaging/impl/DefaultTarPackerFileSystemSupportTest.groovy

            when:
            fileSystemSupport.ensureDirectoryForTree(DIRECTORY, targetOutputDir)
    
            then:
            targetOutputDir.assertIsEmptyDir()
        }
    
        def "creates directories even if there is a pre-existing file in its place"() {
            def targetOutputDir = temporaryFolder.file("build/output")
            targetOutputDir << "This should become a directory"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/normalization/RuntimeClasspathNormalization.java

     *
     * <ul>
     *
     * <li>'*' to match any number of characters
     *
     * <li>'?' to match any single character
     *
     * <li>'**' to match any number of directories or files
     *
     * </ul>
     *
     * <p>Either '/' or '\' may be used in a pattern to separate directories. Patterns ending with '/' or '\' will have '**'
     * automatically appended.</p>
     *
     * <p>Examples:</p>
     *
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 19 12:43:32 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. samples/guide/src/test/kotlin/okhttp3/AllMainsTest.kt

    private fun mainFiles(): List<File> {
      val directories =
        listOf(
          "$prefix/samples/guide/src/main/java/okhttp3/guide",
          "$prefix/samples/guide/src/main/java/okhttp3/recipes",
          "$prefix/samples/guide/src/main/java/okhttp3/recipes/kt",
        ).map { File(it) }
    
      return directories.flatMap {
        it.listFiles().orEmpty().filter { f -> f.isFile }.toList()
      }
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

        static void beforeBuild(File checkoutDir, File gradleHome) {
            // Workaround for Android Gradle plugin checking for the presence of these directories at configuration time,
            // which invalidates configuration cache if their presence changes. Create these directories before the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/basedir-aligned-interpolation/pom.xml

      <artifactId>test1</artifactId>
      <version>1.0-SNAPSHOT</version>
    
      <name>Maven Integration Test :: MNG-3822</name>
      <description>
        Verify that POM interpolation uses basedir-aligned build directories.
      </description>
    
      <properties>
        <!-- this is where we collect all the interpolated values for the POM dump -->
        <buildMainSrc>${project.build.sourceDirectory}</buildMainSrc>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
Back to top