Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,184 for relativeTo (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheKey.kt

            if (hasRelativeTaskName) {
                // Because unqualified task names are resolved relative to the selected
                // sub-project according to either `projectDirectory` or `currentDirectory`,
                // the relative directory information must be part of the key.
                val projectDir = startParameter.projectDirectory
                if (projectDir != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/configfiles/configfiles_test.go

    			file:          newString(`{"kind":"KubeletConfiguration","apiVersion":"kubelet.config.k8s.io/v1beta1"}`),
    			expect:        newConfig(t),
    			skipOnWindows: true,
    		},
    
    		// relative path
    		{
    			desc: "yaml, relative path is resolved",
    			file: newString(fmt.Sprintf(`kind: KubeletConfiguration
    apiVersion: kubelet.config.k8s.io/v1beta1
    staticPodPath: %s`, relativePath)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 12:18:41 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/internal/objabi/line_test.go

    // license that can be found in the LICENSE file.
    
    package objabi
    
    import (
    	"path/filepath"
    	"runtime"
    	"testing"
    )
    
    // On Windows, "/foo" is reported as a relative path
    // (it is relative to the current drive letter),
    // so we need add a drive letter to test absolute path cases.
    func drive() string {
    	if runtime.GOOS == "windows" {
    		return "c:"
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 24 12:01:30 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_env_suggest.properties

    framework.debug = false
    
    # one day: 86400000, three days: 259200000, five days: 432000000, one week: 604800000, one year: 31556926000
    # special script :: absolute mode: $(2014/07/10), relative mode: addDay(3).addMonth(4)
    # The milliseconds for (relative or absolute) adjust time (set only when test) @LongType *dynamic in development
    time.adjust.time.millis = 0
    
    # ----------------------------------------------------------
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top