Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 3,501 for final (0.02 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java

    /**
     * @author shinsuke
     *
     */
    public class TemporaryFileInputStream extends InputStream {
        private static final Logger logger = LoggerFactory.getLogger(TemporaryFileInputStream.class);
    
        private final File tempFile;
    
        private final FileInputStream fileInputStream;
    
        public TemporaryFileInputStream(final File tempFile) throws FileNotFoundException {
            this.tempFile = tempFile;
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

        }
    
        protected void storeChildUrls(final ResponseData responseData, final ResultData resultData) {
            try (final InputStream is = responseData.getResponseBody()) {
                final DOMParser parser = getDomParser();
                parser.parse(new InputSource(is));
                final Document document = parser.getDocument();
                // base href
                final String baseHref = getBaseHref(document);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Oct 24 12:16:00 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/ContainerNotAvailableException.java

        private static final long serialVersionUID = 1L;
    
        private String componentName;
    
        public ContainerNotAvailableException(final String componentName) {
            super(componentName + " is not available.");
        }
    
        public ContainerNotAvailableException(final String componentName, final Throwable cause) {
            super(componentName + " is not available.", cause);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

    import java.util.BitSet;
    import java.util.Random;
    
    /** Benchmark for the {@link CharMatcher#whitespace} implementation. */
    public class WhitespaceMatcherBenchmark {
      private static final int STRING_LENGTH = 10000;
    
      private static final String OLD_WHITESPACE_TABLE =
          "\u0001\u0000\u00a0\u0000\u0000\u0000\u0000\u0000"
              + "\u0000\u0009\n\u000b\u000c\r\u0000\u0000\u2028\u2029\u0000\u0000\u0000\u0000\u0000"
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 16 22:49:59 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  5. guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

    import java.util.BitSet;
    import java.util.Random;
    
    /** Benchmark for the {@link CharMatcher#whitespace} implementation. */
    public class WhitespaceMatcherBenchmark {
      private static final int STRING_LENGTH = 10000;
    
      private static final String OLD_WHITESPACE_TABLE =
          "\u0001\u0000\u00a0\u0000\u0000\u0000\u0000\u0000"
              + "\u0000\u0009\n\u000b\u000c\r\u0000\u0000\u2028\u2029\u0000\u0000\u0000\u0000\u0000"
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed May 16 22:49:59 UTC 2018
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/context/BaseContext.java

    public class BaseContext extends AbstractCIFSContext {
    
        private final Configuration config;
        private final DfsResolver dfs;
        private final SidResolver sidResolver;
        private final Handler urlHandler;
        private final NameServiceClient nameServiceClient;
        private final BufferCache bufferCache;
        private final SmbTransportPool transportPool;
        private final CredentialsInternal defaultCredentials;
    
    
        /**
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 27 18:25:00 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  7. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java

        public ActionFuture<SearchResponse> search(final SearchRequest request) {
            return client.search(request);
        }
    
        @Override
        public void search(final SearchRequest request, final ActionListener<SearchResponse> listener) {
            client.search(request, listener);
        }
    
        @Override
        public SearchRequestBuilder prepareSearch(final String... indices) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/LruHashSet.java

    public class LruHashSet<E> extends AbstractSet<E> implements Set<E>, java.io.Serializable {
        private static final long serialVersionUID = 1L;
    
        private final LruHashMap<E, Object> map;
    
        // Dummy value to associate with an Object in the backing Map
        private static final Object PRESENT = new Object();
    
        public LruHashSet(final int limitSize) {
            map = new LruHashMap<>(limitSize);
        }
    
        /**
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

        protected Map<String, Object> generateData(final ResponseData responseData) {
            final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper();
            final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(responseData.getSessionId());
            final Extractor extractor = getExtractor(responseData);
            final String mimeType = responseData.getMimeType();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. samples/slack/src/main/java/okhttp3/slack/SlackApi.java

     * http://localhost:53203/oauth/}, passing the same port to this class’ constructor.
     */
    public final class SlackApi {
      private final HttpUrl baseUrl = HttpUrl.get("https://slack.com/api/");
      private final OkHttpClient httpClient;
      private final Moshi moshi;
    
      public final String clientId;
      public final String clientSecret;
      public final int port;
    
      public SlackApi(String clientId, String clientSecret, int port) {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Jul 06 19:30:55 UTC 2018
    - 4.4K bytes
    - Viewed (0)
Back to top