Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HttpBuildCacheCredentials (0.21 sec)

  1. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCacheCredentials.java

    import org.gradle.api.credentials.PasswordCredentials;
    
    import javax.annotation.Nullable;
    
    /**
     * Password credentials for a HTTP build cache backend.
     *
     * @since 3.5
     */
    public class HttpBuildCacheCredentials implements PasswordCredentials {
        private String username;
        private String password;
    
        /**
         * Returns the user name to use when authenticating to the HTTP build cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactory.java

                    });
        }
    
        @VisibleForTesting
        static HttpBuildCacheCredentials extractCredentialsFromUserInfo(URI url) {
            HttpBuildCacheCredentials credentials = new HttpBuildCacheCredentials();
            String userInfo = url.getUserInfo();
            int indexOfSeparator = userInfo.indexOf(':');
            if (indexOfSeparator > -1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

     */
    public abstract class HttpBuildCache extends AbstractBuildCache {
        private final HttpBuildCacheCredentials credentials;
        private URI url;
        private boolean allowUntrustedServer;
        private boolean allowInsecureProtocol;
        private boolean useExpectContinue;
    
        public HttpBuildCache() {
            this.credentials = new HttpBuildCacheCredentials();
        }
    
        /**
         * Returns the URI to the cache.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.caching.http.HttpBuildCacheCredentials.getPassword()> does not have raw return type assignable to org.gradle.api.provider.Property in (HttpBuildCacheCredentials.java:0)
    Method <org.gradle.caching.http.HttpBuildCacheCredentials.getUsername()> does not have raw return type assignable to org.gradle.api.provider.Property in (HttpBuildCacheCredentials.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top