- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for Edge (0.88 sec)
-
guava/src/com/google/common/graph/Network.java
/** * Returns the nodes which are the endpoints of {@code edge} in this network. * * @throws IllegalArgumentException if {@code edge} is not an element of this network */ EndpointPair<N> incidentNodes(E edge); /** * Returns a live view of the edges which have an {@link #incidentNodes(Object) incident node} in * common with {@code edge}. An edge is not considered adjacent to itself. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:03:02 UTC 2025 - 22.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
assertTrue("Timeout values should be configurable", true); // Test edge cases generator.setCommandTimeout(0L); generator.setCommandTimeout(-1L); generator.setCommandTimeout(Long.MAX_VALUE); assertTrue("Timeout edge cases should be handled", true); } // Test ProcessDestroyer inner class
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/EdgesConnecting.java
} @Override public int size() { return getConnectingEdge() == null ? 0 : 1; } @Override public boolean contains(@Nullable Object edge) { E connectingEdge = getConnectingEdge(); return connectingEdge != null && connectingEdge.equals(edge); } private @Nullable E getConnectingEdge() { return nodeToOutEdge.get(targetNode); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
// Don't assert true/false here, just test that method doesn't throw assertNotNull("Validation should return a boolean result for: " + cron, Boolean.valueOf(result)); } } // Test edge cases to understand the validation behavior public void test_edgeCaseBehavior() { String[] edgeCases = { "0 0 25 * * ?", // Invalid day of month "0 60 * * * ?", // Invalid minute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
assertSame(tz1, tz2); assertSame(FessUserTimeZoneProcessProvider.centralTimeZone, tz1); } // Test with null RequestManager (edge case) public void test_getRequestedTimeZone_withNullRequestManager() { // Execute with null request manager TimeZone result = provider.getRequestedTimeZone(null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
// Verify query was processed // Note: Field logging behavior depends on implementation } public void test_convertPhraseQuery_emptyString() { // Test with empty string term (edge case) PhraseQuery.Builder builder = new PhraseQuery.Builder(); builder.add(new Term(Constants.DEFAULT_FIELD, "")); PhraseQuery phraseQuery = builder.build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
assertEquals(type1, type2); Map<String, Object> source1 = event.toSource(); Map<String, Object> source2 = event.toSource(); assertSame(source1, source2); } // Test edge cases for version numbers public void test_versionNumberEdgeCases() { TestSearchLogEvent event = new TestSearchLogEvent("id", 0L, "type"); // Test minimum value
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java
// Third invocation curtainFinallyHook.hook(assistantDirector); // All invocations should complete successfully assertTrue(true); } // Test with null assistant director (edge case) public void test_hook_withNullAssistantDirector() { // Hook should handle null parameter gracefully curtainFinallyHook.hook(null); // Verify no NullPointerException is thrown
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/rank/fusion/SearchResultTest.java
assertEquals(largeCount, result.getAllRecordCount()); } public void test_negativeQueryTime() { // Test with negative query time (edge case) SearchResult result = SearchResult.create().queryTime(-1L).build(); assertEquals(-1L, result.getQueryTime()); } public void test_documentListImmutability() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
webApiRequest = new WebApiRequest(mockRequest, customPath); assertEquals(originalPath, webApiRequest.getServletPath()); } // Test edge cases for SAStruts.method detection public void test_getServletPath_withSAStrutsMethodSubstring_returnsSuperPath() { final String originalPath = "/original/path"; final String customPath = "/api/v1/search";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0)