Search Options

Results per page
Sort
Preferred Languages
Advance

Results 421 - 430 of 1,618 for lang (0.04 sec)

  1. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

    1. */
    2. package org.codelibs.fess.dict.stopwords;
    3.  
    4. import org.apache.commons.lang3.StringUtils;
    5. import org.codelibs.core.lang.StringUtil;
    6. import org.codelibs.fess.dict.DictionaryItem;
    7.  
    8. public class StopwordsItem extends DictionaryItem {
    9. private final String input;
    10.  
    11. private String newInput;
    12.  
    13. public StopwordsItem(final long id, final String input) {
    14. this.id = id;
    15. this.input = input;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. .github/workflows/labeler.yml

    1. pull-requests: read
    2. runs-on: ubuntu-latest
    3. steps:
    4. - uses: docker://agilepathway/pull-request-label-checker:latest
    5. with:
    6. one_of: breaking,security,feature,bug,refactor,upgrade,docs,lang-all,internal
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 07 20:11:20 UTC 2024
    - 828 bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeImpl.java

    1. /**
    2. * {@inheritDoc}
    3. *
    4. * @see java.lang.AutoCloseable#close()
    5. */
    6. @Override
    7. public void close () {
    8. release(false);
    9. }
    10.  
    11.  
    12. public void release () {
    13. release(true);
    14. }
    15.  
    16.  
    17. /**
    18. * @param track
    19. */
    20. public void release ( boolean track ) {
    21. long usage = this.usageCount.decrementAndGet();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

    1. @Required
    2. public String queryId;
    3.  
    4. public Integer order;
    5.  
    6. // for error page
    7.  
    8. public String q;
    9.  
    10. public String num;
    11.  
    12. public String sort;
    13.  
    14. public String lang;
    15.  
    16. public Map<String, String[]> fields = new HashMap<>();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/CloseableIterator.java

    1.  
    2. /**
    3. * @author mbechler
    4. * @param <T>
    5. *
    6. */
    7. public interface CloseableIterator <T> extends Iterator<T>, AutoCloseable {
    8.  
    9. /**
    10. * {@inheritDoc}
    11. *
    12. * @see java.lang.AutoCloseable#close()
    13. */
    14. @Override
    15. void close () throws CIFSException;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  6. src/main/webapp/js/index.js

    1. if (typeof $.fn.suggestor === "function") {
    2. $("#contentQuery").suggestor({
    3. ajaxinfo: {
    4. url: contextPath + "/api/v1/suggest-words",
    5. fn: ["_default", "content", "title"],
    6. num: 10,
    7. lang: $("#langSearchOption").val()
    8. },
    9. boxCssInfo: {
    10. border: "1px solid rgba(82, 168, 236, 0.5)",
    11. "-webkit-box-shadow":
    12. "0 1px 1px 0px rgba(0, 0, 0, 0.1), 0 3px 2px 0px rgba(82, 168, 236, 0.2)",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Platform.java

    1. * the License.
    2. */
    3.  
    4. package com.google.common.util.concurrent;
    5.  
    6. import static com.google.common.base.Preconditions.checkNotNull;
    7. import static java.lang.Thread.currentThread;
    8.  
    9. import com.google.common.annotations.GwtCompatible;
    10. import javax.annotation.CheckForNull;
    11.  
    12. /** Methods factored out so that they can be emulated differently in GWT. */
    13. @GwtCompatible(emulated = true)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 10 12:27:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Platform.java

    1. * the License.
    2. */
    3.  
    4. package com.google.common.util.concurrent;
    5.  
    6. import static com.google.common.base.Preconditions.checkNotNull;
    7. import static java.lang.Thread.currentThread;
    8.  
    9. import com.google.common.annotations.GwtCompatible;
    10. import javax.annotation.CheckForNull;
    11.  
    12. /** Methods factored out so that they can be emulated differently in GWT. */
    13. @GwtCompatible(emulated = true)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 10 12:27:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/exception/SIndexOutOfBoundsExceptionTest.java

    1. assertThat(clIndexOutOfBoundsException, is(notNullValue()));
    2. }
    3.  
    4. /**
    5. * Test method for
    6. * {@link org.codelibs.core.exception.ClIndexOutOfBoundsException#SIndexOutOfBoundsException(java.lang.String)}
    7. * .
    8. */
    9. @Test
    10. public void testSIndexOutOfBoundsExceptionString() {
    11. final ClIndexOutOfBoundsException clIndexOutOfBoundsException = new ClIndexOutOfBoundsException("hoge");
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java

    1. */
    2. package org.codelibs.fess.crawler.client.http;
    3.  
    4. import java.io.Serializable;
    5.  
    6. import org.codelibs.core.lang.StringUtil;
    7.  
    8. /**
    9. * @author shinsuke
    10. *
    11. */
    12. public class RequestHeader implements Serializable {
    13.  
    14. private static final long serialVersionUID = 1L;
    15.  
    16. private String name;
    17.  
    18. private String value;
    19.  
    20. public RequestHeader(final String name, final String value) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:40:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top