- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 81 for regular (0.06 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/CreateForm.java
* crawling from duplicate hostnames to the regular canonical hostname. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The regular canonical hostname that should be used */ @Required
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/stream/StreamUtil.java
} /** * Splits the given string into an array of substrings based on the specified regular expression * and returns a stream of those substrings. * * @param value the string to be split; if {@code null}, the method returns an empty stream * @param regex the regular expression to use for splitting the string
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* * <p>This method performs a paginated search through all duplicate host configurations, * applying any search filters specified in the pager. The results are sorted * by sort order, creation time, regular name, and duplicate hostname.</p> * * @param duplicateHostPager the pager containing search criteria and pagination settings * @return a list of DuplicateHost entities matching the search criteria
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
* <li>User agent settings</li> * <li>URL pattern matching with regular expressions and contains filters</li> * </ul> * */ public class GsaConfigParser extends DefaultHandler { /** Logger instance for this class. */ private static final Logger logger = LogManager.getLogger(GsaConfigParser.class); /** Prefix for regular expression patterns. */ public static final String REGEXP = "regexp:";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/DoublesMethodsForWeb.java
* the License. */ package com.google.common.primitives; import com.google.common.annotations.GwtCompatible; /** * Holder for web specializations of methods of {@code Doubles}. Intended to be empty for regular * version. */ @GwtCompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 860 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/SearchForm.java
/** * The search form for Path Map. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The regular expression pattern field for path mapping. */ public String regex; /** * The replacement string field for path mapping. */ public String replacement;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java
assertTrue(empty instanceof EmptyContiguousSet); reserializeAndAssert(empty); ContiguousSet<Integer> regular = ContiguousSet.create(Range.closed(1, 3), integers()); assertTrue(regular instanceof RegularContiguousSet); reserializeAndAssert(regular); /* * Make sure that we're using RegularContiguousSet.SerializedForm and not
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
if (dirManager != null && smbFile.getContext().getConfig().isUseDirectoryLeasing()) { return listFilesWithDirectoryLeasing(smbFile, dirManager); } else { // Fall back to regular directory listing return smbFile.listFiles(); } } catch (CIFSException e) { throw SmbException.wrap(e); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/SearchForm.java
/** * The search form for Duplicate Host. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The regular name field for duplicate host configuration. */ public String regularName; /** * The duplicate host name field for searching duplicate hosts. */ public String duplicateHostName;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
*/ public CreateForm() { } /** * The CRUD operation mode (create, update, etc.). */ @ValidateTypeFailure public Integer crudMode; /** * The regular expression pattern to match request paths. */ @Required @Size(max = 1000) public String regex; /** * The replacement pattern for matched paths. */ @Size(max = 1000)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0)