Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for formatName (0.16 sec)

  1. src/main/webapp/WEB-INF/view/admin/joblog/admin_joblog.jsp

                                                                value="${fe:date(data.startTime)}"
                                                                pattern="yyyy-MM-dd'T'HH:mm:ss"/></td>
                                                        <td><c:if test="${data.endTime!=null}">
                                                            <fmt:formatDate value="${fe:date(data.endTime)}"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            }
        }
    
        public static String formatDate(final Date date) {
            if (date == null) {
                return StringUtil.EMPTY;
            }
            final SimpleDateFormat sdf = new SimpleDateFormat(Constants.ISO_DATETIME_FORMAT);
            sdf.setTimeZone(Constants.TIMEZONE_UTC);
            return sdf.format(date);
        }
    
        public static String formatDate(final LocalDateTime date) {
            if (date == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/timer/MonitorTarget.java

        }
    
        protected StringBuilder appendTimestamp(final StringBuilder buf) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
            append(buf, "timestamp", () -> FessFunctions.formatDate(systemHelper.getCurrentTime()));
            return buf;
        }
    
        protected StringBuilder appendException(final StringBuilder buf, final Exception exception) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp

                                            <th><la:message
                                                    key="labels.access_token_updated_time"/></th>
                                            <td><fmt:formatDate value="${fe:date(updatedTime)}"
                                                                pattern="yyyy-MM-dd'T'HH:mm:ss"/></td>
                                        </tr>
                                        </tbody>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 5.5K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/log/admin_log.jsp

                                                        <td>${f:h(logFile.name)}</td>
                                                        <td><fmt:formatDate value="${logFile.lastModified}"
                                                                            type="BOTH" dateStyle="MEDIUM"/></td>
                                                    </tr>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    					<a href="#result${s.index}"><la:message
    							key="labels.search_result_more" /></a>
    				</div>
    				<div class="info">
    					<fmt:formatDate value="${fe:parseDate(doc.last_modified)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					<c:if test="${doc.last_modified==null || doc.last_modified==''}">
    						<fmt:formatDate value="${fe:parseDate(doc.created)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					</c:if>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  7. src/main/webapp/WEB-INF/view/searchResults.jsp

    					<a href="#result${s.index}"><la:message
    							key="labels.search_result_more" /></a>
    				</div>
    				<div class="info">
    					<fmt:formatDate value="${fe:parseDate(doc.last_modified)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					<c:if test="${doc.last_modified==null || doc.last_modified==''}">
    						<fmt:formatDate value="${fe:parseDate(doc.created)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					</c:if>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            final StringBuilder buf = new StringBuilder(1000);
            buf.append("url:").append(getUrl(keyObj));
            buf.append('\t');
            buf.append("time:").append(FessFunctions.formatDate(new Date(time)));
            return buf;
        }
    
        protected String getUrl(final Object keyObj) {
            if (keyObj instanceof final UrlQueue<?> urlQueue) {
                return escapeValue(urlQueue.getUrl());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  9. docs/fr/docs/project-generation.md

    ## Modèles d'apprentissage automatique avec spaCy et FastAPI - Fonctionnalités
    
    * Intégration d'un modèle NER **spaCy**.
    * Formatage de requête pour **Azure Cognitive Search**.
    * Serveur Python web **prêt à utiliser en production** utilisant Uvicorn et Gunicorn.
    * Déploiement CI/CD Kubernetes pour **Azure DevOps** (AKS).
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jul 02 14:18:06 GMT 2021
    - 6.7K bytes
    - Viewed (0)
  10. docs/fr/docs/contributing.md

    De cette façon, vous n'avez pas à "installer" votre version locale pour pouvoir tester chaque changement.
    
    ### Formatage
    
    Il existe un script que vous pouvez exécuter qui formatera et nettoiera tout votre code :
    
    <div class="termy">
    
    ```console
    $ bash scripts/format.sh
    ```
    
    </div>
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Jul 27 18:51:07 GMT 2023
    - 16.3K bytes
    - Viewed (0)
Back to top