Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for JSON (0.03 sec)

  1. fess-crawler/src/test/resources/extractor/json/test.json

    {
      "title": "Sample Document",
      "author": "John Doe",
      "version": "1.0",
      "published": "2025-01-15",
      "tags": ["crawler", "extractor", "json"],
      "content": {
        "summary": "This is a sample JSON document for testing",
        "body": "The extractor should handle nested objects and arrays properly"
      },
      "metadata": {
        "created_at": "2025-01-01T00:00:00Z",
        "updated_at": "2025-01-15T12:00:00Z"
      }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 412 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/curl/CurlResponseTest.java

            headers.put("CONTENT-LENGTH", Arrays.asList("100"));
            headers.put("accept-encoding", Arrays.asList("gzip"));
            response.setHeaders(headers);
    
            // All header access should be case-insensitive
            assertEquals("application/json", response.getHeaderValue("content-type"));
            assertEquals("application/json", response.getHeaderValue("CONTENT-TYPE"));
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

            } else if (value instanceof String[]) {
                final String json = Arrays.stream((String[]) value)
                        .map(s -> "\"" + StringEscapeUtils.escapeJson(s) + "\"")
                        .collect(Collectors.joining(","));
                buf.append('[').append(json).append(']');
            } else if (value instanceof List) {
                final String json = ((List<?>) value).stream()
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 32.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        }
    
        /**
         * Starts a scheduled job by ID.
         *
         * @param id the ID of the scheduled job to start
         * @return JSON response indicating success or failure
         */
        // PUT /api/admin/scheduler/{id}/start
        @Execute(urlPattern = "{}/@word")
        public JsonResponse<ApiResult> put$start(final String id) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractor.java

                }
    
                return extractData;
            } catch (final IOException e) {
                throw new ExtractException("Failed to parse JSON content", e);
            }
        }
    
        /**
         * Recursively extracts content from JSON nodes.
         *
         * @param node the JSON node to extract from
         * @param parentKey the parent key path
         * @param textBuilder the string builder for text content
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/user/ApiAdminUserAction.java

        @Resource
        private UserService userService;
    
        /**
         * Retrieves user settings with pagination.
         *
         * @param body the search parameters for filtering and pagination
         * @return JSON response containing user settings list
         */
        // GET /api/admin/user/settings
        // PUT /api/admin/user/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/SuggesterResourceLoadingTest.java

            try (InputStream is = getClass().getClassLoader().getResourceAsStream("suggest_indices/suggest.json")) {
                assertNotNull("Settings resource should exist", is);
                final String settings = new String(is.readAllBytes(), StandardCharsets.UTF_8);
    
                // Verify it's a valid JSON structure
                assertTrue("Settings should be JSON", settings.trim().startsWith("{"));
            }
        }
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JsonExtractorTest.java

            final ExtractData extractData = jsonExtractor.getText(in, null);
            CloseableUtil.closeQuietly(in);
    
            final String content = extractData.getContent();
    
            // Verify nested content extraction
            assertTrue(content.contains("content.summary"));
            assertTrue(content.contains("This is a sample JSON document for testing"));
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 03:46:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  9. README.md

     - [Git](https://github.com/codelibs/fess-ds-git)
     - [Gitbucket](https://github.com/codelibs/fess-ds-gitbucket)
     - [G Suite](https://github.com/codelibs/fess-ds-gsuite)
     - [JSON](https://github.com/codelibs/fess-ds-json)
     - [Office 365](https://github.com/codelibs/fess-ds-office365)
     - [S3](https://github.com/codelibs/fess-ds-s3)
     - [Salesforce](https://github.com/codelibs/fess-ds-salesforce)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 00:28:33 UTC 2025
    - 7.8K bytes
    - Viewed (2)
  10. README.md

    import org.codelibs.curl.CurlResponse;
    
    try (CurlResponse response = Curl.get("https://example.com")
                                    .param("q", "curl4j")
                                    .header("Accept", "application/json")
                                    .execute()) {
        System.out.println("Status: " + response.getHttpStatusCode());
        System.out.println(response.getContentAsString());
    }
    ```
    
    ### Asynchronous request
    
    ```java
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top