Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 350 for pattern2 (0.05 sec)

  1. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

        }
    
        public void test_parse_escaped_quotes() {
            String value;
            String[] result;
    
            // Escaped quotes within quoted value - DOES NOT get unquoted because pattern doesn't match
            value = "\"value with \"\"escaped\"\" quotes\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(1, result.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingConcurrentMap.java

     * override one or more methods to modify the behavior of the backing map as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>{@code default} method warning:</b> This class forwards calls to <i>only some</i> {@code
     * default} methods. Specifically, it forwards calls only for methods that existed <a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 18 16:58:16 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java

        /**
         * Creates a directory entry enumeration iterator.
         *
         * @param th the SMB tree handle for the connection
         * @param parent the parent resource being enumerated
         * @param wildcard the wildcard pattern for filtering entries
         * @param filter additional resource name filter to apply
         * @param searchAttributes the file attributes to search for
         * @throws CIFSException if an error occurs during initialization
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    				</div>
    				<div class="info">
    					<fmt:formatDate value="${fe:parseDate(doc.last_modified)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					<c:if test="${doc.last_modified==null || doc.last_modified==''}">
    						<fmt:formatDate value="${fe:parseDate(doc.created)}" type="BOTH" pattern="yyyy-MM-dd HH:mm" />
    					</c:if>
    					<c:if test="${doc.content_length!=null && doc.content_length!=''}">
    						<div class="d-sm-none"></div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

        private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class);
    
        /**
         * Constructor for ProtwordsCreator.
         * Initializes the creator with a pattern to match protwords files.
         */
        public ProtwordsCreator() {
            super("protwords.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/PathMapPager.java

        /** The number of records per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
        /** The ID. */
        public String id;
    
        /** The regex pattern. */
        public String regex;
    
        /** The replacement string. */
        public String replacement;
    
        /** The process type. */
        public String processType;
    
        /** The sort order. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingMapEntry.java

     * one or more methods to modify the behavior of the backing map entry as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingMapEntry} forward <i>indiscriminately</i> to
     * the methods of the delegate. For example, overriding {@link #getValue} alone <i>will not</i>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 17:32:30 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SimpleMemoryManagementTest.java

            session.acquire();
    
            // Should handle exceptions gracefully
            assertDoesNotThrow(() -> session.release());
        }
    
        /**
         * Test AutoCloseable pattern
         */
        @Test
        @Timeout(5)
        public void testAutoCloseablePattern() throws Exception {
            SmbSessionImpl session = new SmbSessionImpl(mockContext, "testhost", "testdomain", mockTransport);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

                    + facetResponse + "]";
        }
    
        /**
         * Builder class for constructing SearchResult instances using the builder pattern.
         *
         * This builder provides a fluent interface for setting the various properties
         * of a SearchResult before creating the final immutable instance.
         */
        static class SearchResultBuilder {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

            }
        }
    
        @Nested
        @DisplayName("Integration Pattern Tests")
        class IntegrationPatternTests {
    
            @Test
            @DisplayName("Should simulate usage in Smb2CreateResponse context")
            void testSimulatedUsagePattern() throws SMBProtocolDecodingException {
                // Simulate the pattern from Smb2CreateResponse
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top