Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,695 for URL (0.01 seconds)

  1. okhttp/src/commonJvmAndroid/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')
    Created: 2026-04-03 11:42
    - Last Modified: 2025-03-19 19:25
    - 7.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java

            url = "file:///";
            exp = "localhost";
            assertEquals(exp, transformer.getHostOnFile(url));
    
            url = "file://///";
            exp = "localhost";
            assertEquals(exp, transformer.getHostOnFile(url));
    
            url = "file://///example";
            exp = "localhost";
            assertEquals(exp, transformer.getHostOnFile(url));
    
            url = "file:/c:";
            exp = "localhost";
    Created: 2026-03-31 13:07
    - Last Modified: 2026-01-14 14:29
    - 14.4K bytes
    - Click Count (0)
  3. docs/en/data/people.yml

      url: https://github.com/tiangolo
    experts:
    - login: tiangolo
      count: 1922
      avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4
      url: https://github.com/tiangolo
    - login: YuriiMotov
      count: 1156
      avatarUrl: https://avatars.githubusercontent.com/u/109919500?u=bc48be95c429989224786106b027f3c5e40cc354&v=4
      url: https://github.com/YuriiMotov
    Created: 2026-04-05 07:19
    - Last Modified: 2026-04-01 15:47
    - 28.7K bytes
    - Click Count (0)
  4. docs/en/data/translation_reviewers.yml

      url: https://github.com/s111d
    Xewus:
      login: Xewus
      count: 140
      avatarUrl: https://avatars.githubusercontent.com/u/85196001?u=f8e2dc7e5104f109cef944af79050ea8d1b8f914&v=4
      url: https://github.com/Xewus
    sodaMelon:
      login: sodaMelon
      count: 128
      avatarUrl: https://avatars.githubusercontent.com/u/66295123?u=be939db90f1119efee9e6110cc05066ff1f40f00&v=4
      url: https://github.com/sodaMelon
    ceb10n:
    Created: 2026-04-05 07:19
    - Last Modified: 2026-04-01 07:31
    - 66K bytes
    - Click Count (0)
  5. docs/en/data/contributors.yml

      url: https://github.com/tiangolo
    dependabot:
      login: dependabot
      count: 157
      avatarUrl: https://avatars.githubusercontent.com/in/29110?v=4
      url: https://github.com/apps/dependabot
    YuriiMotov:
      login: YuriiMotov
      count: 66
      avatarUrl: https://avatars.githubusercontent.com/u/109919500?u=bc48be95c429989224786106b027f3c5e40cc354&v=4
      url: https://github.com/YuriiMotov
    alejsdev:
    Created: 2026-04-05 07:19
    - Last Modified: 2026-04-01 07:31
    - 20.8K bytes
    - Click Count (0)
  6. src/test/java/jcifs/smb1/smb1/HandlerTest.java

        }
    
        @Test
        @DisplayName("openConnection creates SmbFile for valid URL")
        void testOpenConnectionWithValidUrl() throws IOException {
            // Arrange - Create URL with handler
            URL url = new URL(null, "smb://host/share", handler);
    
            // Act
            URLConnection conn = handler.openConnection(url);
    
            // Assert
            assertNotNull(conn);
            assertTrue(conn instanceof SmbFile);
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 07:14
    - 5.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Test with special characters in URL
            String url = "http://example.com/test?param=value&other=value#fragment";
            String message = "Error with special URL";
            Exception cause = new RuntimeException("Error cause");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause);
    
            assertEquals(url, exception.getUrl());
    Created: 2026-03-31 13:07
    - Last Modified: 2026-01-11 08:43
    - 16.6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/curl/Curl.java

            return new CurlRequest(Method.DELETE, url);
        }
    
        /**
         * Creates a new CurlRequest with the HTTP HEAD method for the specified URL.
         *
         * @param url the URL to which the HEAD request is to be made
         * @return a CurlRequest object configured with the HEAD method and the specified URL
         */
        public static CurlRequest head(final String url) {
            return new CurlRequest(Method.HEAD, url);
        }
    Created: 2026-04-02 15:34
    - Last Modified: 2025-11-20 13:34
    - 5.9K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/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)
    Created: 2026-04-03 11:42
    - Last Modified: 2026-02-03 22:17
    - 11K bytes
    - Click Count (0)
  10. cmd/endpoint_test.go

    		{
    			":1234",
    			[]string{"/d1", "/d2", "/d3", "/d4"},
    			":1234",
    			Endpoints{
    				Endpoint{URL: &url.URL{Path: mustAbs("/d1")}, IsLocal: true},
    				Endpoint{URL: &url.URL{Path: mustAbs("/d2")}, IsLocal: true},
    				Endpoint{URL: &url.URL{Path: mustAbs("/d3")}, IsLocal: true},
    				Endpoint{URL: &url.URL{Path: mustAbs("/d4")}, IsLocal: true},
    			},
    			ErasureSetupType, nil,
    		},
    Created: 2026-04-05 19:28
    - Last Modified: 2025-08-29 02:39
    - 18.9K bytes
    - Click Count (0)
Back to Top