Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 948 for relativeTo (1.86 sec)

  1. src/cmd/go/testdata/script/build_relative_pkgdir.txt

    env GO111MODULE=off
    
    # Regression test for golang.org/issue/21309: accept relative -pkgdir argument.
    
    [short] skip
    
    mkdir $WORK/gocache
    env GOCACHE=$WORK/gocache
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 01 08:31:45 UTC 2022
    - 189 bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    // no dot.
    func Ext(path string) string {
    	return filepathlite.Ext(path)
    }
    
    // EvalSymlinks returns the path name after the evaluation of any symbolic
    // links.
    // If path is relative the result will be relative to the current directory,
    // unless one of the components is an absolute symbolic link.
    // EvalSymlinks calls [Clean] on the result.
    func EvalSymlinks(path string) (string, error) {
    	return evalSymlinks(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/os/path_windows.go

    	pathLength := len(path)
    	if !filepathlite.IsAbs(path) {
    		// If the path is relative, we need to prepend the working directory
    		// plus a separator to the path before we can determine if it's too long.
    		// We don't want to call syscall.Getwd here, as that call is expensive to do
    		// every time fixLongPath is called with a relative path, so we use a cache.
    		// Note that getwdCache might be outdated if the working directory has been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/index_format.txt

    for each rawPackage:
    	error uint32 - string offset // error is produced by fsys.ReadDir or fmt.Errorf
    	dir uint32 - string offset (directory path relative to module root)
    	len(sourceFiles) uint32
    	sourceFiles [n]uint32 - offset to source file (relative to start of index file)
    	for each sourceFile:
    		error - string offset // error is either produced by fmt.Errorf,errors.New or is io.EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

    - d1.jar:
    \t- file differs (relative to root project 'projectText'): (expected) ${pathLiteral("build/libs/projectText-1.0.jar")} != (actual) d1.jar
    - a2.txt:
    \t- file differs (relative to root project 'projectText'): (expected) ${pathLiteral("build/libs/projectText-1.0.jar")} != (actual) a2.txt
    \t- extension differs: (expected) jar != (actual) txt
    - b3.txt:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

        }
    
        def "selects matching task relative to default project when relative path is provided"() {
            withIncludedBuilds()
    
            when:
            selector.resolveTaskName(null, null, target, "proj:task")
    
            then:
            1 * taskSelector.getSelection(_, root.defaultProject, "task", false)
        }
    
        def "selects matching task relative to root project of included build"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/ProjectLayoutIntegrationTest.groovy

            then:
            outputContains("plugin build dir: " + testDirectory.file("build"))
            outputContains("task build dir: " + testDirectory.file("output"))
        }
    
        def "can define and resolve calculated directory relative to project and build directory"() {
            buildFile """
                def childDirName = "child"
                def srcDir = layout.projectDir.dir("src").dir(providers.provider { childDirName })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 18:31:24 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    		pod2: newPodMemoryStats(pod2, resource.MustParse("300Mi")), // 300 relative to request
    		pod3: newPodMemoryStats(pod3, resource.MustParse("800Mi")), // 700 relative to request
    		pod4: newPodMemoryStats(pod4, resource.MustParse("300Mi")), // 200 relative to request
    		pod5: newPodMemoryStats(pod5, resource.MustParse("800Mi")), // -200 relative to request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                }
            """
    
            when:
            executer.expectDocumentedDeprecationWarning("Configuring a Java executable via a relative path. " +
                "This behavior has been deprecated. This will fail with an error in Gradle 9.0. " +
                "Resolving relative file paths might yield unexpected results, there is no single clear location it would make sense to resolve against. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginConvention.java

        /**
         * The name of the docs directory. Can be a name or a path relative to the build dir.
         */
        public abstract String getDocsDirName();
    
        public abstract void setDocsDirName(String docsDirName);
    
        /**
         * The name of the test results directory. Can be a name or a path relative to the build dir.
         */
        public abstract String getTestResultsDirName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top