Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 85 for jsonp (0.02 seconds)

  1. src/main/resources/fess_config.properties

    api.search.accept.referers=
    # Whether to enable scroll for API search.
    api.search.scroll=false
    # Headers for API JSON response.
    api.json.response.headers=Referrer-Policy:strict-origin-when-cross-origin
    # Whether to include exceptions in API JSON response.
    api.json.response.exception.included=false
    # Headers for API GSA response.
    api.gsa.response.headers=Referrer-Policy:strict-origin-when-cross-origin
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'api.jsonp.enabled'. <br>
         * The value is, e.g. false <br>
         * comment: Whether to enable JSONP for API.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getApiJsonpEnabled();
    
        /**
         * Is the property for the key 'api.jsonp.enabled' true? <br>
         * The value is, e.g. false <br>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 576.9K bytes
    - Click Count (2)
  3. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

            assertTrue(result2 instanceof MatchAllQueryBuilder);
    
            // Both should generate the same JSON
            String json1 = result1.toString().replaceAll("[\\s\\n]", "");
            String json2 = result2.toString().replaceAll("[\\s\\n]", "");
            assertEquals(json1, json2);
        }
    
        @Test
        public void test_execute_withVeryLargeBoost() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/job/JsonIndexExportFormatter.java

                if (!first) {
                    json.append(",\n");
                }
                first = false;
    
                json.append("  \"").append(escapeJson(field)).append("\": ");
                appendJsonValue(json, value);
            }
    
            json.append("\n}\n");
            return json.toString();
        }
    
        private void appendJsonValue(final StringBuilder json, final Object value) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 07 10:31:36 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  5. src/main/resources/fess_indices/fess_log.notification_queue/notification_queue.json

    Shinsuke Sugaya <******@****.***> 1774491848 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 386 bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/job/IndexExportJobTest.java

            final String json = new JsonIndexExportFormatter().format(source, Collections.emptySet());
    
            assertTrue(json.contains("\"title\": \"Test Title\""));
            assertTrue(json.contains("\"content\": \"Test Content\""));
            assertTrue(json.contains("\"url\": \"https://example.com/page.html\""));
            assertTrue(json.startsWith("{"));
            assertTrue(json.trim().endsWith("}"));
        }
    
        @Test
    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)
  7. src/main/resources/fess_indices/fess.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 40K bytes
    - Click Count (0)
  8. src/main/resources/fess_indices/_aws/fess.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  9. src/main/resources/fess_indices/_cloud/fess.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  10. src/main/resources/fess_indices/fess/doc.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.8K bytes
    - Click Count (0)
Back to Top