- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 79 for Wildcard (0.05 sec)
-
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
*/ protected Map<String, CorsHandler> handerMap = new HashMap<>(); /** * Adds a CORS handler for the specified origin. * * @param origin the origin pattern (can be "*" for wildcard) * @param handler the CORS handler to associate with the origin */ public void add(final String origin, final CorsHandler handler) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Types.java
WildcardType wildcard = (WildcardType) componentType; Type[] lowerBounds = wildcard.getLowerBounds(); checkArgument(lowerBounds.length <= 1, "Wildcard cannot have more than one lower bounds."); if (lowerBounds.length == 1) { return supertypeOf(newArrayType(lowerBounds[0])); } else { Type[] upperBounds = wildcard.getUpperBounds();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
assertNotNull(queryBuilder3); } public void test_convertWildcardQuery_withSpecialCharacters() throws Exception { // Test with special wildcard characters QueryContext queryContext1 = new QueryContext("te?t*", false); WildcardQuery wildcardQuery1 = new WildcardQuery(new Term("title", "te?t*"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java
} return value; } /** * Sets the lowercase wildcard flag. * * @param lowercaseWildcard the lowercase wildcard flag */ public void setLowercaseWildcard(final boolean lowercaseWildcard) { this.lowercaseWildcard = lowercaseWildcard; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryEnumIterator1Test.java
verify(tree, atLeastOnce()).release(); } @ParameterizedTest @ValueSource(strings = { "", " ", "*", "?" }) @DisplayName("Supports various wildcard values without throwing (edge cases)") void wildcardEdgeCases(String wildcard) throws Exception { // minimal successful first response with a single entry
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ConnectionCoalescingTest.kt
} /** Check that wildcard SANs are supported. */ @Test fun commonThenWildcard() { server.enqueue(MockResponse()) server.enqueue(MockResponse()) assert200Http2Response(execute(url), server.hostName) val sanUrl = url.newBuilder().host("www.wildcard.com").build() assert200Http2Response(execute(sanUrl), "www.wildcard.com")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jun 19 11:44:16 UTC 2025 - 19.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/DosFileFilterTest.java
@Test public void testAcceptIgnoresWildcard() throws Exception { // Wildcard shouldn't affect accept logic. DosFileFilter customFilter = new DosFileFilter("*.txt", SmbFile.ATTR_DIRECTORY); SmbFile file = mock(SmbFile.class); when(file.getAttributes()).thenReturn(SmbFile.ATTR_DIRECTORY); assertTrue(customFilter.accept(file), "Wildcard should be ignored in accept"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractConditionQuery.java
regQ(existsQuery); return existsQuery; } protected WildcardQueryBuilder regWildcardQ(String name, String wildcard) { checkEsInvalidQuery(name, wildcard); WildcardQueryBuilder wildcardQuery = QueryBuilders.wildcardQuery(name, wildcard); regQ(wildcardQuery); return wildcardQuery; } protected RegexpQueryBuilder regRegexpQ(String name, String regexp) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
@Test @DisplayName("DosFileFilter wildcard and attributes are preserved through unwrap") void dosFileFilter_preservesFieldsThroughUnwrap() throws Exception { // Test with various wildcard patterns and attribute masks String[] wildcards = { "*.txt", "test*", null }; int[] attributes = { 0x10, 0x20, 0x07 }; for (int i = 0; i < wildcards.length; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0)