- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for copyInto (0.05 sec)
-
android/guava/src/com/google/common/collect/Sets.java
* stable. There is usually no reason to retain a reference of type {@code SetView}; typically, * you either use it as a plain {@link Set}, or immediately invoke {@link #immutableCopy} or * {@link #copyInto} and forget the {@code SetView} itself. * * @since 2.0 */ public abstract static class SetView<E extends @Nullable Object> extends AbstractSet<E> { private SetView() {} // no subclasses but our own
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 78.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
/** * */ void clearAttributeCache () { this.attrExpiration = 0; this.sizeExpiration = 0; } @Override public void copyTo ( SmbResource d ) throws SmbException { if ( ! ( d instanceof SmbFile ) ) { throw new SmbException("Invalid target resource"); } SmbFile dest = (SmbFile) d;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0)