Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 892 for url (0.01 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java

        public void test_getClient_null() {
            String url;
            CrawlerClient client;
    
            url = null;
            client = clientFactory.getClient(url);
            assertNull(client);
    
            url = "";
            client = clientFactory.getClient(url);
            assertNull(client);
    
            url = " ";
            client = clientFactory.getClient(url);
            assertNull(client);
        }
    Registered: 2024-11-10 03:50
    - Last Modified: 2024-02-22 01:36
    - 5.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            result = "http://www.foo.com";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://www.foo.com/";
            result = "http://www.foo.com/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
            url = "http://www.foo.com:8080/";
            result = "http://www.foo.com:8080/";
            assertEquals(result, duplicateHostHelper.convert(url));
    
    Registered: 2024-10-31 13:40
    - Last Modified: 2024-02-22 01:37
    - 3.3K bytes
    - Viewed (0)
  9. compat/maven-builder-support/src/main/java/org/apache/maven/building/UrlSource.java

            this.url = Objects.requireNonNull(url, "url cannot be null");
            this.hashCode = Objects.hashCode(url);
        }
    
        @Override
        public InputStream getInputStream() throws IOException {
            return url.openStream();
        }
    
        @Override
        public String getLocation() {
            return url.toString();
        }
    
        /**
         * Gets the URL of this source.
         *
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.3K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/UrlConvertHelperTest.java

            assertEquals("http://hoge.com/peke.html", urlConvertHelper.convert(url));
        }
    
        public void test_convert_null() {
            String url;
    
            url = null;
            assertNull(urlConvertHelper.convert(url));
    
            url = "";
            assertEquals("", urlConvertHelper.convert(url));
    
            url = " ";
            assertEquals(" ", urlConvertHelper.convert(url));
    
        }
    Registered: 2024-11-10 03:50
    - Last Modified: 2024-02-22 01:36
    - 2.4K bytes
    - Viewed (0)
Back to top