Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 958 for relativeTo (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/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: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/PublishBranchSnapshotFromQuickFeedback.kt

     * limitations under the License.
     */
    
    package promotion
    
    import jetbrains.buildServer.configs.kotlin.ParameterDisplay
    import jetbrains.buildServer.configs.kotlin.RelativeId
    import vcsroots.gradlePromotionBranches
    
    object PublishBranchSnapshotFromQuickFeedback : PublishGradleDistributionFullBuild(
        promotedBranch = "%branch.to.promote%",
        triggerName = "QuickFeedback",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DirectorySensitivityErrorHandlingIntegrationSpec.groovy

                @CacheableTask
                class TaskWithOutputs extends DefaultTask {
                    @InputFile
                    @PathSensitive(PathSensitivity.RELATIVE)
                    File input
    
                    @InputFiles
                    @PathSensitive(PathSensitivity.RELATIVE)
                    FileCollection sources
    
                    ${output.annotation}
                    @IgnoreEmptyDirectories
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/flags.go

    		"Specifies the default template file to be used when generating the Kubernetes Service for an instance of the echo application. "+
    			"Can be either an absolute path or relative to the templates directory under the echo test component. A default will be selected if not specified.")
    	flag.StringVar(&deploymentTemplateFile, "istio.test.echo.kube.template.deployment", deploymentTemplateFile,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 16:45:53 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    		// there is more than one envoy filter that uses the same name where the proxy version
    		// is set and the priority is not set and a relative operator is used.  Issue a warning
    		message := msg.NewEnvoyFilterUsesRelativeOperation(r)
    
    		// if the proxyVersion is set choose that error message over the relative operation message as
    		// the proxyVersion error message also indicates that the proxyVersion is set
    		count := 0
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/DefaultProjectLayoutTest.groovy

        }
    
        def "can query the project directory"() {
            expect:
            layout.projectDirectory.getAsFile() == projectDir
        }
    
        def "can resolve directory relative to project directory"() {
            def pathProvider = withValues("a", "b")
    
            expect:
            def dir = layout.projectDirectory.dir("sub-dir")
            dir.getAsFile() == projectDir.file("sub-dir")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 23 16:13:03 UTC 2022
    - 9.5K bytes
    - Viewed (0)
Back to top