Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 389 for symlinks (0.62 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadataAccessor.java

         * {@link org.gradle.internal.file.FileType#Missing}.
         * <p>
         * Such cases include:
         * <ul>
         *     <li>actual missing files</li>
         *     <li>broken symlinks</li>
         *     <li>circular symlinks</li>
         *     <li>named pipes</li>
         * </ul>
         */
        FileMetadata stat(File f);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileMetadata.java

         *
         * If we have a symlink situation like `symlink1` -&gt; `symlink2` -&gt; `target`,
         * then the metadata for `symlink1` will have an access type {@link AccessType#VIA_SYMLINK}
         * and the metadata of `target`, i.e. the accessor will resolve transitive symlinks.
         *
         * If the directory `symlinkedDir` -&gt; `targetDir` is a symlink, then the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/testdata/script/list_goroot_symlink.txt

    # Construct a fake GOROOT in $WORK/lib/goroot whose src directory is a symlink
    # to a subdirectory of $WORK/share. This mimics the directory structure reported
    # in https://go.dev/issue/57754.
    #
    # Symlink everything else to the original $GOROOT to avoid needless copying work.
    
    mkdir $WORK/lib/goroot
    mkdir $WORK/share/goroot
    symlink $WORK/share/goroot/src -> $GOROOT${/}src
    symlink $WORK/lib/goroot/src -> ../../share/goroot/src
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                def symlink = new File(baseDir, "symlink")
                def symlinked = new File(baseDir, "symlinked")
                def fileCollection = $code
    
                assert fileCollection.contains(file)
                assert fileCollection.contains(symlink)
                assert fileCollection.contains(symlinked)
                assert fileCollection.files == [file, symlink, symlinked] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top