- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 239 for regulares (0.48 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
Map<String, Object> result = DataStoreParams.getDataMap(paramMap); assertSame(innerMap, result); } // Test getDataMap with regular Map @Test public void test_getDataMapWithRegularMap() { Map<String, Object> regularMap = new HashMap<>(); regularMap.put("key1", "value1");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
// Set some test properties System.setProperty(Constants.SYSTEM_PROP_PREFIX + "prop1", "value1"); System.setProperty(Constants.SYSTEM_PROP_PREFIX + "prop2", "value2"); System.setProperty("regular.property", "value3"); execJob.testAddFessSystemProperties(cmdList); // Should contain only system properties assertEquals(2, cmdList.size());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Doubles.java
* that pass this regex are valid -- only a performance hit is incurred, not a semantics bug. */ @GwtIncompatible // regular expressions static final java.util.regex.Pattern FLOATING_POINT_PATTERN = fpPattern(); @GwtIncompatible // regular expressions private static java.util.regex.Pattern fpPattern() { /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 27.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
assertEquals("Test Fess", value1); assertEquals(value1, value2); } // Test property that should be consistent @Test public void test_get_propertyFilter() { // Test a regular property that passes through String value = fessConfig.get("domain.title"); assertEquals("Test Fess", value); } // Test null property handling @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/query-params-str-validations.md
## 加入更多驗證 { #add-more-validations } 你也可以加入 `min_length` 參數: {* ../../docs_src/query_params_str_validations/tutorial003_an_py310.py hl[10] *} ## 加入正規表示式 { #add-regular-expressions } 你可以定義參數必須符合的 <dfn title="正規表示式(regex、regexp)是一組用於定義字串搜尋樣式的字元序列。">regular expression</dfn> `pattern`: {* ../../docs_src/query_params_str_validations/tutorial004_an_py310.py hl[11] *} 這個特定的正規表示式樣式會檢查收到的參數值是否: - `^`:以後續的字元開頭,前面不能有其他字元。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.8K bytes - Click Count (0) -
okhttp-tls/README.md
signs the other party's chain. Well-Known Certificate Authorities ---------------------------------- In these examples we've prearranged which root certificates to trust. But for regular HTTPS on the Internet this set of trusted root certificates is usually provided by default by the host platform. Such a set typically includes many root certificates from well-known certificate authorities like
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 9.1K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java
CollectionFeature.RESTRICTS_ELEMENTS, CollectionSize.ANY) .suppressing(suppressForEnumSet()) .createTestSuite(); } /** * Tests regular NavigableSet behavior of synchronizedNavigableSet(treeSet); does not test the * fact that it's synchronized. */ public Test testsForSynchronizedNavigableSet() { return NavigableSetTestSuiteBuilder.using(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Feb 19 21:24:11 GMT 2025 - 19.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java
/** * Adds one or more allowed regular expression warnings * * @param allowedWarningsRegex the regex warning(s) to add */ public void addAllowedWarningRegex(String... allowedWarningsRegex) { transformations.add(new InjectAllowedWarnings(true, Arrays.asList(allowedWarningsRegex))); } /** * Adds one or more allowed regular expression warnings *Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 30 16:30:48 GMT 2021 - 22.3K bytes - Click Count (0) -
cmd/os-readdir_test.go
t.Fatalf("Unable to create a symlink, %s", err) } // Add to entries. entries = append(entries, name1) // Symlinks are preserved for regular files entries = append(entries, name2) } if err := os.MkdirAll(filepath.Join(dir, "mydir"), 0o777); err != nil { t.Fatalf("Unable to create \"mydir\", %s", err) } entries = append(entries, "mydir/")
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue May 27 15:19:03 GMT 2025 - 7.5K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt
* * Other TLS features are still used but provide no security benefits in absence of the above * gaps. For example, an insecure TLS connection is capable of negotiating HTTP/2 with ALPN and * it also has a regular-looking handshake. * * **This feature is not supported on Android API levels less than 24.** Prior releases lacked * a mechanism to trust some hosts and not others. *Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat May 10 11:15:14 GMT 2025 - 8.4K bytes - Click Count (0)