Search Options

Results per page
Sort
Preferred Languages
Advance

Results 591 - 600 of 1,456 for created (0.05 sec)

  1. 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
  2. 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
  3. 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
  4. TreeMultimapNaturalTest.java

    alTest.class); L268: return suite; L269: } L270: L271: protected SetMultimap<String, Integer> create() { L272: return TreeMultimap.create(); L273: } L274: L275: /** Create and populate a {@code TreeMultimap} with the natural ordering of keys and values. */ L276: private TreeMultimap<String, Integer> createPopulate() { L277: TreeMultimap<String, Integer> multimap = TreeMultimap.create(); L278: multimap.put("google", 2); L279: multimap.put("google", 6); L280: multimap.put("foo",...
    github.com/google/guava/guava-tests/test/com/go...
    Wed Oct 30 16:15:19 UTC 2024
      22.3K bytes
  5. 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
  6. 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
  7. 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/guava-testlib/src/com/g...
    Sat Oct 19 00:05:46 UTC 2024
      3.4K bytes
  8. AdminDictStemmeroverrideAction.java

    L280: // Actually Crud L281: // ------------- L282: @Execute L283: @Secured({ ROLE }) L284: public HtmlResponse create(final CreateForm form) { L285: verifyCrudMode(form.crudMode, CrudMode.CREATE, form.dictId); L286: validate(form, messages -> {}, this::asEditHtml); L287: verifyToken(this::asEditHtml); L288: createStemmerOverrideItem(form, this::asEditHtml).ifPresent(entity ->...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      18.6K bytes
  9. AdminElevatewordAction.java

    L256: // Actually Crud L257: // ------------- L258: @Execute L259: @Secured({ ROLE }) L260: public HtmlResponse create(final CreateForm form) { L261: verifyCrudMode(form.crudMode, CrudMode.CREATE); L262: validate(form, messages -> {}, this::asEditHtml); L263: verifyToken(this::asEditHtml); L264: getElevateWord(form).ifPresent(entity -> { L265: try { L266: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      18.7K bytes
  10. TestsForMapsInJavaUtil.java

    return NavigableMapTestSuiteBuilder.using( L396: new TestStringSortedMapGenerator() { L397: @Override L398: protected SortedMap<String, String> create(Entry<String, String>[] entries) { L399: /* L400: * TODO(cpovirk): it would be nice to create an input Map and use L401: * the copy constructor here and in the other tests L402: */ L403: return populate(new TreeMap<String, String>(),...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      21.6K bytes
Back to top