- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 508 for pattern (0.09 sec)
-
docs/uk/docs/tutorial/query-params-str-validations.md
Але тепер Ви знаєте, що коли вони знадобляться, їх можна застосовувати у **FastAPI**. ### Pydantic v1 `regex` замість `pattern` До версії Pydantic 2 і FastAPI 0.100.0 параметр називався `regex` замість `pattern`, але тепер він застарів. Ви все ще можете зустріти код, який використовує його: //// tab | Pydantic v1
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 14:17:24 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/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) -
guava/src/com/google/common/cache/Cache.java
* Returns the value associated with {@code key} in this cache, obtaining that value from {@code * loader} if necessary. The method improves upon the conventional "if cached, return; otherwise * create, cache and return" pattern. For further improvements, use {@link LoadingCache} and its * {@link LoadingCache#get(Object) get(K)} method instead of this one. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CloseRequestTest.java
Smb2CloseRequest onesRequest = new Smb2CloseRequest(mockConfig, onesFileId, testFileName); testFileIdInRequest(onesRequest, onesFileId); // Test with alternating pattern byte[] alternatingFileId = new byte[16]; for (int i = 0; i < 16; i++) { alternatingFileId[i] = (byte) (i % 2 == 0 ? 0xAA : 0x55); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingCreator.java
public class CharMappingCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(CharMappingCreator.class); /** * Constructs a new CharMappingCreator with the mapping file pattern. */ public CharMappingCreator() { super("mapping.*\\.txt"); } /** * Registers this creator with the dictionary manager after construction. */ @PostConstruct
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
native-image-tests/src/test/resources/META-INF/native-image/okhttp/nit/resource-config.json
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Dec 21 08:56:29 UTC 2024 - 78 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java
.put(BigInteger.class, BigInteger.ZERO) .put(BigDecimal.class, BigDecimal.ZERO) .put(CharSequence.class, "") .put(String.class, "") .put(Pattern.class, Pattern.compile("")) .put(MatchResult.class, createMatchResult()) .put(TimeUnit.class, SECONDS) .put(Charset.class, UTF_8) .put(Currency.class, Currency.getInstance(Locale.US))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 20.9K bytes - Viewed (0) -
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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
/** Idle connection timeout in milliseconds */ protected long idleConnectionTimeout = 60 * 1000L; // 1min /** Pattern for matching HTTP redirect status codes */ protected Pattern redirectHttpStatusPattern = Pattern.compile("[3][0-9][0-9]"); /** Whether to use robots.txt disallow rules */ protected boolean useRobotsTxtDisallows = true;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
/** * Map of origin patterns to their corresponding CORS handlers. */ 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 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0)