Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for updating (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java

                if (logger.isDebugEnabled()) {
                    logger.debug("Updating scheduled jobs. time:{}", schedulerTime);
                }
                final long now = systemHelper.getCurrentTimeAsLong();
                scheduledJobService.getScheduledJobListAfter(schedulerTime).forEach(scheduledJob -> {
                    if (logger.isDebugEnabled()) {
                        logger.debug("Updating job schedule:{}", scheduledJob.getName());
                    }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                // nothing
                break;
            default:
                for (final String path : getDictionaryPaths()) {
                    if (path.endsWith("mapping.txt")) {
                        logger.debug("Updating {}", path);
                        final String content = getDictionaryContent(path);
                        if (content != null) {
                            sendDictionaryContent(path, StreamUtil.split(content, "\n")
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MD4.java

        }
    
        /**
         * MD4 block update operation.
         * <p>
         * Continues an MD4 message digest operation, by filling the buffer,
         * transform(ing) data in 512-bit message block(s), updating the variables
         * context and count, and leaving (buffering) the remaining bytes in buffer
         * for the next update or finish.
         *
         * @param    input    input block
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

      html += '</table>';
    L848:
    L849:            this.container.find('.drp-calendar.' + side + ' .calendar-table').html(html);
    L850:
    L851:        },
    L852:
    L853:        renderTimePicker: function(side) {
    L854:
    L855:            // Don't bother updating the time picker if it's currently disabled
    L856:            // because an end date hasn't been clicked yet
    L857:            if (side == 'right' && !this.endDate) return;
    L858:
    L859:            var html, selected, minDate, maxDate = this.maxDate;
    ...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
Back to top