Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 196 for url (0.02 sec)

  1. docs/en/data/github_sponsors.yml

        url: https://github.com/zuplo
      - login: coderabbitai
        avatarUrl: https://avatars.githubusercontent.com/u/132028505?v=4
        url: https://github.com/coderabbitai
      - login: porter-dev
        avatarUrl: https://avatars.githubusercontent.com/u/62078005?v=4
        url: https://github.com/porter-dev
      - login: Nixtla
        avatarUrl: https://avatars.githubusercontent.com/u/79945230?v=4
        url: https://github.com/Nixtla
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-01 11:32
    - 24K 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: 2025-05-30 12:43
    - Last Modified: 2025-05-13 17:27
    - 7.4K bytes
    - Viewed (0)
  3. docs/en/data/translators.yml

      url: https://github.com/ceb10n
    tokusumi:
      login: tokusumi
      count: 23
      avatarUrl: https://avatars.githubusercontent.com/u/41147016?u=55010621aece725aa702270b54fed829b6a1fe60&v=4
      url: https://github.com/tokusumi
    SwftAlpc:
      login: SwftAlpc
      count: 23
      avatarUrl: https://avatars.githubusercontent.com/u/52768429?u=6a3aa15277406520ad37f6236e89466ed44bc5b8&v=4
      url: https://github.com/SwftAlpc
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-01 11:32
    - 18.1K bytes
    - Viewed (0)
  4. docs/en/data/people.yml

      url: https://github.com/tiangolo
    experts:
    - login: tiangolo
      count: 1898
      avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=cb5d06e73a9e1998141b1641aa88e443c6717651&v=4
      url: https://github.com/tiangolo
    - login: github-actions
      count: 770
      avatarUrl: https://avatars.githubusercontent.com/in/15368?v=4
      url: https://github.com/apps/github-actions
    - login: Kludex
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-01 14:42
    - 29.3K bytes
    - Viewed (0)
  5. 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: 124
      avatarUrl: https://avatars.githubusercontent.com/u/66295123?u=be939db90f1119efee9e6110cc05066ff1f40f00&v=4
      url: https://github.com/sodaMelon
    ceb10n:
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-01 11:32
    - 62.3K bytes
    - Viewed (0)
  6. 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);
        }
    
    Registered: 2025-05-24 08:59
    - Last Modified: 2025-05-10 01:44
    - 4.8K bytes
    - Viewed (0)
  7. docs/en/data/contributors.yml

      url: https://github.com/tiangolo
    dependabot:
      login: dependabot
      count: 100
      avatarUrl: https://avatars.githubusercontent.com/in/29110?v=4
      url: https://github.com/apps/dependabot
    alejsdev:
      login: alejsdev
      count: 47
      avatarUrl: https://avatars.githubusercontent.com/u/90076947?u=638c65283ac9e9e2c3a0f9d1e3370db4b8a2c58d&v=4
      url: https://github.com/alejsdev
    pre-commit-ci:
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-01 11:32
    - 19.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/net/URLUtil.java

         *
         * @param url
         *            The URL. Must not be {@literal null}.
         * @return A {@link URLConnection} object to the URL.
         */
        public static URLConnection openConnection(final URL url) {
            assertArgumentNotNull("url", url);
    
            try {
                final URLConnection connection = url.openConnection();
                connection.setUseCaches(false);
    Registered: 2025-05-24 08:58
    - Last Modified: 2025-05-10 01:32
    - 6.8K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

        client
          .newCall(
            Request
              .Builder()
              .url(server.url("/"))
              .build(),
          ).execute()
          .close()
        listener.removeUpToEvent<CallEnd>()
        val call =
          client.newCall(
            Request
              .Builder()
              .url(server.url("/"))
              .build(),
          )
        val response = call.execute()
        response.close()
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 14:58
    - 60.6K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	if ok {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errIAMActionNotAllowed), r.URL)
    		return
    	}
    
    	// This API only supports removal of internal users not service accounts.
    	ok, _, err = globalIAMSys.IsServiceAccount(accessKey)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    	if ok {
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-24 18:14
    - 90.6K bytes
    - Viewed (0)
Back to top