Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 957 for relativeTo (0.51 sec)

  1. .teamcity/src/main/kotlin/common/extensions.kt

        // Compile All has to succeed before anything else is started
        dependsOn(RelativeId(compileAllId))
        // Get the build receipt from sanity check to reuse the timestamp
        artifacts(RelativeId(compileAllId)) {
            id = "ARTIFACT_DEPENDENCY_$compileAllId"
            cleanDestination = true
            artifactRules = "build-receipt.properties => incoming-distributions"
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

        /**
         * Sets the base URL of this repository. The provided value is evaluated as per {@link org.gradle.api.Project#uri(Object)}. This means,
         * for example, you can pass in a File object or a relative path which is evaluated relative to the project directory.
         *
         * File are resolved based on the supplied URL and the configured {@link #layout(String)} for this repository.
         *
         * @param url The base URL.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultProjectDescriptorTest.groovy

            descriptor.name == "newName"
        }
    
        def "can set relative project directory"() {
            given:
            def descriptor = projectDescriptor()
    
            when:
            descriptor.projectDir = new File("relative/path")
    
            then:
            descriptor.projectDir.absolutePath == new File(testDirectory, "relative/path").absolutePath
        }
    
        def "can set absolute project directory"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 08 03:33:31 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/util/RelativePathUtil.java

                .nagUser();
        }
    
        public RelativePathUtil() {
            logDeprecation();
        }
    
        /**
         * Returns a relative path from 'from' to 'to'
         *
         * @param from where to calculate from
         * @param to where to calculate to
         * @return The relative path
         */
        public static String relativePath(File from, File to) {
            logDeprecation();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-shared/src/test/groovy/org/gradle/wrapper/WrapperExecutorTest.groovy

            e.cause.message == "No value with key 'distributionUrl' specified in wrapper properties file '$propertiesFile'."
        }
    
        def "supports relative distribution url"() {
            given:
            properties.distributionUrl = 'some/relative/url/to/bin.zip'
            propertiesFile.withOutputStream { properties.store(it, 'header') }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/TemplateProjectGeneratorTask.groovy

        @OutputDirectory
        File destDir
    
        @InputDirectory
        @PathSensitive(PathSensitivity.RELATIVE)
        File templateDirectory
    
        @InputDirectory
        @Optional
        @PathSensitive(PathSensitivity.RELATIVE)
        File sharedTemplateDirectory
    
        TemplateProjectGeneratorTask() {
            destDir = project.layout.buildDirectory.dir("$name").get().asFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/search.go

    			return func(p *Package) bool { return p.Dir == dir }
    		}
    		matchPath := pkgpattern.MatchPattern(pattern)
    		return func(p *Package) bool {
    			// Compute relative path to dir and see if it matches the pattern.
    			rel, err := filepath.Rel(dir, p.Dir)
    			if err != nil {
    				// Cannot make relative - e.g. different drive letters on Windows.
    				return false
    			}
    			rel = filepath.ToSlash(rel)
    			if rel == ".." || strings.HasPrefix(rel, "../") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. ci/official/bisect.sh

    #   TF_BISECT_BAD: First bad commit (e.g. commit from the first failing job)
    #   TF_BISECT_SCRIPT: The build script path relative to the TF root dir, e.g.
    #     ci/official/wheel.sh
    #   TFCI: The env config path, relative to the TF root dir, e.g.
    #     ci/official/envs/an_env_config
    #
    # Note that you can combine bisect.sh with any.sh to bisect a single test:
    #
    #   export TFCI=...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/projects/StageProject.kt

                performancePartialTrigger.dependencies {
                    artifacts(performanceTestTrigger) {
                        id = "artifact_dependency_${performancePartialTrigger.uuid}_${(performanceTestTrigger.id as RelativeId).relativeId}"
                        artifactRules = "**/* => $artifactDirName"
                    }
                }
            }
            return performancePartialTrigger
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/file-temp/src/main/java/org/gradle/api/internal/file/temp/TemporaryFileProvider.java

    import javax.annotation.Nullable;
    import java.io.File;
    
    @ServiceScope(Scope.Project.class)
    public interface TemporaryFileProvider {
        /**
         * Allocates a new temporary file with the exact specified path,
         * relative to the temporary file directory. Does not create the file.
         * Provides no guarantees around whether the file already exists.
         *
         * @param path The tail path components for the file.
         * @return The file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top