Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,803 for Final (0.18 sec)

  1. src/main/java/org/codelibs/curl/CurlRequest.java

        }
    
        public CurlRequest header(final String key, final String value) {
            if (headerList == null) {
                headerList = new ArrayList<>();
            }
            headerList.add(new String[] { key, value });
            return this;
        }
    
        public void connect(final Consumer<HttpURLConnection> actionListener, final Consumer<Exception> exceptionListener) {
            final Runnable task = () -> {
    Java
    - Registered: Thu May 02 15:34:13 GMT 2024
    - Last Modified: Sun Feb 12 12:21:25 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/StatsTesting.java

      static final Stats EMPTY_STATS_VARARGS = Stats.of();
      static final Stats EMPTY_STATS_ITERABLE = Stats.of(ImmutableList.<Double>of());
      static final Stats ONE_VALUE_STATS = Stats.of(ONE_VALUE);
      static final Stats OTHER_ONE_VALUE_STATS = Stats.of(OTHER_ONE_VALUE);
      static final Stats TWO_VALUES_STATS = Stats.of(TWO_VALUES);
      static final Stats OTHER_TWO_VALUES_STATS = Stats.of(OTHER_TWO_VALUES);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 23.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

                break;
            }
            return OptionalEntity.empty();
        }
    
        public static OptionalEntity<KeyMatch> getKeyMatch(final CreateForm form) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            final String username = systemHelper.getUsername();
            final long currentTime = systemHelper.getCurrentTimeAsLong();
            return getEntity(form, username, currentTime).map(entity -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

                        final DocumentBuilder builder = factory.newDocumentBuilder();
    
                        final Document doc = builder.parse(is);
                        final NodeList nodeList = doc.getElementsByTagName("component");
                        for (int i = 0; i < nodeList.getLength(); i++) {
                            final Node node = nodeList.item(i);
                            final NamedNodeMap attributes = node.getAttributes();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java

            final KuromojiFile kuromojiFile = new KuromojiFile(file1);
            final PagingList<KuromojiItem> itemList1 = kuromojiFile.selectList(0,
                    20);
            assertEquals(3, itemList1.size());
    
            final KuromojiItem kuromojiItem1 = itemList1.get(0);
            kuromojiFile.delete(kuromojiItem1);
            final PagingList<KuromojiItem> itemList2 = kuromojiFile.selectList(0,
                    20);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

            return null;
        }
    
        public void storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) {
            LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).ifPresent(session -> {
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
                final List<String> docIdList = new ArrayList<>();
                for (final Map<String, Object> map : documentItems) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        @Override
        public void characters(final char[] ch, final int start, final int length) throws SAXException {
            final String text = new String(ch, start, length);
            if (logger.isDebugEnabled()) {
                logger.debug("Text: {}", text);
            }
            textBuf.append(text);
        }
    
        protected String parseFilterPaths(final String text, final boolean web, final boolean file) {
            return split(text, "\n")
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        public ExecJob jvmOptions(final String... options) {
            Collections.addAll(this.jvmOptions, options);
            return this;
        }
    
        public ExecJob lastaEnv(final String env) {
            this.lastaEnv = env;
            return this;
        }
    
        protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/UpgradeUtil.java

            } catch (final Exception e) {
                logger.warn("Failed to register {}", filePath, e);
            }
            return false;
        }
    
        public static boolean createAlias(final IndicesAdminClient indicesClient, final String indexConfigPath, final String indexName,
                final String aliasName) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            private final AtomicBoolean executed = new AtomicBoolean(false);
    
            private final long timeout;
    
            public ProcessDestroyer(final Process p, final InputStreamThread ist, final long timeout) {
                this.p = p;
                this.ist = ist;
                this.timeout = timeout;
            }
    
            @Override
            public void run() {
                if (!p.isAlive()) {
                    return;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top