Search Options

Results per page
Sort
Preferred Languages
Advance

Results 741 - 750 of 1,456 for created (0.04 sec)

  1. BsBadWord.java

    ======== L133: public String getCreatedBy() { L134: checkSpecifiedProperty("createdBy"); L135: return convertEmptyToNull(createdBy); L136: } L137: L138: public void setCreatedBy(String value) { L139: registerModifiedProperty("createdBy"); L140: this.createdBy = value; L141: } L142: L143: public Long getCreatedTime() { L144: checkSpecifiedProperty("createdTime"); L145: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.7K bytes
  2. BsRelatedQuery.java

    ======== L133: public String getCreatedBy() { L134: checkSpecifiedProperty("createdBy"); L135: return convertEmptyToNull(createdBy); L136: } L137: L138: public void setCreatedBy(String value) { L139: registerModifiedProperty("createdBy"); L140: this.createdBy = value; L141: } L142: L143: public Long getCreatedTime() { L144: checkSpecifiedProperty("createdTime"); L145: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.6K bytes
  3. BsRequestHeader.java

    ======== L133: public String getCreatedBy() { L134: checkSpecifiedProperty("createdBy"); L135: return convertEmptyToNull(createdBy); L136: } L137: L138: public void setCreatedBy(String value) { L139: registerModifiedProperty("createdBy"); L140: this.createdBy = value; L141: } L142: L143: public Long getCreatedTime() { L144: checkSpecifiedProperty("createdTime"); L145: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      6.6K bytes
  4. BsElevateWord.java

    registerModifiedProperty("boost"); L147: this.boost = value; L148: } L149: L150: public String getCreatedBy() { L151: checkSpecifiedProperty("createdBy"); L152: return convertEmptyToNull(createdBy); L153: } L154: L155: public void setCreatedBy(String value) { L156: registerModifiedProperty("createdBy"); L157: this.createdBy = value; L158: } L159: L160: public Long getCreatedTime() { L161: checkSpecifiedProperty("createdTime"); L162: return createdTime;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      7.1K bytes
  5. CollectionCreationTester.java

    E> { L44: @CollectionFeature.Require(ALLOWS_NULL_VALUES) L45: @CollectionSize.Require(absent = ZERO) L46: public void testCreateWithNull_supported() { L47: E[] array = createArrayWithNullElement(); L48: collection = getSubjectGenerator().create(array); L49: expectContents(array); L50: } L51: L52: @CollectionFeature.Require(absent = ALLOWS_NULL_VALUES) L53: @CollectionSize.Require(absent = ZERO) L54: public void testCreateWithNull_unsupported() { L55: E[] array = createArrayWithNullElement();...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      3K bytes
  6. QueueTestSuiteBuilder.java

    ng.testers.QueuePollTester; L24:import com.google.common.collect.testing.testers.QueueRemoveTester; L25:import com.google.errorprone.annotations.CanIgnoreReturnValue; L26:import java.util.ArrayList; L27:import java.util.List; L28: L29:/** L30: * Creates, based on your criteria, a JUnit test suite that exhaustively tests a queue L31: * implementation. L32: * L33: * @author Jared Levy L34: */ L35:@GwtIncompatible L36:public final class QueueTestSuiteBuilder<E> L37: extends AbstractCollectionTes...
    github.com/google/guava/android/guava-testlib/s...
    Mon Feb 26 19:46:10 UTC 2024
      2.5K bytes
  7. MultisetReadsTester.java

    } L85: L86: public void testEquals_yes() { L87: assertTrue( L88: "multiset doesn't equal a multiset with the same elements", L89: getMultiset().equals(HashMultiset.create(getSampleElements()))); L90: } L91: L92: public void testEquals_differentSize() { L93: Multiset<E> other = HashMultiset.create(getSampleElements()); L94: other.add(e0()); L95: assertFalse("multiset equals a multiset with a different size", getMultiset().equals(other)); L96: } L97: L98: @CollectionSize.Require(absent...
    github.com/google/guava/android/guava-testlib/s...
    Wed Jul 24 20:12:35 UTC 2024
      3.9K bytes
  8. MultisetReadsTester.java

    } L85: L86: public void testEquals_yes() { L87: assertTrue( L88: "multiset doesn't equal a multiset with the same elements", L89: getMultiset().equals(HashMultiset.create(getSampleElements()))); L90: } L91: L92: public void testEquals_differentSize() { L93: Multiset<E> other = HashMultiset.create(getSampleElements()); L94: other.add(e0()); L95: assertFalse("multiset equals a multiset with a different size", getMultiset().equals(other)); L96: } L97: L98: @CollectionSize.Require(absent...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Jul 24 20:12:35 UTC 2024
      3.9K bytes
  9. TestStringSetMultimapGenerator.java

    L63: @Override L64: public final SetMultimap<String, String> create(Object... entries) { L65: @SuppressWarnings("unchecked") L66: Entry<String, String>[] array = (Entry<String, String>[]) new Entry<?, ?>[entries.length]; L67: int i = 0; L68: for (Object o : entries) { L69: @SuppressWarnings("unchecked") L70: Entry<String, String> e = (Entry<String, String>) o; L71: array[i++] = e; L72: } L73: return create(array); L74: } L75: L76: protected abstract SetMultimap<String,...
    github.com/google/guava/guava-testlib/src/com/g...
    Wed Oct 30 16:15:19 UTC 2024
      3K bytes
  10. AbstractMultimapTester.java

    protected void initMultimapWithNullKey() { L103: resetContainer(getSubjectGenerator().create((Object[]) createArrayWithNullKey())); L104: } L105: L106: protected void initMultimapWithNullValue() { L107: resetContainer(getSubjectGenerator().create((Object[]) createArrayWithNullValue())); L108: } L109: L110: protected void initMultimapWithNullKeyAndValue() { L111: resetContainer(getSubjectGenerator().create((Object[]) createArrayWithNullKeyAndValue())); L112: } L113: L114: protected SampleElements<K>...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      6K bytes
Back to top