- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 3,883 for void (0.04 sec)
-
guava/src/com/google/common/collect/CollectPreconditions.java
} return value; } static void checkPositive(int value, String name) { if (value <= 0) { throw new IllegalArgumentException(name + " must be positive but was: " + value); } } /** * Precondition tester for {@code Iterator.remove()} that throws an exception with a consistent * error message. */ static void checkRemove(boolean canRemove) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 30 10:33:07 UTC 2021 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/ClassIteratorTest.java
import org.junit.Test; /** * @author koichik * */ public class ClassIteratorTest { /** * @throws Exception */ @Test public void test() throws Exception { final ClassIterator it = new ClassIterator(Integer.class); assertThat(it.hasNext(), is(true)); assertThat(it.next(), is(sameClass(Integer.class)));
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/IgnoreCloseInputStream.java
private transient InputStream inputStream; public IgnoreCloseInputStream(final InputStream inputStream) { this.inputStream = inputStream; } @Override public void close() throws IOException { // inputStream.close(); } @Override public int available() throws IOException { return inputStream.available(); } @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesTest.java
suite.addTestSuite(FilesTest.class); return suite; } public void testRoundTripSources() throws Exception { File asciiFile = getTestFile("ascii.txt"); ByteSource byteSource = Files.asByteSource(asciiFile); assertSame(byteSource, byteSource.asCharSource(UTF_8).asByteSource(UTF_8)); } public void testToByteArray() throws IOException { File asciiFile = getTestFile("ascii.txt");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 22.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/DoubleMathTest.java
public void testFuzzyCompare0() { runTestFuzzyCompare(0); } public void testFuzzyCompare1() { runTestFuzzyCompare(1); } public void testFuzzyCompare2() { runTestFuzzyCompare(2); } public void testFuzzyCompare3() { runTestFuzzyCompare(3); } public void testFuzzyCompare4() { runTestFuzzyCompare(4); } public void testFuzzyCompare5() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 27.3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
/** * MavenMerger is based on same instances, subclasses should override KeyComputer per type * * */ class MavenMergerTest { private MavenMerger mavenMerger = new MavenMerger(); @Test void mergeArtifactId() { Model target = Model.newBuilder().artifactId("TARGET").build(); Model source = Model.newBuilder().artifactId("SOURCE").build();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java
} @Override public void ignoreNullOrEmptyQuery() { } @Override public void checkNullOrEmptyQuery() { } @Override public void enableEmptyStringQuery(ModeQuery noArgInLambda) { // do nothing } @Override public void disableEmptyStringQuery() { } @Override public void enableOverridingQuery(ModeQuery noArgInLambda) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
public class DictionaryManager { private static final Logger logger = LogManager.getLogger(DictionaryManager.class); protected List<DictionaryCreator> creatorList = new ArrayList<>(); @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName()); } creatorList.forEach(creator -> { creator.setDictionaryManager(this);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/DisposableUtil.java
*/ public static synchronized void addFirst(final Disposable disposable) { assertArgumentNotNull("disposable", disposable); disposables.addFirst(disposable); } /** * 破棄可能なリソースを登録解除します。 * * @param disposable * 破棄可能なリソース。{@literal null}であってはいけません */ public static synchronized void remove(final Disposable disposable) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.1K bytes - Viewed (0)