Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Marche (0.19 sec)

  1. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

    import org.lastaflute.web.response.ActionResponse;
    import org.lastaflute.web.response.HtmlResponse;
    import org.lastaflute.web.util.LaRequestUtil;
    
    import com.google.common.cache.Cache;
    import com.google.common.cache.CacheBuilder;
    import com.microsoft.aad.adal4j.AuthenticationContext;
    import com.microsoft.aad.adal4j.AuthenticationResult;
    import com.microsoft.aad.adal4j.ClientCredential;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    cache = StringEscapeUtils.escapeHtml4(cache);
                }
                cache = ComponentUtil.getPathMappingHelper().replaceUrls(cache);
                if (queries != null && queries.length > 0) {
                    doc.put(HL_CACHE, replaceHighlightQueries(cache, queries));
                } else {
                    doc.put(HL_CACHE, cache);
                }
            } else {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  3. src/main/resources/fess_label_fr.properties

    labels.search_result_last_modified	=	Dernière modification :
    labels.search_result_favorite	=	Aime
    labels.search_result_favorited	=	Aimé
    labels.search_click_count	=	Vu ({0})
    labels.search_result_more	=	plus..
    labels.search_result_cache	=	Cache
    labels.search_result_similar	=	Résultats similaires ({0})
    labels.facet_label_title	=	Étiqueter
    labels.facet_timestamp_title	=	Plage de dates
    labels.facet_timestamp_1day	=	Dernières 24 heures
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PluginHelper.java

    import org.xml.sax.SAXException;
    
    import com.fasterxml.jackson.databind.ObjectMapper;
    import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
    import com.google.common.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    
    public class PluginHelper {
        private static final Logger logger = LogManager.getLogger(PluginHelper.class);
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_de.properties

    labels.search_result_favorite=Favorit
    labels.search_result_favorited=Als Favorit hinzugefügt
    labels.search_click_count=Angezeigt ({0})
    labels.search_result_more=mehr..
    labels.search_result_cache=Cache
    labels.search_result_similar=Ähnliche Ergebnisse ({0})
    labels.facet_label_title=Label
    labels.facet_timestamp_title=Datumsbereich
    labels.facet_timestamp_1day=Letzte 24 Stunden
    labels.facet_timestamp_1week=Letzte Woche
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/security.js

    ms")||{},h=c.valAttr("param-name")||c.attr("name"),i=function(a,b){b(a)};if(!h)throw new Error("Missing input name used for http requests made by server validator");g||(g={}),"string"==typeof g&&(g=a.parseJSON(g)),g[h]=d,a.ajax({url:b,type:"POST",cache:!1,data:g,dataType:"json",error:function(a){return i({valid:!1,message:"Connection failed with status: "+a.statusText},f),!1},success:function(a){i(a,f)}})};a.formUtils.addAsyncValidator({name:"server",validatorFunction:function(a,b,c,d,e,g){var h...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 10.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/Constants.java

        public static final String SEARCH_FIELD_LOG_SEARCH_QUERY = "q";
    
        public static final String STATS_REPORT_TYPE = "reportType";
    
        public static final String RESULT_DOC_ID_CACHE = "resultDocIds";
    
        public static final String CRAWLING_INFO_SYSTEM_NAME = "system";
    
        // view parameters
    
        public static final String FACET_QUERY = "fess.FacetQuery";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        docList.addProcessingTime(processingTime);
                        if (logger.isDebugEnabled()) {
                            logger.debug("Added the document({}, {}ms). The number of a document cache is {} (size: {}).",
                                    MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size(), docList.getContentSize());
                        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

    import org.lastaflute.web.util.LaResponseUtil;
    import org.lastaflute.web.util.LaServletContextUtil;
    import org.opensearch.common.joda.Joda;
    
    import com.google.common.cache.CacheBuilder;
    import com.google.common.cache.CacheLoader;
    import com.google.common.cache.LoadingCache;
    
    public class FessFunctions {
        private static final Logger logger = LogManager.getLogger(FessFunctions.class);
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            response.header("Content-Disposition", "attachment; filename=\"" + name + "\"; filename*=utf-8''" + encodedName);
            response.header("Pragma", "no-cache");
            response.header("Cache-Control", "no-cache");
            response.header("Expires", "Thu, 01 Dec 1994 16:00:00 GMT");
            response.contentTypeOctetStream();
            return response.stream(out -> {
                try {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.9K bytes
    - Viewed (0)
Back to top