- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of about 10,000 for copy (0.19 sec)
-
tensorflow/c/experimental/filesystem/plugins/posix/copy_file.h
limitations under the License. ==============================================================================*/ #ifndef TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_PLUGINS_POSIX_COPY_FILE_H_ #define TENSORFLOW_C_EXPERIMENTAL_FILESYSTEM_PLUGINS_POSIX_COPY_FILE_H_ #include <sys/stat.h> namespace tf_posix_filesystem { // Transfers up to `size` bytes from `dst_fd` to `src_fd`. //
C - Registered: 2023-11-28 12:39 - Last Modified: 2019-11-22 21:23 - 1.2K bytes - Viewed (0) -
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) {
Go - Registered: 2023-12-03 19:28 - Last Modified: 2021-06-18 03:27 - 2.5K bytes - Viewed (0) -
tensorflow/c/experimental/filesystem/plugins/posix/copy_file_portable.cc
#include <unistd.h> #include <memory> #include "tensorflow/c/experimental/filesystem/plugins/posix/copy_file.h" namespace tf_posix_filesystem { // Transfers up to `size` bytes from `dst_fd` to `src_fd`. // // This method uses a temporary buffer to hold contents. int CopyFileContents(int dst_fd, int src_fd, off_t size) { // Use a copy buffer of 128KB but don't store it on the stack.
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2019-11-22 21:23 - 1.9K bytes - Viewed (0) -
tensorflow/c/experimental/filesystem/plugins/posix/copy_file_linux.cc
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS,
C++ - Registered: 2023-11-28 12:39 - Last Modified: 2019-11-22 21:23 - 1.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()
Go - Registered: 2023-12-03 19:28 - Last Modified: 2021-04-23 18:58 - 2.5K bytes - Viewed (0) -
.idea/runConfigurations/Generate_Compiler_Arguments_Copy.xml
<component name="ProjectRunConfigurationManager"> <configuration default="false" name="Generate Compiler Arguments Copy" type="GradleRunConfiguration" factoryName="Gradle" folderName="Generators"> <ExternalSystemSettings> <option name="executionName" /> <option name="externalProjectPath" value="$PROJECT_DIR$/generators" /> <option name="externalSystemIdString" value="GRADLE" /> <option name="scriptParameters" value="" />
XML - Registered: 2023-12-01 08:18 - Last Modified: 2023-04-03 13:47 - 1K bytes - Viewed (0) -
ci/official/containers/linux_arm64/Dockerfile
################################################################################ COPY --from=builder /dt10 /dt10 COPY --from=builder /patchelf/patchelf_0.14.3-1_arm64.deb /patchelf/patchelf_0.14.3-1_arm64.deb # Install devtoolset devel dependencies COPY setup.sources.sh /setup.sources.sh COPY setup.packages.sh /setup.packages.sh COPY devel.packages.txt /devel.packages.txt COPY cuda.packages.txt /cuda.packages.txt
Plain Text - Registered: 2023-11-28 12:39 - Last Modified: 2023-11-03 13:38 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/CopyUtilTest.java
result = copy(outputFile, "UTF-8", writer); assertThat(writer.toString(), is(urlString)); } /** * @throws Exception */ @Test public void testFileToFile_Encoding() throws Exception { int result = copy(inputFile, "UTF-8", outputFile, "Shift_JIS"); assertThat(result, is(urlString.length())); result = copy(outputFile, "Shift_JIS", writer);
Java - Registered: 2023-12-01 20:58 - Last Modified: 2022-01-19 23:41 - 4.6K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/ComparatorDelegationOverheadBenchmark.java
Integer[] copy = inputArrays[i & 0xFF].clone(); Arrays.sort(copy); tmp += copy[0]; } return tmp; } @Benchmark int arraysSortOrderingNatural(int reps) { int tmp = 0; for (int i = 0; i < reps; i++) { Integer[] copy = inputArrays[i & 0xFF].clone(); Arrays.sort(copy, Ordering.natural()); tmp += copy[0]; } return tmp; }
Java - Registered: 2023-12-01 12:43 - Last Modified: 2017-12-04 17:37 - 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); }
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-02-23 18:59 - 3.2K bytes - Viewed (0)