- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 92 for inrange (0.3 seconds)
-
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
assertToStringWorks( CharMatcher.inRange('a', 'z') .or(CharMatcher.inRange('A', 'Z')) .or(CharMatcher.inRange('0', '9')) .or(CharMatcher.is('_')), "CharMatcher.inRange('\\u0061', '\\u007A')" + ".or(CharMatcher.inRange('\\u0041', '\\u005A'))" + ".or(CharMatcher.inRange('\\u0030', '\\u0039'))" + ".or(CharMatcher.is('\\u005F'))");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 32.4K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlRequestTest.java
public void test_UrlWithCurlyBraces() { // ## Arrange ## // URLs with curly braces (e.g., OpenSearch) should be accepted final CurlRequest request = new CurlRequest(Method.GET, "http://localhost:9200/{index}/_search"); // ## Assert ## assertNotNull(request); } @Test public void test_UrlWithPipe() { // ## Arrange ##
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 24.7K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
return new ByteArrayInputStream(new byte[100]); // dummy payload } } @Test public void test_TmpFileHasBeenDeletedAfterResponseWasClosed() throws Exception { // ## Arrange ## CurlRequest req = new MockCurlRequest(Curl.Method.POST, "http://dummy"); req.threshold(0); // always create tmp file // ## Act ## long before = countTmpFiles();
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 44.1K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
@Test public void testIsInMemory_WithByteArray() { // ## Arrange ## ContentCache cache = new ContentCache("test".getBytes()); // ## Assert ## assertTrue(cache.isInMemory()); } @Test public void testIsInMemory_WithFile() throws IOException { // ## Arrange ## File tmpFile = File.createTempFile("cache-test-", ".tmp");Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 15.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 19.6K bytes - Click Count (0) -
docs/tr/docs/_llm-test.md
//// tab | Test `pip install "foo[bar]"` Code snippet'lerde string literal örnekleri: `"this"`, `'that'`. Code snippet'lerde string literal için zor bir örnek: `f"I like {'oranges' if orange else "apples"}"` Hardcore: `Yesterday, my friend wrote: "If you spell incorrectly correctly, you have spelled it incorrectly". To which I answered: "Correct, but 'incorrectly' is incorrectly not '"incorrectly"'"` ////
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 11.1K bytes - Click Count (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
} // --- getContentAsString() optimization tests --- @Test public void test_GetContentAsString_InMemoryCache() { // ## Arrange ## String content = "Hello, World!"; CurlResponse response = new CurlResponse(); response.setEncoding("UTF-8");Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 09:11:12 GMT 2026 - 17.7K bytes - Click Count (0) -
guava/src/com/google/common/base/Suppliers.java
} } // This is safe because we checked `expirationNanos`. return uncheckedCastNullableTToT(value); } @Override public String toString() { // This is a little strange if the unit the user provided was not NANOS, // but we don't want to store the unit just for toString return "Suppliers.memoizeWithExpiration(" + delegate + ", " + durationNanos + ", NANOS)"; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 31 21:24:28 GMT 2026 - 16.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/RangeTest.java
} public void testEncloses_open() { Range<Integer> range = Range.open(2, 5); assertTrue(range.encloses(range)); assertTrue(range.encloses(Range.open(2, 4))); assertTrue(range.encloses(Range.open(3, 5))); assertTrue(range.encloses(Range.closed(3, 4))); assertFalse(range.encloses(Range.openClosed(2, 5)));
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 24.2K bytes - Click Count (0)