Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 64 for myhost (0.08 seconds)

  1. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

                    return "fess-server";
                }
            });
            try {
                envMap.put("HOSTNAME", "myhost");
                final long pid = ProcessHandle.current().pid();
                assertEquals("fess-server@myhost:" + pid, systemHelper.getInstanceId());
            } finally {
                envMap.remove("HOSTNAME");
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 44.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java

                    return new Tuple3[] { new Tuple3<>("Host", "example.com", "site1"), new Tuple3<>("X-Forwarded-Host", "test.com", "site2") };
                }
            });
    
            MockletHttpServletRequest request = getMockRequest();
    
            // No matching host header
            String key = virtualHostHelper.getVirtualHostKey();
            assertEquals("", key);
    
            // Matching host header
            request.addHeader("Host", "example.com");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final String result = indexExportJob.query(QueryBuilders.termQuery("host", "example.com")).execute();
    
            assertEquals("Exported 0 documents.", result);
        }
    
        // --- Edge cases ---
    
        @Test
        public void test_buildFilePath_emptyString() {
            // Empty string is a valid relative URI with null host and empty path
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 09:08:38 GMT 2026
    - 66.1K bytes
    - Click Count (0)
  4. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

            client = false
            daemon = false
            worker = false
        }
    
        computedRuntimes {
            client = false
            daemon = false
            worker = false
        }
    
        // TODO: Most of these properties are the same across projects. We should
        // compute these at the settings-level instead of the project-level.
        identity {
            baseName = "gradle-$name"
            buildTimestamp = buildTimestamp()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:46:35 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/job/IndexExportJob.java

            try {
                final URI uri = new URI(url);
                String host = uri.getHost();
                String path = uri.getPath();
    
                if (host == null || host.isEmpty()) {
                    host = "_local";
                }
    
                if (path == null || path.isEmpty()) {
                    path = "/" + formatter.getIndexFileName();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  6. src/main/resources/fess_label_en.properties

    labels.pathmap_pt_both=Crawling/Displaying
    labels.pathmap_pt_stored=Extracted URL Conversion
    labels.regular_name=Regular Name
    labels.duplicate_name=Duplicate Name
    labels.duplicate_host_configuration=Duplicate Host
    labels.duplicate_host_title_details=Duplicate Host
    labels.dashboard_title_configuration=System Config
    labels.dashboard_plugin=Dashboard Plugin
    labels.web_config_list=Web Config List
    labels.access_token_details=Access Token Details
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  7. src/main/resources/mail/log_notification.dfmail

    /*
     [Log Notification]
    */
    subject: [FESS] /*pmb.level*/ Log Alert: /*pmb.hostname*/
    >>>
    --- Server Info ---
    Host Name: /*pmb.hostname:orElse('Unknown')*/
    
    --- Log Summary ---
    Level: /*pmb.level*/
    Total: /*pmb.count*/ event(s) in the last /*pmb.interval*/ seconds
    
    --- Log Details ---
    /*pmb.details*/
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 343 bytes
    - Click Count (0)
  8. src/main/resources/fess_label_it.properties

    labels.max_access_count=Numero massimo di accessi
    labels.number_of_thread=Numero di thread
    labels.interval_time=Intervallo
    labels.millisec=millisecondi
    labels.permissions=Permessi
    labels.virtual_hosts=Host virtuali
    labels.virtual_host=Host virtuale
    labels.label_type=Etichetta
    labels.file_crawling_button_create=Crea
    labels.file_crawling_button_create_job=Crea nuovo lavoro
    labels.web_crawling_configuration=Scansione web
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 52K bytes
    - Click Count (0)
  9. src/main/resources/fess_label_pt_BR.properties

    labels.pathmap_pt_both=Rastreamento/Exibição
    labels.pathmap_pt_stored=Conversão de URL extraída
    labels.regular_name=Nome regular
    labels.duplicate_name=Nome duplicado
    labels.duplicate_host_configuration=Host duplicado
    labels.duplicate_host_title_details=Host duplicado
    labels.dashboard_title_configuration=Configuração do sistema
    labels.dashboard_plugin=Plugin do painel
    labels.web_config_list=Lista de configuração web
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 53.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                public long getCurrentTimeAsLong() {
                    return System.currentTimeMillis();
                }
    
                @Override
                public String getHostname() {
                    return "test-host";
                }
    
                @Override
                public File createTempFile(String prefix, String suffix) {
                    try {
                        return File.createTempFile(prefix, suffix);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
Back to Top