Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for copyDir (0.15 sec)

  1. src/main/java/jcifs/smb/SmbFile.java

        }
    
    
        void copyRecursive ( SmbFile dest, byte[][] b, int bsize, WriterThread w, SmbTreeHandleImpl sh, SmbTreeHandleImpl dh ) throws CIFSException {
            if ( isDirectory() ) {
                SmbCopyUtil.copyDir(this, dest, b, bsize, w, sh, dh);
            }
            else {
                SmbCopyUtil.copyFile(this, dest, b, bsize, w, sh, dh);
            }
    
            dest.clearAttributeCache();
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        /**
         * Creates a copy of this reference for the given entry.
         *
         * <p>{@code value} may be null only for a loading reference.
         */
        ValueReference<K, V> copyFor(
            ReferenceQueue<V> queue, @CheckForNull V value, ReferenceEntry<K, V> entry);
    
        /**
         * Notify pending loads that a new value was set. This is only relevant to loading value
         * references.
         */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

              return null;
            }
            StrongKeyWeakValueEntry<K, V> newEntry = newEntry(segment, entry.key, entry.hash, newNext);
            newEntry.valueReference = entry.valueReference.copyFor(segment.queueForValues, newEntry);
            return newEntry;
          }
    
          @Override
          public void setValue(
              StrongKeyWeakValueSegment<K, V> segment, StrongKeyWeakValueEntry<K, V> entry, V value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              return null;
            }
            StrongKeyWeakValueEntry<K, V> newEntry = newEntry(segment, entry.key, entry.hash, newNext);
            newEntry.valueReference = entry.valueReference.copyFor(segment.queueForValues, newEntry);
            return newEntry;
          }
    
          @Override
          public void setValue(
              StrongKeyWeakValueSegment<K, V> segment, StrongKeyWeakValueEntry<K, V> entry, V value) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          return 1;
        }
    
        @Override
        public @Nullable ReferenceEntry<K, V> getEntry() {
          return null;
        }
    
        @Override
        public ValueReference<K, V> copyFor(
            ReferenceQueue<V> queue, V value, ReferenceEntry<K, V> entry) {
          return this;
        }
    
        public void setLoading(boolean loading) {
          this.loading = loading;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 110.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          return 1;
        }
    
        @Override
        public @Nullable ReferenceEntry<K, V> getEntry() {
          return null;
        }
    
        @Override
        public ValueReference<K, V> copyFor(
            ReferenceQueue<V> queue, V value, ReferenceEntry<K, V> entry) {
          return this;
        }
    
        public void setLoading(boolean loading) {
          this.loading = loading;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 112.3K bytes
    - Viewed (0)
Back to top