- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 1,568 for para (0.1 sec)
-
src/main/java/org/codelibs/core/io/ReaderUtil.java
public abstract class ReaderUtil { /** デフォルトのバッファサイズ */ private static final int BUF_SIZE = 4096; /** * 指定のエンコーディングでファイルから入力する{@link Reader}を作成します。 * * @param is * 入力ストリーム。{@literal null}であってはいけません * @param encoding * 入力ストリームのエンコーディング。{@literal null}や空文字列であってはいけません * @return ファイルかへ出力する{@link Reader} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 4.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/DefaultMirrorSelector.java
* <li>{@code repo,repo1} = {@code repo} or {@code repo1},</li> * <li>{@code *,!repo1} = everything except {@code repo1}.</li> * </ul> * * @param originalRepository to compare for a match. * @param pattern used for match. * @return true if the repository is a match to this pattern. */ static boolean matchPattern(ArtifactRepository originalRepository, String pattern) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/AnnotationUtil.java
map.put(name, v); } } return map; } /** * アノテーションの要素の値を返します。 * * @param beanDesc * アノテーションを表す{@link BeanDesc} * @param annotation * アノテーション * @param name * 要素の名前 * @return アノテーションの要素の値 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/SignedBytes.java
* that of {@code ((Byte) a).compareTo(b)}. * * <p><b>Note:</b> this method behaves identically to {@link Byte#compare}. * * @param a the first {@code byte} to compare * @param b the second {@code byte} to compare * @return a negative value if {@code a} is less than {@code b}; a positive value if {@code a} is * greater than {@code b}; or zero if they are equal */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 7.3K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java
import com.google.caliper.Benchmark; import com.google.caliper.Param; import com.google.common.collect.BenchmarkHelpers.SetImpl; import com.google.common.collect.CollectionBenchmarkSampleData.Element; import java.util.Set; /** * Test iteration speed at various size for {@link Set} instances. * * @author Christopher Swenson */ public class SetIterationBenchmark { @Param({
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.9K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java
import com.google.caliper.Benchmark; import com.google.caliper.Param; import com.google.common.collect.BenchmarkHelpers.SetImpl; import com.google.common.collect.CollectionBenchmarkSampleData.Element; import java.util.Set; /** * Test iteration speed at various size for {@link Set} instances. * * @author Christopher Swenson */ public class SetIterationBenchmark { @Param({
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataRetrievalException.java
/** * @param message a message * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)} */ @Deprecated public ArtifactMetadataRetrievalException(String message) { super(message, null, null); } /** * @param cause a cause
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/ParameterizedClassDescImpl.java
/** * インスタンスを構築します。 * * @param rawClass * 原型となるクラス。{@literal null}であってはいけません */ public ParameterizedClassDescImpl(final Class<?> rawClass) { assertArgumentNotNull("rawClass", rawClass); this.rawClass = rawClass; } /** * インスタンスを構築します。 * * @param rawClass * 原型となるクラス。{@literal null}であってはいけません
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java
/** * {@link BigDecimal}に変換します。 * * @param o * 変換元のオブジェクト * @return 変換された{@link BigDecimal} */ public static BigDecimal toBigDecimal(final Object o) { return toBigDecimal(o, null); } /** * {@link BigDecimal}に変換します。 * * @param o * 変換元のオブジェクト * @param pattern * パターン文字列
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipe.java
private byte[] pipeData; private int pipeDataOff, pipeDataLen; /** * * @param config * @param pipeName * @param data * @param off * @param len */ public TransCallNamedPipe ( Configuration config, String pipeName, byte[] data, int off, int len ) { super(config, SMB_COM_TRANSACTION, TRANS_CALL_NAMED_PIPE);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0)