Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cde (0.23 sec)

  1. src/archive/tar/writer_test.go

    		tests: []testFnc{
    			testWrite{"ab", 2, nil},
    			testRemaining{6, 3},
    			testReadFrom{fileOps{int64(3), "cde"}, 6, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    		tests: []testFnc{
    			testReadFrom{fileOps{"ab", int64(3), "cde"}, 8, nil},
    			testRemaining{0, 0},
    		},
    	}, {
    		maker: makeSparse{makeReg{5, "abcde"}, sparseHoles{{2, 3}}, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  2. src/path/filepath/path_test.go

    	root, path, want string
    }
    
    var reltests = []RelTests{
    	{"a/b", "a/b", "."},
    	{"a/b/.", "a/b", "."},
    	{"a/b", "a/b/.", "."},
    	{"./a/b", "a/b", "."},
    	{"a/b", "./a/b", "."},
    	{"ab/cd", "ab/cde", "../cde"},
    	{"ab/cd", "ab/c", "../c"},
    	{"a/b", "a/b/c/d", "c/d"},
    	{"a/b", "a/b/../c", "../c"},
    	{"a/b/../c", "a/b", "../b"},
    	{"a/b/c", "a/c/d", "../../c/d"},
    	{"a/b", "c/d", "../../c/d"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top