Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 129 for symlink2 (2.92 sec)

  1. src/cmd/cgo/internal/testshared/shared_test.go

    		} else {
    			data[i] = 'a'
    		}
    	} else {
    		// assume it's a text file
    		data = append(data, '\n')
    	}
    
    	// If the file is still a symlink from an overlay, delete it so that we will
    	// replace it with a regular file instead of overwriting the symlinked one.
    	fi, err := os.Lstat(path)
    	if err == nil && !fi.Mode().IsRegular() {
    		fi, err = os.Stat(path)
    		if err := os.Remove(path); err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  2. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            exception.message == "Found existing snapshot at '${fileInWatchableHierarchy.absolutePath}' for unwatched hierarchy '${watchableHierarchy.absolutePath}'"
        }
    
        def "does not watch symlinks and removes symlinks at the end of the build"() {
            def watchableHierarchy = file("watchable").createDir()
            def symlinkInWatchableHierarchy = watchableHierarchy.file("some/dir/file.txt").createFile()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sysnb	Setsid() (pid int, err error)
    //sysnb	Settimeofday(tp *Timeval) (err error)
    //sysnb	Setuid(uid int) (err error)
    //sys	Statfs(path string, stat *Statfs_t) (err error)
    //sys	Symlink(path string, link string) (err error)
    //sys	Symlinkat(oldpath string, newdirfd int, newpath string) (err error)
    //sys	Sync() (err error)
    //sys	Truncate(path string, length int64) (err error)
    //sys	Umask(newmask int) (oldmask int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    	SYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_REBOOT                 = 55  // { int reboot(int opt); }
    	SYS_REVOKE                 = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK               = 58  // { int readlink(char *path, char *buf, int count); }
    	SYS_EXECVE                 = 59  // { int execve(char *fname, char **argv, char **envv); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    	SYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    func Exec(argv0 string, argv []string, envv []string) error {
    	return syscall.Exec(argv0, argv, envv)
    }
    
    // Lutimes sets the access and modification times tv on path. If path refers to
    // a symlink, it is not dereferenced and the timestamps are set on the symlink.
    // If tv is nil, the access and modification times are set to the current time.
    // Otherwise tv must contain exactly 2 elements, with access time as the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. doc/godebug.md

    set, and reparse points that are not symlinks, Unix sockets, or dedup files now
    always have [`os.ModeIrregular`](/pkg/os#ModeIrregular) set. As a result of these changes,
    [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks) no longer evaluates
    mount points, which was a source of many inconsistencies and bugs.
    At previous versions (`winsymlink=0`), mount points are treated as symlinks,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

            SnapshotHierarchy newRoot = root;
            // We are not being notified about changes to content accessed via symlinks
            newRoot = removeIndirectlySymlinkedRoots(newRoot, invalidator);
            newRoot = removeDirectSymlinks(newRoot, invalidator);
            return newRoot;
        }
    
        @CheckReturnValue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_IOCTL                = 54  // { int|sys||ioctl(int fd, u_long com, ... void *data); }
    	SYS_REVOKE               = 56  // { int|sys||revoke(const char *path); }
    	SYS_SYMLINK              = 57  // { int|sys||symlink(const char *path, const char *link); }
    	SYS_READLINK             = 58  // { ssize_t|sys||readlink(const char *path, char *buf, size_t count); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top