- Sort Score
- Result 10 results
- Languages All
Results 1011 - 1020 of 1,929 for paras (0.02 sec)
-
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ExecutionException; import org.checkerframework.checker.nullness.qual.Nullable; /** * LocalCache emulation for GWT. * * @param <K> the base key type * @param <V> the base value type * @author Charles Fry * @author Jon Donovan */ public class LocalCache<K, V> implements ConcurrentMap<K, V> { private static final int UNSET_INT = CacheBuilder.UNSET_INT;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 27 19:19:19 UTC 2024 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/OutputStreamUtil.java
/** * {@link OutputStream}用のユーティリティクラスです。 * * @author shot */ public abstract class OutputStreamUtil { /** * {@link FileOutputStream}を作成します。 * * @param file * ファイル。{@literal null}であってはいけません * @return ファイルへ出力する{@link FileOutputStream} * @see FileOutputStream#FileOutputStream(File) */ public static FileOutputStream create(final File file) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComDeleteDirectory.java
import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * */ public class SmbComDeleteDirectory extends ServerMessageBlock { /** * * @param config * @param path */ public SmbComDeleteDirectory ( Configuration config, String path ) { super(config, SMB_COM_DELETE_DIRECTORY, path); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
* * @author higa */ public abstract class SerializeUtil { private static final int BYTE_ARRAY_SIZE = 8 * 1024; /** * オブジェクトをシリアライズできるかテストします。 * * @param obj * シリアライズ対象のオブジェクト。{@literal null}であってはいけません * @return シリアライズして復元したオブジェクト */ public static Object serialize(final Object obj) { assertArgumentNotNull("obj", obj);
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalKeyOfBeanMapException.java
public class IllegalKeyOfBeanMapException extends ClIllegalArgumentException { private static final long serialVersionUID = 3456740832476626338L; /** * インスタンスを構築します。 * * @param key * マップのキー * @param map * マップ */ public IllegalKeyOfBeanMapException(final Object key, final Map<?, ?> map) { super("key", "ECL0016", asArray(key, map)); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/StringUtil.java
public final class StringUtil { /** * */ private StringUtil () {} /** * Implementation of {@link java.lang.String#join} backported for JDK7. * * @param delimiter * @param elements * @return elements separated by delimiter */ public static String join ( CharSequence delimiter, CharSequence... elements ) { StringBuilder sb = new StringBuilder();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java
/** * */ public class TransCallNamedPipeResponse extends SmbComTransactionResponse { private final byte[] outputBuffer; /** * @param config * @param inB */ public TransCallNamedPipeResponse ( Configuration config, byte[] inB ) { super(config); this.outputBuffer = inB; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:05:22 UTC 2020 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationValuePreprocessor.java
* unmarshalled into that type. The preprocessor is not required to perform any type conversion but should rather * filter out incompatible values from its result. * * @param value The configuration value to preprocess, must not be {@code null}. * @param type The target type of the value, may be {@code null}. * @return The processed configuration value or {@code null} if none.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/Striped64.java
* contention. See above for explanation. This method suffers the usual non-modularity problems of * optimistic retry code, relying on rechecked sets of reads. * * @param x the value * @param hc the hash code holder * @param wasUncontended false if CAS failed before call */ final void retryUpdate(long x, @CheckForNull int[] hc, boolean wasUncontended) { int h; if (hc == null) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Jun 14 17:55:55 UTC 2024 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
private byte[] sealServerKey; private Cipher sealClientHandle; private Cipher sealServerHandle; /** * @param tc * context to use * @param auth * credentials * @param doSigning * whether signing is requested */ public NtlmContext ( CIFSContext tc, NtlmPasswordAuthenticator auth, boolean doSigning ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0)