- Sort Score
- Result 10 results
- Languages All
Results 591 - 600 of 1,456 for created (0.06 sec)
-
SetOperationsTest.java
suite() { L47: TestSuite suite = new TestSuite(); L48: L49: suite.addTest( L50: SetTestSuiteBuilder.using( L51: new TestStringSetGenerator() { L52: @Override L53: protected Set<String> create(String[] elements) { L54: return Sets.union(Sets.<String>newHashSet(), Sets.<String>newHashSet()); L55: } L56: }) L57: .named("empty U empty") L58: .withFeatures( L59: ...github.com/google/guava/android/guava-tests/tes...Sat Oct 19 00:05:46 UTC 2024 14.5K bytes -
HashMultimapTest.java
testCreateFromIllegalSizes() { L107: assertThrows(IllegalArgumentException.class, () -> HashMultimap.create(-20, 15)); L108: L109: assertThrows(IllegalArgumentException.class, () -> HashMultimap.create(20, -15)); L110: } L111: L112: public void testEmptyMultimapsEqual() { L113: Multimap<String, Integer> setMultimap = HashMultimap.create(); L114: Multimap<String, Integer> listMultimap = ArrayListMultimap.create(); L115: assertTrue(setMultimap.equals(listMultimap)); L116: assertTrue(listMultim...github.com/google/guava/android/guava-tests/tes...Tue Oct 15 17:36:06 UTC 2024 4.3K bytes -
HashMultimapTest.java
testCreateFromIllegalSizes() { L107: assertThrows(IllegalArgumentException.class, () -> HashMultimap.create(-20, 15)); L108: L109: assertThrows(IllegalArgumentException.class, () -> HashMultimap.create(20, -15)); L110: } L111: L112: public void testEmptyMultimapsEqual() { L113: Multimap<String, Integer> setMultimap = HashMultimap.create(); L114: Multimap<String, Integer> listMultimap = ArrayListMultimap.create(); L115: assertTrue(setMultimap.equals(listMultimap)); L116: assertTrue(listMultim...github.com/google/guava/guava-tests/test/com/go...Tue Oct 15 17:36:06 UTC 2024 4.3K bytes -
classificationDeploymentMap.dfprop
map:{}) L3:# L4:# The relation between column and classification. L5:# L6:# This property uses classification names of classificationDefinitionMap. L7:# The table name '$$ALL$$' means all tables are target. L8:# The table names and column names are treated as case insensitive. L9:# L10:# You don't need specify here about table classifications. L11:# Because table classifications are auto-deployed by relation information. L12:# L13:# Specification: L14:# map: { L15:# [table-name or $$ALL$$] = map:{...github.com/codelibs/fess/dbflute_fess/dfprop/cl...Sat Jul 04 22:46:31 UTC 2015 795 bytes -
TreeMultisetTest.java
TestSuite(); L59: suite.addTest( L60: SortedMultisetTestSuiteBuilder.using( L61: new TestStringMultisetGenerator() { L62: @Override L63: protected Multiset<String> create(String[] elements) { L64: return TreeMultiset.create(asList(elements)); L65: } L66: L67: @Override L68: public List<String> order(List<String> insertionOrder) { L69: return Ordering.natural().s...github.com/google/guava/android/guava-tests/tes...Sat Oct 19 00:05:46 UTC 2024 12.9K bytes -
TestsForSetsInJavaUtil.java
emptySet(); L163: } L164: L165: public Test testsForCheckedNavigableSet() { L166: return SortedSetTestSuiteBuilder.using( L167: new TestStringSortedSetGenerator() { L168: @Override L169: public NavigableSet<String> create(String[] elements) { L170: NavigableSet<String> innerSet = new TreeSet<>(); L171: Collections.addAll(innerSet, elements); L172: return Collections.checkedNavigableSet(innerSet, String.class); L173: ...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 19.8K bytes -
RateLimiterTest.java
public void testCreateWarmupParameterValidation() { L142: RateLimiter unused; L143: unused = RateLimiter.create(1.0, 1, NANOSECONDS); L144: unused = RateLimiter.create(1.0, 0, NANOSECONDS); L145: L146: assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(0.0, 1, NANOSECONDS)); L147: L148: assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(1.0, -1, NANOSECONDS)); L149: } L150: L151: @AndroidIncompatible // difference in String.format rounding? L152:...github.com/google/guava/android/guava-tests/tes...Mon Oct 21 14:28:19 UTC 2024 21.8K bytes -
RateLimiterTest.java
public void testCreateWarmupParameterValidation() { L142: RateLimiter unused; L143: unused = RateLimiter.create(1.0, 1, NANOSECONDS); L144: unused = RateLimiter.create(1.0, 0, NANOSECONDS); L145: L146: assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(0.0, 1, NANOSECONDS)); L147: L148: assertThrows(IllegalArgumentException.class, () -> RateLimiter.create(1.0, -1, NANOSECONDS)); L149: } L150: L151: @AndroidIncompatible // difference in String.format rounding? L152:...github.com/google/guava/guava-tests/test/com/go...Mon Oct 21 14:28:19 UTC 2024 21.8K bytes -
TreeMultisetTest.java
TestSuite(); L59: suite.addTest( L60: SortedMultisetTestSuiteBuilder.using( L61: new TestStringMultisetGenerator() { L62: @Override L63: protected Multiset<String> create(String[] elements) { L64: return TreeMultiset.create(asList(elements)); L65: } L66: L67: @Override L68: public List<String> order(List<String> insertionOrder) { L69: return Ordering.natural().s...github.com/google/guava/guava-tests/test/com/go...Sat Oct 19 00:05:46 UTC 2024 12.9K bytes -
SetCreationTester.java
n.class, () -> collection = getSubjectGenerator().create(array)); L72: } L73: L74: @CollectionFeature.Require(REJECTS_DUPLICATES_AT_CREATION) L75: @CollectionSize.Require(absent = {ZERO, ONE}) L76: public void testCreateWithDuplicates_nonNullDuplicatesRejected() { L77: E[] array = createSamplesArray(); L78: array[1] = e0(); L79: assertThrows( L80: IllegalArgumentException.class, () -> collection = getSubjectGenerator().create(array)); L81: } L82:}...github.com/google/guava/android/guava-testlib/s...Sat Oct 19 00:05:46 UTC 2024 3.4K bytes