Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for simpleJoin (0.26 sec)

  1. src/path/filepath/path_windows_test.go

    	testdirs := append(EvalSymlinksTestDirs, test)
    	for _, d := range testdirs {
    		var err error
    		path := simpleJoin(tmpDir, d.path)
    		if d.dest == "" {
    			err = os.Mkdir(path, 0755)
    		} else {
    			err = os.Symlink(d.dest, path)
    		}
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	path := simpleJoin(tmpDir, test.path)
    
    	testEvalSymlinks(t, path, test.dest)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    		var err error
    		path := simpleJoin(tmpDir, d.path)
    		if d.dest == "" {
    			err = os.Mkdir(path, 0755)
    		} else {
    			err = os.Symlink(d.dest, path)
    		}
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    
    	// Evaluate the symlink farm.
    	for _, test := range EvalSymlinksTests {
    		path := simpleJoin(tmpDir, test.path)
    
    		dest := simpleJoin(tmpDir, test.dest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    I suppose?'
    
      `Yes,' said Alice doubtfully:  `it means--to--make--anything--prettier.'
    
      `Well, then,' the Gryphon went on, `if you don't know what to
    uglify is, you ARE a simpleton.'
    
      Alice did not feel encouraged to ask any more questions about
    it, so she turned to the Mock Turtle, and said `What else had you
    to learn?'
    
      `Well, there was Mystery,' the Mock Turtle replied, counting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    I suppose?'
    
      `Yes,' said Alice doubtfully:  `it means--to--make--anything--prettier.'
    
      `Well, then,' the Gryphon went on, `if you don't know what to
    uglify is, you ARE a simpleton.'
    
      Alice did not feel encouraged to ask any more questions about
    it, so she turned to the Mock Turtle, and said `What else had you
    to learn?'
    
      `Well, there was Mystery,' the Mock Turtle replied, counting
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top