- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 74 for overwrite (0.06 sec)
-
android/guava/src/com/google/common/util/concurrent/Futures.java
checkNotNull(function); return new Future<O>() { @Override public boolean cancel(boolean mayInterruptIfRunning) { return input.cancel(mayInterruptIfRunning); } @Override public boolean isCancelled() { return input.isCancelled(); } @Override public boolean isDone() { return input.isDone(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 64.7K bytes - Viewed (0) -
cmd/iam-store.go
if err != nil { return updatedAt, err } if len(policyBuf) > maxSVCSessionPolicySize { return updatedAt, errSessionPolicyTooLarge } // Overwrite session policy claims. m.Set(policy.SessionPolicyName, base64.StdEncoding.EncodeToString(policyBuf)) m.Set(iamPolicyClaimNameSA(), embeddedPolicyType) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
cmd/xl-storage.go
return res, osErrToFileErr(err) } } } } } // Set skipParent to skip mkdirAll() calls for deeply nested objects // - if its an overwrite // - if its a versioned object // // This can potentiall reduce syscalls by strings.Split(path, "/") // times relative to the object name. skipParent := dstVolumeDir if len(dstBuf) > 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0) -
tensorflow/c/c_api.h
// // If the number of dimensions is unknown, `num_dims` must be set to // -1 and `dims` can be null. If a dimension is unknown, the // corresponding entry in the `dims` array must be -1. // // This does not overwrite the existing shape associated with `output`, // but merges the input shape with the existing shape. For example, // setting a shape of [-1, 2] with an existing shape [2, -1] would set
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Futures.java
checkNotNull(function); return new Future<O>() { @Override public boolean cancel(boolean mayInterruptIfRunning) { return input.cancel(mayInterruptIfRunning); } @Override public boolean isCancelled() { return input.isCancelled(); } @Override public boolean isDone() { return input.isDone(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 64.4K bytes - Viewed (0) -
cmd/xl-storage_test.go
{ srcVol: "src-vol", destVol: "dest-vol", srcPath: "path/", destPath: "new-path/", expectedErr: nil, }, // TestXLStorage case - 3. // TestXLStorage to overwrite destination file. { srcVol: "src-vol", destVol: "dest-vol", srcPath: "file2", destPath: "file-one", expectedErr: nil, }, // TestXLStorage case - 4.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 66.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
} // // Fesen Client // @Override public ThreadPool threadPool() { return client.threadPool(); } @Override public AdminClient admin() { return client.admin(); } @Override public ActionFuture<IndexResponse> index(final IndexRequest request) { return client.index(request);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedMap.java
@Override public ImmutableSet<Entry<K, V>> entrySet() { return super.entrySet(); } @Override ImmutableSet<Entry<K, V>> createEntrySet() { class EntrySet extends ImmutableMapEntrySet<K, V> { @Override public UnmodifiableIterator<Entry<K, V>> iterator() { return asList().iterator(); } @Override public Spliterator<Entry<K, V>> spliterator() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 50.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
} @Override public Activation transformActivation(Activation target) { stk.push(new ActivationFrame("activation", Optional.of(target))); try { return super.transformActivation(target); } finally { stk.pop(); } } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
return this.sessions.size(); } @Override public int getInflightRequests () { return this.response_map.size(); } @Override public boolean isDisconnected () { Socket s = this.socket; return super.isDisconnected() || s == null || s.isClosed(); } @Override public boolean isFailed () { Socket s = this.socket;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)