Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 513 for sh_link (0.41 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. src/os/executable.go

    // Executable returns the path name for the executable that started
    // the current process. There is no guarantee that the path is still
    // pointing to the correct executable. If a symlink was used to start
    // the process, depending on the operating system, the result might
    // be the symlink or the path it pointed to. If a stable result is
    // needed, [path/filepath.EvalSymlinks] might help.
    //
    // Executable returns an absolute path unless an error occurred.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 776 bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/fingerprint/impl/BrokenSymlinkNormalizationStrategyTest.groovy

            strategy << allFingerprintingStrategies
            strategyName = getStrategyName(strategy)
        }
    
        def "non-root broken symlink is fingerprinted as missing for #strategyName"() {
            given:
            def root = file('root')
            root.mkdirs()
            def brokenSymlink = root.file('broken-symlink')
            brokenSymlink.createLink(file('non-existing'))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

            executedAndNotSkipped ":myTask"
        }
    
        def "file system watching works when the project dir is symlinked"() {
            def actualProjectDir = file("parent/projectDir")
            def symlink = file("symlinkedParent")
            symlink.createLink(file("parent"))
    
            def fileToChange = actualProjectDir.file("actualFile")
            fileToChange.createFile()
    
            actualProjectDir.file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. pkg/volume/util/volumepathhandler/volume_path_handler_linux.go

    }
    
    // FindGlobalMapPathUUIDFromPod finds {pod uuid} bind mount under globalMapPath
    // corresponding to map path symlink, and then return global map path with pod uuid.
    // (See pkg/volume/volume.go for details on a global map path and a pod device map path.)
    // ex. mapPath symlink: pods/{podUid}}/{DefaultKubeletVolumeDevicesDirName}/{escapeQualifiedPluginName}/{volumeName} -> /dev/sdX
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/NativePlatformBackedFileMetadataAccessor.java

            }
            AccessType accessType = AccessType.viaSymlink(stat.getType() == FileInfo.Type.Symlink);
            if (accessType == AccessType.VIA_SYMLINK) {
                try {
                    stat = files.stat(f, true);
                } catch (NativeException e) {
                    // For a symlink cycle, file.exists() returns false when unable to stat the file.
                    if (!f.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:55 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/Deleter.java

         *     <li>a symlink pointing to an existing directory, then either the linked directory's
         *     contents are removed recursively (if {@code followSymlinks} is {@code true}),
         *     or the link is removed and a new directory is created (if {@code followSymlinks}
         *     is {@code false}),</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. src/runtime/testdata/testprogcgo/stackswitch.c

    		exit(1);
    	}
    
    	if (getcontext(&uctx_switch) == -1) {
    		perror("getcontext");
    		exit(1);
    	}
    	uctx_switch.uc_stack.ss_sp = stack1;
    	uctx_switch.uc_stack.ss_size = STACK_SIZE;
    	uctx_switch.uc_link = &uctx_save;
    	makecontext(&uctx_switch, stackSwitchCallback, 0);
    
    	if (swapcontext(&uctx_save, &uctx_switch) == -1) {
    		perror("swapcontext");
    		exit(1);
    	}
    
    	if (getcontext(&uctx_switch) == -1) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 15:17:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

      }
    
      private void setSuccessor(int entry, int succ) {
        long succMask = (~0L) >>> 32;
        setLink(entry, (link(entry) & ~succMask) | ((succ + 1) & succMask));
      }
    
      private void setPredecessor(int entry, int pred) {
        long predMask = ~0L << 32;
        setLink(entry, (link(entry) & ~predMask) | ((long) (pred + 1) << 32));
      }
    
      private void setSucceeds(int pred, int succ) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/jdk7/WindowsJdk7Symlink.java

    import java.io.File;
    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.LinkOption;
    import java.nio.file.attribute.BasicFileAttributes;
    
    /**
     * Represents the Symlink facilities available on JDK 7 or better on Windows.
     * <p>
     * This subclass is used so that we don't accidentally start creating Symlinks
     * on Windows where it is often not safe to assume that a normal user will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top