Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for symlinks (0.18 sec)

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

    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    [!symlink] stop
    
    # gplink1/src/empty where gopathlink -> GOPATH
    symlink $WORK/gopathlink -> gopath
    cd $WORK/gopathlink/src/empty
    go mod init
    rm go.mod
    
    # GOPATH/src/link where link -> out of GOPATH
    symlink $GOPATH/src/link -> $WORK/empty
    cd $WORK/empty
    ! go mod init
    cd $GOPATH/src/link
    go mod init
    stderr link
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. ci/official/upload.sh

      FINAL_URI="$TFCI_ARTIFACT_FINAL_GCS_URI/$TF_VER_FULL"
      gsutil -m rsync -d -r "$DOWNLOADS" "$FINAL_URI"
    
      # Also mirror the latest-uploaded folder to the "latest" directory.
      # GCS does not support symlinks.
      gsutil -m rsync -d -r "$FINAL_URI" "$TFCI_ARTIFACT_LATEST_GCS_URI"
    fi
    
    if [[ "$TFCI_ARTIFACT_FINAL_PYPI_ENABLE" == 1 ]]; then
      twine upload $TFCI_ARTIFACT_FINAL_PYPI_ARGS "$DOWNLOADS"/*.whl
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. cmd/service.go

    		cmd.Env = os.Environ()
    		err := cmd.Run()
    		if err == nil {
    			os.Exit(0)
    		}
    		return err
    	}
    
    	// Use the original binary location. This works with symlinks such that if
    	// the file it points to has been changed we will use the updated symlink.
    	argv0, err := exec.LookPath(os.Args[0])
    	if err != nil {
    		return err
    	}
    
    	// Invokes the execve system call.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_cwd_newline.txt

    # Since we do preserve $PWD (or set it appropriately) for commands, and we do
    # not resolve symlinks unnecessarily, referring to the contents of the unsafe
    # directory via a safe symlink should be ok, and should not inject the data from
    # the symlink target path.
    
    [!symlink] stop 'remainder of test checks symlink behavior'
    [short] stop 'links and runs binaries'
    
    symlink $WORK${/}link -> $DIR
    
    [cgo] go run $WORK${/}link${/}main.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherRegistry.java

        /**
         * Updates the VFS and the watchers after the build finished.
         *
         * This removes content we can't track using file system events, i.e. stuff accessed via symlinks.
         *
         * @return the snapshot hierarchy without snapshots which can't be kept till the next build.
         */
        @CheckReturnValue
        SnapshotHierarchy updateVfsAfterBuildFinished(SnapshotHierarchy root);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. buildscripts/checkdeps.sh

    ##
    ## readlink() {
    ##     return /bin/readlink -f "$1"
    ## }
    ##
    readlink() {
    	TARGET_FILE=$1
    
    	cd $(dirname $TARGET_FILE)
    	TARGET_FILE=$(basename $TARGET_FILE)
    
    	# Iterate down a (possible) chain of symlinks
    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyErrorIntegrationTest.groovy

      - A Closure that returns any supported value.
      - A Callable that returns any supported value.
      - A Provider that provides any supported value.""")
        }
    
        @Test
        @Requires(UnitTestPreconditions.Symlinks)
        void reportsSymLinkWhichPointsToNothing() {
            TestFile link = testFile('src/file')
            link.createLink(testFile('missing'))
    
            Assert.assertFalse(link.isDirectory())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 10:48:19 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. cmd/os_unix.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 typ&os.ModeSymlink == os.ModeSymlink && fi.IsDir() {
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. pkg/volume/util/hostutil/fake_hostutil.go

    func (hu *FakeHostUtil) PathExists(pathname string) (bool, error) {
    	if _, ok := hu.Filesystem[pathname]; ok {
    		return true, nil
    	}
    	return false, nil
    }
    
    // EvalHostSymlinks returns the path name after evaluating symlinks.
    // No-op for testing
    func (hu *FakeHostUtil) EvalHostSymlinks(pathname string) (string, error) {
    	return pathname, nil
    }
    
    // GetOwner returns the integer ID for the user and group of the given path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. cmd/xl-storage-errors.go

    // Check if the given error corresponds to the ENAMETOOLONG (name too long).
    func isSysErrTooLong(err error) bool {
    	return errors.Is(err, syscall.ENAMETOOLONG)
    }
    
    // Check if the given error corresponds to the ELOOP (too many symlinks).
    func isSysErrTooManySymlinks(err error) bool {
    	return errors.Is(err, syscall.ELOOP)
    }
    
    // Check if the given error corresponds to ENOTEMPTY for unix,
    // EEXIST for solaris variants,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top