Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 153 for symlinks (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/file/delete/DeleteSpecInternal.java

        /**
         * @return the paths to be deleted.
         */
        Object[] getPaths();
    
        /**
         * Returns whether or not deletion will follow symlinks.
         *
         * @return whether or not deletion follows symlinks.
         */
        boolean isFollowSymlinks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  2. pkg/volume/util/subpath/subpath.go

    	// symlinks. Note that the function makes sure that it creates the directory
    	// somewhere under the base, nothing else. E.g. if the directory already
    	// exists, it may exist outside of the base due to symlinks.
    	// This method should be used if the directory to create is inside volume
    	// that's under user control. User must not be able to use symlinks to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 27 02:59:53 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverSpec.groovy

        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "normalizes path which points to a link to something that does not exist"() {
            def file = new File(tmpDir.testDirectory, 'a/other.txt')
            createLink(file, 'unknown.txt')
            assert !file.exists() && !file.file
    
            expect:
            normalize(file) == file
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         * hierarchy containing a symlink, as we can't be sure if the snapshot would still be valid of
         * the relocated link.
         *
         * If performance around symlinks becomes more important, we can improve this in multiple ways:
         * - keep symlinks that don't point outside the relocated snapshot hierarchy,
         * - re-snapshot relocated locations pointed to by snapshots,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SupportedBuildJvmIntegrationTest.groovy

    class SupportedBuildJvmIntegrationTest extends AbstractIntegrationSpec {
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "can start Gradle with a JDK that contains symlinks"() {
            // Zulu sets their Java distribution up like this
            def installedJdk = Jvm.current().javaHome
            def symlinkedJdk = file("symlink-jdk")
            installedJdk.listFiles().each {
                symlinkedJdk.file(it.name).createLink(it)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. cmd/os_other.go

    				if err != nil {
    					// It got deleted in the meantime, not found
    					// or returns too many symlinks ignore this
    					// file/directory.
    					if osIsNotExist(err) || isSysErrPathNotFound(err) ||
    						isSysErrTooManySymlinks(err) {
    						continue
    					}
    					return err
    				}
    
    				// Ignore symlinked directories.
    				if fi.IsDir() {
    					continue
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 13 15:14:36 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatisticsTest.groovy

            then:
            3 * statisticsCollector.recordVisitDirectory()
            2 * statisticsCollector.recordVisitFile()
            0 * _
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "can visit broken symlink"() {
            given:
            def rootDir = tmpDir.createDir("root")
            rootDir.file('brokenSymlink').createLink("linkTarget")
            assert rootDir.listFiles()*.exists() == [false]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. pkg/volume/volume_linux.go

    		klog.ErrorS(err, "Lchown failed", "path", filename)
    	}
    
    	// chmod passes through to the underlying file for symlinks.
    	// Symlinks have a mode of 777 but this really doesn't mean anything.
    	// The permissions of the underlying file are what matter.
    	// However, if one reads the mode of a symlink then chmods the symlink
    	// with that mode, it changes the mode of the underlying file, overridden
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 19:34:37 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_symlink.txt

    env GO111MODULE=on
    [!symlink] skip
    
    # 'go get' should resolve modules of imported packages.
    go get
    go list -deps -f '{{.Module}}' .
    stdout golang.org/x/text
    
    go get ./subpkg
    go list -deps -f '{{.Module}}' ./subpkg
    stdout golang.org/x/text
    
    # Create a copy of the module using symlinks in src/links.
    mkdir links
    symlink links/go.mod -> $GOPATH/src/go.mod
    symlink links/go.sum -> $GOPATH/src/go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/resources/valid-precondition-combinations.csv

    UnitTestPreconditions$SmartTerminalAvailable
    UnitTestPreconditions$StableGroovy
    UnitTestPreconditions$StableGroovy,UnitTestPreconditions$Jdk11OrLater,UnitTestPreconditions$Jdk21OrEarlier
    UnitTestPreconditions$Symlinks
    UnitTestPreconditions$Unix
    UnitTestPreconditions$UnixDerivative
    UnitTestPreconditions$UnixDerivative,PluginTestPreconditions$BashAvailable
    UnitTestPreconditions$UnixDerivative,PluginTestPreconditions$DashAvailable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top