Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Somani (0.43 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

                final String domain = paramMap.get(CRAWLER_WEB_AUTH + "." + webAuthName + ".domain");
                credentials = new NTCredentials(username, password == null ? StringUtil.EMPTY : password,
                        workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain);
            } else {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SambaHelper.java

        public static final int SID_TYPE_ALIAS = 4;
    
        public static final int SID_TYPE_DELETED = 6;
    
        public static final int SID_TYPE_DOM_GRP = 2;
    
        public static final int SID_TYPE_DOMAIN = 3;
    
        public static final int SID_TYPE_INVALID = 7;
    
        public static final int SID_TYPE_UNKNOWN = 8;
    
        public static final int SID_TYPE_USE_NONE = 0;
    
        public static final int SID_TYPE_USER = 1;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/it/search/SearchApiTests.java

                deleteMethod("/api/admin/failurelog/log/" + elem.get("id"));
            }
    
            final Map<String, Object> requestBody = new HashMap<>();
            requestBody.put("q", "Example Domain");
            checkMethodBase(requestBody).delete("/api/admin/searchlist/query");
            refresh();
    
            for (String sId : getSchedulerIds(NAME_PREFIX)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

    /**
     * @author FreeGen
     */
    public interface FessConfig extends FessEnv, org.codelibs.fess.mylasta.direction.FessProp {
    
        /** The key of the configuration. e.g. Fess */
        String DOMAIN_TITLE = "domain.title";
    
        /** The key of the configuration. e.g. default */
        String search_engine_TYPE = "search_engine.type";
    
        /** The key of the configuration. e.g. http://localhost:9201 */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  5. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                final String workstation = parameterMap.get("workstation");
                final String domain = parameterMap.get("domain");
                return new NTCredentials(getUsername(), getPassword(), workstation == null ? StringUtil.EMPTY : workstation,
                        domain == null ? StringUtil.EMPTY : domain);
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    #                                                                                    Core
    #                                                                                   ======
    #
    # The title of domain the application for logging
    domain.title = Fess
    
    # Search Engine
    search_engine.type=default
    search_engine.http.url=http://localhost:9201
    search_engine.http.ssl.certificate_authorities=
    search_engine.username=
    search_engine.password=
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/resources/fess_label_ru.properties

    labels.advance_search_occt_default=anywhere in the page
    labels.advance_search_occt_allintitle=in the title of the page
    labels.advance_search_occt_allinurl=in the url of the page
    labels.advance_search_sitesearch=Site or domain
    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=anytime
    labels.advance_search_timestamp_pastday=past 24 hours
    labels.advance_search_timestamp_pastweek=past week
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: in the url of the page */
        public static final String LABELS_advance_search_occt_allinurl = "{labels.advance_search_occt_allinurl}";
    
        /** The key of the message: Site or domain */
        public static final String LABELS_advance_search_sitesearch = "{labels.advance_search_sitesearch}";
    
        /** The key of the message: Last update */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_de.properties

    labels.advance_search_occt_default=irgendwo auf der Seite
    labels.advance_search_occt_allintitle=im Titel der Seite
    labels.advance_search_occt_allinurl=in der URL der Seite
    labels.advance_search_sitesearch=Seite oder Domain
    labels.advance_search_timestamp=Letzte Ă„nderung
    labels.advance_search_timestamp_default=jederzeit
    labels.advance_search_timestamp_pastday=letzte 24 Stunden
    labels.advance_search_timestamp_pastweek=letzte Woche
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            assertEquals(1, parameterMap.size());
            assertEquals("D", parameterMap.get("domain"));
    
            parameters = "domain=DOMAIN";
            parameterMap = ParameterUtil.parse(parameters);
            assertEquals(1, parameterMap.size());
            assertEquals("DOMAIN", parameterMap.get("domain"));
    
            parameters = "\n";
            parameterMap = ParameterUtil.parse(parameters);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
Back to top