Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 711 - 720 of 796 for Curl (0.01 seconds)

  1. src/test/java/org/codelibs/fess/it/admin/JobLogTests.java

        }
    
        /**
         * Helper: Create a web crawler config
         */
        private static void createWebConfig() {
            final Map<String, Object> requestBody = new HashMap<>();
            // Keep original external URL for stable test results
            final String urls = "https://www.codelibs.org/";
            final String includedUrls = "https://www.codelibs.org/.*";
            requestBody.put("name", NAME_PREFIX + "WebConfig");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/job/PythonJob.java

     * Python scripts with proper environment setup and argument passing.
     *
     * <p>Python scripts are executed in the WEB-INF/env/python/resources directory
     * and have access to the Fess system environment including OpenSearch URL and session ID.</p>
     */
    public class PythonJob extends ExecJob {
        /** Logger instance for this class */
        static final Logger logger = LogManager.getLogger(PythonJob.class);
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/entity/ChatMessageTest.java

        }
    
        @Test
        public void test_chatSourceFromMap() {
            final Map<String, Object> doc = new HashMap<>();
            doc.put("title", "Test Title");
            doc.put("url", "https://example.com");
            doc.put("doc_id", "doc-123");
            doc.put("content_description", "Test snippet");
    
            final ChatSource source = new ChatSource(5, doc);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

            assertTrue(entityId.startsWith("http://"));
            assertTrue(entityId.contains(":8080/sso/metadata"));
    
            // Scenario 2: OpenSearch embedded mode URL
            if (localhost.getHostAddress().contains(":")) {
                // IPv6 localhost
                String opensearchUrl = IpAddressUtil.buildUrl("http", localhost, 9200, "");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

            item.put("id", artifact.getName() + ":" + artifact.getVersion());
            item.put("name", artifact.getName());
            item.put("version", artifact.getVersion());
            item.put("url", artifact.getUrl());
            return item;
        }
    
        private Artifact getArtifactFromInstallForm(final InstallForm form) {
            final String[] values = form.id.split(":");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 11.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java

        }
    
        @Test
        public void test_constants_coverage() {
            // Test coverage for private constants indirectly
            // The DISABLE_URL_ENCODE constant is used in URL processing
            assertTrue(true);
        }
    
        @Test
        public void test_getAvailableBoostDocumentRuleList_emptyResult() {
            // Mock FessConfig with minimal settings
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                if (href.startsWith("#")) {
                    return false;
                }
                Element element = document.createElement("ulink");
                element.setAttribute("url", href);
                nodes.push(element);
                return true;
            }
    
            @Override
            public void onEndElement(String element) {
                nodes.pop();
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 21 06:20:45 GMT 2025
    - 29.3K bytes
    - Click Count (0)
  8. docs/changelogs/changelog_1x.md

       the way the hostname verifier was selected.
     * Fix: Locking bug in SpdyConnection.
     * Fix: Ignore null header values (for compatibility with HttpURLConnection).
     * Add URLStreamHandlerFactory support so that `URL.openConnection()` uses
       OkHttp.
     * Expose the transport ("http/1.1", "spdy/3", etc.) via magic request headers.
       Use `X-Android-Transports` to write the preferred transports and
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 6.4K bytes
    - Click Count (0)
  9. ADDING_NEW_LANGUAGE.md

    2. **Access the Admin UI:**
       ```
       http://localhost:8080/admin/
       ```
    
    3. **Test language selection:**
       - Check if your language appears in the language dropdown
       - Force your language by adding URL parameter: `?browser_lang=[locale]`
       - Example: `http://localhost:8080/admin/?browser_lang=sv`
    
    4. **Verify translations:**
       - Navigate through different admin pages
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt

      }
      return builder.build()
    }
    
    internal fun Headers.toHeaderList(): List<Header> =
      (0 until size).map {
        Header(name(it), value(it))
      }
    
    /** Returns true if an HTTP request for this URL and [other] can reuse a connection. */
    internal fun HttpUrl.canReuseConnectionFor(other: HttpUrl): Boolean =
      host == other.host &&
        port == other.port &&
        scheme == other.scheme
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 10.3K bytes
    - Click Count (1)
Back to Top