- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 7,338 for Copy (0.02 sec)
-
cmd/copy-part-range.go
// GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "context" "net/http" "net/url" ) // Writes S3 compatible copy part range error. func writeCopyPartErr(ctx context.Context, w http.ResponseWriter, err error, url *url.URL) {
Registered: 2025-05-25 19:28 - Last Modified: 2021-06-18 03:27 - 2.5K bytes - Viewed (0) -
cmd/copy-part-range_test.go
// but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import "testing" // Test parseCopyPartRange()
Registered: 2025-05-25 19:28 - Last Modified: 2021-04-23 18:58 - 2.5K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java
} return total; } }, NEW { @Override long copy(Readable from, Appendable to) throws IOException { return CharStreams.copy(from, to); } }; abstract long copy(Readable from, Appendable to) throws IOException; } enum TargetSupplier { STRING_WRITER { @Override Appendable get(int sz) { return new StringWriter(sz);
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 3.2K bytes - Viewed (0) -
internal/crypto/sse_test.go
}{ { // 0 - Valid HTTP headers and valid metadata entries for bucket/object Headers: http.Header{ "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm": []string{"AES256"}, "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key": []string{"MzJieXRlc2xvbmdzZWNyZXRrZXltdXN0cHJvdmlkZWQ="}, "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key-Md5": []string{"7PpPLAK26ONlVUGOWlusfg=="}, }, Bucket: "bucket",
Registered: 2025-05-25 19:28 - Last Modified: 2021-06-01 21:59 - 8.4K bytes - Viewed (0) -
internal/crypto/header.go
h.Del(xhttp.AmzMetaUnencryptedContentMD5) } // SSECopy represents AWS SSE-C for copy requests. It provides // functionality to handle SSE-C copy requests. var SSECopy = ssecCopy{} type ssecCopy struct{} // IsRequested returns true if the HTTP headers contains // at least one SSE-C copy header. Regular SSE-C headers // are ignored. func (ssecCopy) IsRequested(h http.Header) bool {
Registered: 2025-05-25 19:28 - Last Modified: 2024-02-22 06:26 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
Smb2IoctlRequest copy = new Smb2IoctlRequest( sh.getConfig(), write ? Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK_WRITE : Smb2IoctlRequest.FSCTL_SRV_COPYCHUNK, dfd.getFileId()); copy.setFlags(Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL); copy.setInputData(new SrvCopychunkCopy(resumeKey, chunkInfo));
Registered: 2025-05-25 00:10 - Last Modified: 2020-07-07 10:52 - 17.1K bytes - Viewed (0) -
bin/init.sh
ISTIO_ENVOY_NATIVE_PATH=${ISTIO_ENVOY_LINUX_RELEASE_PATH} # Copy native envoy binary to TARGET_OUT echo "Copying ${ISTIO_ENVOY_NATIVE_PATH} to ${TARGET_OUT}/${SIDECAR}" cp -f "${ISTIO_ENVOY_NATIVE_PATH}" "${TARGET_OUT}/${SIDECAR}" # Copy the envoy binary to TARGET_OUT_LINUX if the local OS is not Linux if [[ "$GOOS_LOCAL" != "linux" ]]; then
Registered: 2025-05-28 22:53 - Last Modified: 2024-01-25 19:11 - 6.1K bytes - Viewed (1) -
licenses/gopkg.in/yaml.v3/LICENSE
Copyright (c) 2006-2010 Kirill Simonov Copyright (c) 2006-2011 Kirill Simonov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do
Registered: 2025-05-28 22:53 - Last Modified: 2020-02-28 19:48 - 2.1K bytes - Viewed (0) -
cmd/object-handlers_test.go
t.Fatalf("Test %d: Failed to create HTTP request for copy Object: <ERROR> %v", i, err) } // "X-Amz-Copy-Source" header contains the information about the source bucket and the object to copied. if testCase.copySourceHeader != "" { reqV2.Header.Set("X-Amz-Copy-Source", testCase.copySourceHeader) } if testCase.copyModifiedHeader != "" { reqV2.Header.Set("X-Amz-Copy-Source-If-Modified-Since", testCase.copyModifiedHeader)
Registered: 2025-05-25 19:28 - Last Modified: 2025-02-18 16:25 - 163.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java
File destinationFile = getDestinationFile().get().getAsFile(); getFs().copy(copySpec -> { copySpec.from(getHtmlFile()); copySpec.into(destinationFile.getParentFile()); copySpec.rename(s -> destinationFile.getName()); // TODO: Maybe this could be simplified by not using the copy infrastructure and just
Registered: 2025-05-28 11:36 - Last Modified: 2021-09-28 06:35 - 4.1K bytes - Viewed (0)