Search Options

Results per page
Sort
Preferred Languages
Advance

Results 711 - 720 of 1,456 for created (0.04 sec)

  1. BsPathMappingCQ.java

    createdBy, ConditionOptionCall<TermQueryBuilder> opLambda) { L203: TermQueryBuilder builder = regTermQ("createdBy", createdBy); L204: if (opLambda != null) { L205: opLambda.callback(builder); L206: } L207: } L208: L209: public void setCreatedBy_NotEqual(String createdBy) { L210: setCreatedBy_NotTerm(createdBy, null); L211: } L212: L213: public void setCreatedBy_NotTerm(String createdBy) { L214: setCreatedBy_NotTerm(createdBy, null); L215:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      72.1K bytes
  2. Collections2Test.java

    @GwtIncompatible // suite L75: private static Test testsForFilter() { L76: return CollectionTestSuiteBuilder.using( L77: new TestStringCollectionGenerator() { L78: @Override L79: public Collection<String> create(String[] elements) { L80: List<String> unfiltered = newArrayList(); L81: unfiltered.add("yyy"); L82: Collections.addAll(unfiltered, elements); L83: unfiltered.add("zzz"); L84: ...
    github.com/google/guava/android/guava-tests/tes...
    Wed Feb 21 10:16:44 UTC 2024
      19.7K bytes
  3. TestEnumMultisetGenerator.java

    SampleElements<AnEnum> samples() { L38: return new Enums(); L39: } L40: L41: @Override L42: public Multiset<AnEnum> create(Object... elements) { L43: AnEnum[] array = new AnEnum[elements.length]; L44: int i = 0; L45: for (Object e : elements) { L46: array[i++] = (AnEnum) e; L47: } L48: return create(array); L49: } L50: L51: protected abstract Multiset<AnEnum> create(AnEnum[] elements); L52: L53: @Override L54: public AnEnum[] createArray(int length) { L55: return new AnEnum[length];...
    github.com/google/guava/android/guava-testlib/s...
    Wed Oct 30 16:15:19 UTC 2024
      1.9K bytes
  4. EsStatusPostcard.java

    parameter comment. <br> L103: * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty. L104: * @param hostname The parameter value of hostname. (NotNull) L105: */ L106: public void setHostname(String hostname) { L107: registerVariable("hostname", hostname); L108: } L109: L110: /** L111: * Set the value of clustername, used in parameter comment. <br> L112: * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty....
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      4.7K bytes
  5. AccessTokenDbm.java

    Column Info L133: // =========== L134: protected final ColumnInfo _columnCreatedBy = cci("createdBy", "createdBy", null, null, String.class, "createdBy", null, false, false, L135: false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false); L136: protected final ColumnInfo _columnCreatedTime = cci("createdTime", "createdTime", null, null,...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      11.3K bytes
  6. NewCustomTableTest.java

    newCustomTable(backingMap, factory); L48: populate(table, data); L49: return table; L50: } L51: L52: public void testRowKeySetOrdering() { L53: table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c'); L54: assertThat(table.rowKeySet()).containsExactly("foo", "bar").inOrder(); L55: } L56: L57: public void testRowOrdering() { L58: table = create("foo", 3, 'a', "bar", 1, 'b', "foo", 2, 'c'); L59: assertThat(table.row("foo").keySet()).containsExactly(2, 3).inOrder(); L60: } L61:}...
    github.com/google/guava/android/guava-tests/tes...
    Wed Oct 30 16:15:19 UTC 2024
      2K bytes
  7. BsPathMapping.java

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

    L195: // Actually Crud L196: // ------------- L197: @Execute L198: @Secured({ ROLE }) L199: public HtmlResponse create(final CreateForm form) { L200: verifyCrudMode(form.crudMode, CrudMode.CREATE); L201: validate(form, messages -> {}, this::asEditHtml); L202: verifyToken(this::asEditHtml); L203: getWebAuthentication(form).ifPresent(entity -> { L204: try { L205: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      15.7K bytes
  9. ListenableFuture.java

    L70: * <p>We encourage you to return {@code ListenableFuture} from your methods so that your users can L71: * take advantage of the {@linkplain Futures utilities built atop the class}. The way that you will L72: * create {@code ListenableFuture} instances depends on how you currently create {@code Future} L73: * instances: L74: * L75: * <ul> L76: * <li>If you receive them from an {@code java.util.concurrent.ExecutorService}, convert that L77: * service to a {@link ListeningExecutorService},...
    github.com/google/guava/futures/listenablefutur...
    Mon Jun 26 21:13:41 UTC 2023
      8K bytes
  10. ListenableFuture.java

    L70: * <p>We encourage you to return {@code ListenableFuture} from your methods so that your users can L71: * take advantage of the {@linkplain Futures utilities built atop the class}. The way that you will L72: * create {@code ListenableFuture} instances depends on how you currently create {@code Future} L73: * instances: L74: * L75: * <ul> L76: * <li>If you receive them from an {@code java.util.concurrent.ExecutorService}, convert that L77: * service to a {@link ListeningExecutorService},...
    github.com/google/guava/guava/src/com/google/co...
    Mon Jun 26 21:13:41 UTC 2023
      8K bytes
Back to top