Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for overwrite (0.07 sec)

  1. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

            SmbFile file = new SmbFile(baseUrl + "shared/overwrite.txt", context);
            String initialContent = "Initial content\n";
            String newContent = "New content\n";
    
            // Write initial content
            try (OutputStream out = file.openOutputStream(false)) {
                out.write(initialContent.getBytes("UTF-8"));
            }
    
            // Overwrite with new content
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
  2. 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  3. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 86.7K bytes
    - Viewed (0)
  4. 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 Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 13 11:33:47 UTC 2025
    - 91.7K bytes
    - Viewed (0)
  6. 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 Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 66K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbTransportImpl.java

            return this.sessions.size();
        }
    
        @Override
        public int getInflightRequests() {
            return this.response_map.size();
        }
    
        @Override
        public boolean isDisconnected() {
            final Socket s = this.socket;
            return super.isDisconnected() || s == null || s.isClosed();
        }
    
        @Override
        public boolean isFailed() {
            final Socket s = this.socket;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/CharMatcher.java

        public String trimTrailingFrom(CharSequence sequence) {
          return sequence.toString();
        }
    
        @Override
        public int countIn(CharSequence sequence) {
          checkNotNull(sequence);
          return 0;
        }
    
        @Override
        public CharMatcher and(CharMatcher other) {
          checkNotNull(other);
          return this;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        Set<K> createKeySet() {
          return createMaybeNavigableKeySet();
        }
    
        @Override
        Map<K, Collection<V>> createAsMap() {
          return createMaybeNavigableAsMap();
        }
    
        @Override
        protected Collection<V> createCollection() {
          return factory.get();
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        Set<K> createKeySet() {
          return createMaybeNavigableKeySet();
        }
    
        @Override
        Map<K, Collection<V>> createAsMap() {
          return createMaybeNavigableAsMap();
        }
    
        @Override
        protected Collection<V> createCollection() {
          return factory.get();
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 86.6K bytes
    - Viewed (0)
Back to top