- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for olisin (0.04 sec)
-
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
assertEquals(0, mockResponse.getStatus()); } // Test with valid Origin and CorsHandler found (PUT request) public void test_doFilter_withCorsHandler_put() throws IOException, ServletException { String origin = "http://example.com"; mockRequest.setHeader("Origin", origin); mockRequest.setMethod("PUT"); TestCorsHandler handler = new TestCorsHandler();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java
String origin = "https://example.com"; TestCorsHandler handler1 = new TestCorsHandler("handler1"); TestCorsHandler handler2 = new TestCorsHandler("handler2"); // Execute corsHandlerFactory.add(origin, handler1); corsHandlerFactory.add(origin, handler2); // Verify - should have the latest handler CorsHandler result = corsHandlerFactory.get(origin);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
corsHandler.process(origin, request, response); assertTrue("process should be called for origin: " + origin, processCalled); assertEquals(origin, processOrigin); List<String> originHeaders = responseHeaders.get("Access-Control-Allow-Origin"); assertNotNull("Headers should be set for origin: " + origin, originHeaders);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/EdgesConnecting.java
import com.google.common.collect.UnmodifiableIterator; import java.util.AbstractSet; import java.util.Map; import org.jspecify.annotations.Nullable; /** * A class to represent the set of edges connecting an (implicit) origin node to a target node. * * <p>The {@link #nodeToOutEdge} map means this class only works on networks without parallel edges. * See {@link MultiEdgesConnecting} for a class that works with parallel edges. *
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/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java
assertThrows(IllegalArgumentException.class, () -> domain.child("www.")); } public void testParentChild() { InternetDomainName origin = InternetDomainName.from("foo.com"); InternetDomainName parent = origin.parent(); assertEquals("com", parent.toString()); // These would throw an exception if leniency were not preserved during parent() and child() // calls.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 17.5K bytes - Viewed (0) -
README.md
3. **Follow** the coding standards: `mvn formatter:format` 4. **Add** comprehensive tests for new functionality 5. **Commit** your changes: `git commit -m 'Add amazing feature'` 6. **Push** to the branch: `git push origin feature/amazing-feature` 7. **Submit** a Pull Request with detailed description ### Code Standards - Follow the project's Eclipse formatter configuration
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt
} } } internal class CallReference( referent: RealCall, /** * Captures the stack trace at the time the Call is executed or enqueued. This is helpful for * identifying the origin of connection leaks. */ val callStackTrace: Any?, ) : WeakReference<RealCall>(referent)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:30:11 UTC 2025 - 17.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java
*/ assertWithMessage( "byAscendingSize %s, startIndex %s, inputIsSet %s", byAscendingSize, startIndex, inputIsSet) .that(immutableCopy) .isIn(distinctCandidatesByAscendingSize); } } } } private static final class MutatedOnQuerySet<E> extends ForwardingSet<E> { final Iterator<ImmutableSet<E>> infiniteCandidates;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.4K bytes - Viewed (0)