Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,184 for relativeTo (0.39 sec)

  1. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

        def "returns canonical path where file outside of root"() {
            expect:
            transform(relative, file) == normaliseFileSeparators(file.canonicalPath)
    
            where:
            relative                                          | file
            new File(rootDir, "current")                      | new File("file/outside")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/PathTest.groovy

            path.relativePath(':sub:path') == 'path'
            path.relativePath(':sub2:path') == ':sub2:path'
            path.relativePath(':other:path') == ':other:path'
        }
    
        def 'converts relative path to relative path'() {
            def path = path(':')
    
            expect:
            path.relativePath('path') == 'path'
        }
    
        def "appends path"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 12:54:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiReportTask.kt

        @get:InputFile
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val versionFile: RegularFileProperty
    
        @get:InputFile
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val releasedVersionsFile: RegularFileProperty
    
        @get:Input
        abstract val title: Property<String>
    
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val sources: ConfigurableFileCollection
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 09:32:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/JavaAppStartScriptGenerationDetails.java

        List<String> getDefaultJvmOpts();
    
        /**
         * The classpath, relative to the application home directory.
         */
        List<String> getClasspath();
    
        /**
         * The module path, relative to the application home directory.
         *
         * @since 6.4
         */
        List<String> getModulePath();
    
        /**
         * The path of the script, relative to the application home directory.
         */
        String getScriptRelPath();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. docs/en/docs/img/deployment/https/https07.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/path/DefaultPathTranslator.java

                    result = file.getPath();
                } else if (file.getPath().startsWith(File.separator)) {
                    // drive-relative Windows path, don't align with project directory but with drive root
                    result = file.getAbsolutePath();
                } else {
                    // an ordinary relative path, align with project directory
                    result = basedir.resolve(path).normalize().toString();
                }
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/MavenArtifactRepository.java

         * #setArtifactUrls(Iterable)}.
         *
         * <p>The provided value is evaluated as per {@link org.gradle.api.Project#uri(Object)}. This means, for example, you can pass in a {@code File} object, or a relative path to be evaluated relative
         * to the project directory.
         *
         * @param url The base URL.
         */
        @Override
        void setUrl(Object url);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  8. docs/en/docs/img/deployment/https/https01.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_relative_tmpdir.txt

    env GO111MODULE=off
    
    # If GOTMPDIR is relative, 'go build' should derive an absolute $WORK directory.
    cd $WORK
    mkdir tmp
    env GOTMPDIR=tmp
    go build -work a
    stderr 'WORK='$WORK
    
    # Similarly if TMP/TMPDIR is relative.
    env GOTMPDIR=
    env TMP=tmp    # Windows
    env TMPDIR=tmp # Unix
    go build -work a
    stderr 'WORK='$WORK
    
    -- a/a.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 337 bytes
    - Viewed (0)
  10. docs/en/docs/img/deployment/https/https02.drawio

                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
                                <mxPoint x="800" y="560"/>
                            </Array>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.4K bytes
    - Viewed (0)
Back to top