Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 162 for symlink2 (5.11 sec)

  1. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

            def projectDir = sample.dir.file(dsl)
            def symlink = GpgCmdFixture.setupGpgCmd(projectDir)
    
            when:
            inDirectory(projectDir)
    
            and:
            run "signRuntimeElements"
    
            then:
            projectDir.file("build/libs/gnupg-signatory-1.0.jar.asc").assertExists()
    
            cleanup:
            GpgCmdFixture.cleanupGpgCmd(symlink)
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/shell.go

    		if err2 := os.RemoveAll(path); err2 != nil && err == nil {
    			err = err2
    		}
    	}
    	return err
    }
    
    // Symlink creates a symlink newname -> oldname.
    func (sh *Shell) Symlink(oldname, newname string) error {
    	// It's not an error to try to recreate an existing symlink.
    	if link, err := os.Readlink(newname); err == nil && link == oldname {
    		return nil
    	}
    
    	if cfg.BuildN || cfg.BuildX {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

            then:
            failure.error.contains('ERROR: JAVA_HOME is set to an invalid directory')
        }
    
        @Requires([UnitTestPreconditions.Symlinks, IntegTestPreconditions.NotEmbeddedExecutor])
        def "fails when java home not set and path does not contain java"() {
            when:
            def links = ['basename', 'dirname', 'uname', 'which', 'sed', 'sh', 'bash']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/cmds.go

    	if s.msg == "" {
    		return "stop"
    	}
    	return "stop: " + s.msg
    }
    
    // Symlink creates a symbolic link.
    func Symlink() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "create a symlink",
    			Args:    "path -> target",
    			Detail: []string{
    				"Creates path as a symlink to target.",
    				"The '->' token (like in 'ls -l' output on Unix) is required.",
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    //sysnb	Setuid(uid int) (err error)
    //sys	Stat(path string, stat *Stat_t) (err error)
    //sys	Statvfs1(path string, buf *Statvfs_t, flags int) (err error) = SYS_STATVFS1
    //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: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. pkg/volume/fc/fc_util.go

    func findDiskWWIDs(wwid string, io ioHandler, deviceUtil volumeutil.DeviceUtil) (string, string) {
    	// Example wwid format:
    	//   3600508b400105e210000900000490000
    	//   <VENDOR NAME> <IDENTIFIER NUMBER>
    	// Example of symlink under by-id:
    	//   /dev/by-id/scsi-3600508b400105e210000900000490000
    	//   /dev/by-id/scsi-<VENDOR NAME>_<IDENTIFIER NUMBER>
    	// The wwid could contain white space and it will be replaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.8K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/preconditions/UnitTestPreconditions.groovy

    @CompileStatic
    class UnitTestPreconditions {
    
        static final class Symlinks implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return satisfied(MacOs) || satisfied(Linux)
            }
        }
    
        static final class NoSymlinks implements TestPrecondition {
            @Override
            boolean isSatisfied() {
                return notSatisfied(Symlinks)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/MoreFiles.java

            // advantages. (If OpenOptions were passed we can't, because Files.lines doesn't have an
            // overload taking OpenOptions, meaning we can't guarantee the same behavior w.r.t. things
            // like following/not following symlinks.)
            return new AsCharSource(charset) {
              @SuppressWarnings("FilesLinesLeak") // the user needs to close it in this case
              @Override
              public Stream<String> lines() throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

            when:
            run "copy"
            then:
            file("build/tmp/testchild").mode == mode
            where:
            mode << [0755, 0776]
        }
    
        @Requires(UnitTestPreconditions.Symlinks)
        def "symlinked file permissions are preserved in copy action"() {
            given:
            def mode = 0746
            def testSourceFile = file(testFileName)
            testSourceFile << "test file content"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. docs/fr/docs/contributing.md

    === "Linux, macOS"
    
        <div class="termy">
    
        ```console
        $ flit install --deps develop --symlink
    
        ---> 100%
        ```
    
        </div>
    
    === "Windows"
    
        Si vous ĂȘtes sous Windows, utilisez `--pth-file` au lieu de `--symlink` :
    
        <div class="termy">
    
        ```console
        $ flit install --deps develop --pth-file
    
        ---> 100%
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top