Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 124 for sekund (0.05 seconds)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/PreparePatchRelease.kt

            val uri = "https://services.gradle.org/versions/$major"
            val request = HttpRequest.newBuilder().uri(URI(uri)).build()
            val response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString())
            if (response.statusCode() > 399) {
                throw RuntimeException("Failed to fetch versions from Gradle services: ${response.statusCode()} ${response.body()}")
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            // First call without SAStruts.method
            mockRequest.setQueryString("query=test");
            assertEquals(customPath, webApiRequest.getServletPath());
    
            // Second call with SAStruts.method
            mockRequest.setQueryString("SAStruts.method=execute");
            assertEquals(originalPath, webApiRequest.getServletPath());
    
            // Third call without SAStruts.method again
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

            List<Map<String, Object>> page1 = JsonPath.from(response).getList("response.logs");
    
            logger.info("Page 1: {}", page1);
    
            // Get second page
            searchBody.put("page", 2);
            response = checkMethodBase(searchBody).get(API_PATH + "/logs").asString();
            List<Map<String, Object>> page2 = JsonPath.from(response).getList("response.logs");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/it/admin/StatsTests.java

            String response2 = checkGetMethod(searchBody, "").asString();
            Integer status2 = JsonPath.from(response2).get("response.status");
            assertEquals(Integer.valueOf(0), status2, "Second call should return status 0");
    
            String response3 = checkGetMethod(searchBody, "").asString();
            Integer status3 = JsonPath.from(response3).get("response.status");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  5. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

            if (githubToken.isPresent) {
                requestBuilder.header("Authorization", "token ${githubToken.get()}")
            }
            val response = HttpClient.newHttpClient().send(requestBuilder.build(), HttpResponse.BodyHandlers.ofString())
            if (response.statusCode() > 399) {
                throw RuntimeException("Failed to get issues: $uri ${response.statusCode()} ${response.body()}")
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                assertTrue("Should find custom thread in dump", customThreadFound.get() > 0);
    
            } finally {
                latch.countDown();
                customThread.join(1000); // Wait up to 1 second for thread to finish
            }
        }
    
        @Test
        public void test_writeThreadDump_fileContent() throws IOException {
            Path tempFile = Files.createTempFile("test-thread-dump-content", ".txt");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            // Test zero boundary
            testBoundaryValue(0L);
    
            // Test one millisecond boundaries
            testBoundaryValue(1L);
            testBoundaryValue(-1L);
    
            // Test one second boundaries
            testBoundaryValue(1000L);
            testBoundaryValue(-1000L);
    
            // Test one minute boundaries
            testBoundaryValue(60000L);
            testBoundaryValue(-60000L);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * The outer map key is the virtual host key, and the value is a pair containing:
         * - First: Map of exact term matches (term -> content)
         * - Second: List of regex pattern matches (Pattern -> content template)
         */
        protected Map<String, Pair<Map<String, String>, List<Pair<Pattern, String>>>> relatedContentMap = Collections.emptyMap();
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

                Path targetFile = tempDir.resolve("target.tmp");
                Files.createFile(targetFile);
    
                // First delete succeeds
                assertTrue(Files.deleteIfExists(targetFile));
    
                // Second delete returns false (file already gone)
                assertFalse(Files.deleteIfExists(targetFile));
            } finally {
                deleteDirectory(tempDir.toFile());
            }
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                if (response.getHttpStatusCode() != 200 && response.getHttpStatusCode() != 201) {
                    logger.warn("Failed to send heartbeat: status={}", response.getHttpStatusCode());
                }
            } catch (final Exception e) {
                logger.debug("Failed to send heartbeat.", e);
            }
        }
    
        /**
         * Removes the heartbeat document for this instance from OpenSearch.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
Back to Top