- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,453 for url (0.01 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/url/-Url.kt
* See the License for the specific language governing permissions and * limitations under the License. */ @file:Suppress("ktlint:standard:filename") package okhttp3.internal.url import java.nio.charset.Charset import okhttp3.internal.parseHexDigit import okio.Buffer internal val HEX_DIGITS = charArrayOf('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F')
Registered: 2024-11-01 11:42 - Last Modified: 2024-01-09 12:33 - 7.3K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt
.assertLogMatch(Regex("""cacheConditionalHit: Response\{protocol=h2, code=200, message=, url=$url\}""")) .assertLogMatch(Regex("""cacheHit: Response\{protocol=h2, code=200, message=, url=$url\}""")) .assertLogMatch(Regex("""cacheMiss""")) .assertLogMatch(Regex("""satisfactionFailure: Response\{protocol=h2, code=200, message=, url=$url\}""")) .assertNoMoreLogs() } private fun request(): Request.Builder {
Registered: 2024-11-01 11:42 - Last Modified: 2024-01-14 10:20 - 10.2K bytes - Viewed (0) -
docs/en/data/github_sponsors.yml
url: https://github.com/Kong - login: codacy avatarUrl: https://avatars.githubusercontent.com/u/1834093?v=4 url: https://github.com/codacy - login: scalar avatarUrl: https://avatars.githubusercontent.com/u/301879?v=4 url: https://github.com/scalar - - login: ObliviousAI avatarUrl: https://avatars.githubusercontent.com/u/65656077?v=4 url: https://github.com/ObliviousAI
Registered: 2024-11-03 07:19 - Last Modified: 2024-06-03 01:09 - 27K bytes - Viewed (0) -
guava/src/com/google/common/io/Resources.java
* Returns a {@link ByteSource} that reads from the given URL. * * @since 14.0 */ public static ByteSource asByteSource(URL url) { return new UrlByteSource(url); } /** A byte source that reads from a URL using {@link URL#openStream()}. */ private static final class UrlByteSource extends ByteSource { private final URL url; private UrlByteSource(URL url) { this.url = checkNotNull(url); }
Registered: 2024-11-01 12:43 - Last Modified: 2024-08-02 13:50 - 7.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractorTest.java
url = null; params.put(ExtractData.URL, url); assertNull(pdfExtractor.getPassword(params)); url = "http://test.com/hoge1.pdf"; params.put(ExtractData.URL, url); assertEquals("password", pdfExtractor.getPassword(params)); url = "http://test.com/hoge1.pdf"; params.put(ExtractData.URL, url);
Registered: 2024-11-10 03:50 - Last Modified: 2024-02-22 01:36 - 7.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheTest.kt
.build(), ) val url = server.url("/") assertThat(get(url).body.string()).isEqualTo("A") val request = Request.Builder() .url(url) .method("POST", requestBodyOrNull("POST")) .build() val invalidate = client.newCall(request).execute() assertThat(invalidate.body.string()).isEqualTo("B") assertThat(get(url).body.string()).isEqualTo("C") }
Registered: 2024-11-01 11:42 - Last Modified: 2024-04-10 19:46 - 108.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/FaultTolerantClientTest.java
final String url = "http://test.com/"; final ResponseData response = client.execute(RequestDataBuilder.newRequestData().get().url(url).build()); assertEquals(1, testListener.startCount); assertEquals(1, testListener.requestCount); assertEquals(0, testListener.exceptionCount); assertEquals(1, testListener.endCount); assertEquals(url, testListener.requestUrl);
Registered: 2024-11-10 03:50 - Last Modified: 2024-02-22 01:36 - 15.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformerTest.java
url = "http://hoge/index.html?a=1&b=2"; assertEquals(url, htmlTransformer.normalizeUrl(url)); url = "http://hoge/index.html#hoge"; assertEquals("http://hoge/index.html", htmlTransformer.normalizeUrl(url)); url = "http://hoge/index.html#"; assertEquals("http://hoge/index.html", htmlTransformer.normalizeUrl(url));
Registered: 2024-11-10 03:50 - Last Modified: 2024-02-22 01:36 - 13.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/RequestCommonTest.kt
@Test fun constructorNormal() { val url = "https://example.com/".toHttpUrl() val body = "hello".toRequestBody() val headers = headersOf("User-Agent", "RequestTest") val method = "PUT" val request = Request( url = url, headers = headers, method = method, body = body, ) assertThat(request.url).isEqualTo(url) assertThat(request.headers).isEqualTo(headers)
Registered: 2024-11-01 11:42 - Last Modified: 2024-01-08 01:13 - 10.7K bytes - Viewed (0) -
misc/linkcheck/linkcheck.go
} if crawled[url] { return } crawled[url] = true wg.Add(1) go func() { urlq <- url }() } func addProblem(url, errmsg string) { msg := fmt.Sprintf("Error on %s: %s (from %s)", url, errmsg, linkSources[url]) if *verbose { log.Print(msg) } problems = append(problems, msg) } func crawlLoop() { for url := range urlq { if err := doCrawl(url); err != nil {
Registered: 2024-11-05 11:13 - Last Modified: 2021-10-06 15:53 - 3.9K bytes - Viewed (0)