Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 779 for Directories (0.3 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. 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)
  6. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/AbstractDslTest.kt

        val kotlinDslEvalBaseTempDir: File
            get() = dslTestFixture.kotlinDslEvalBaseTempDir
    
        /**
         * Evaluates the given Kotlin [script] against this [Project] writing compiled classes
         * to sub-directories of [baseCacheDir] using [scriptCompilationClassPath].
         */
        fun Project.eval(
            script: String,
            baseCacheDir: File = kotlinDslEvalBaseCacheDir,
            baseTempDir: File = kotlinDslEvalBaseTempDir,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

                if (sourceSnapshot.getType() == FileType.Directory) {
                    // Prior to 8.7 we were combining instrumented classes from both directories and JARs into JARs.
                    // Now we store instrumented directories as directories, so we invalidate these.
                    // However, transformed JARs should be left intact.
                    hasher.putBoolean(true);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    		if omitted {
    			cf.Omitted = append(cf.Omitted, fe)
    		} else {
    			cf.Invalid = append(cf.Invalid, fe)
    		}
    	}
    
    	// Find directories containing go.mod files (other than the root).
    	// Files in these directories will be omitted.
    	// These directories will not be included in the output zip.
    	haveGoMod := make(map[string]bool)
    	for _, f := range files {
    		p := f.Path()
    		dir, base := path.Split(p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/pattern_syntax_error.txt

    env GO111MODULE=off
    
    # patterns match directories with syntax errors
    ! go list ./...
    ! go build ./...
    ! go install ./...
    
    -- mypkg/x.go --
    package mypkg
    
    -- mypkg/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 185 bytes
    - Viewed (0)
Back to top