Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for src (0.12 sec)

  1. cmd/test-utils_test.go

    		return nil, err
    	}
    
    	return req, nil
    }
    
    var src = rand.NewSource(time.Now().UnixNano())
    
    func randString(n int) string {
    	b := make([]byte, n)
    	// A src.Int63() generates 63 random bits, enough for letterIdxMax characters!
    	for i, cache, remain := n-1, src.Int63(), letterIdxMax; i >= 0; {
    		if remain == 0 {
    			cache, remain = src.Int63(), letterIdxMax
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 17:26:51 GMT 2024
    - 76.2K bytes
    - Viewed (0)
  2. cmd/xl-storage.go

    			} else if isSysErrIO(err) {
    				return errFaultyDisk
    			}
    			return err
    		}
    	}
    	srcIsDir := HasSuffix(srcPath, SlashSeparator)
    	dstIsDir := HasSuffix(dstPath, SlashSeparator)
    	// Either src and dst have to be directories or files, else return error.
    	if !(srcIsDir && dstIsDir || !srcIsDir && !dstIsDir) {
    		return errFileAccessDenied
    	}
    	srcFilePath := pathutil.Join(srcVolumeDir, srcPath)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  3. cmd/xl-storage_test.go

    	if err := xlStorage.AppendFile(context.Background(), "src-vol", "file2", []byte("Hello, world")); err != nil {
    		t.Fatalf("Unable to create file, %s", err)
    	}
    	if err := xlStorage.AppendFile(context.Background(), "src-vol", "file3", []byte("Hello, world")); err != nil {
    		t.Fatalf("Unable to create file, %s", err)
    	}
    	if err := xlStorage.AppendFile(context.Background(), "src-vol", "file4", []byte("Hello, world")); err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
Back to top