Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getRemote (0.53 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

        private void findCommunicationAddresses() throws UnknownHostException {
            communicationAddresses = new ArrayList<InetAddress>();
            if (inetAddresses.getLoopback().isEmpty()) {
                if (inetAddresses.getRemote().isEmpty()) {
                    InetAddress fallback = InetAddress.getByName(null);
                    logger.debug("No loopback addresses for communication, using fallback {}", fallback);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/BuildCacheConfigurationInternal.java

        /**
         * Replaces local directory build cache.
         */
        void setLocal(DirectoryBuildCache local);
    
        /**
         * Replaces remote build cache.
         */
        void setRemote(@Nullable BuildCache remote);
    
        /**
         * Gets build cache service registrations
         */
        Set<BuildCacheServiceRegistration> getRegistrations();
    
        /**
         * Replaces build cache service registrations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/config/validation/virtualservice.go

    		errs = AppendValidation(errs, ValidateHTTPHeaderWithAuthorityOperationName(name))
    		errs = AppendValidation(errs, ValidateHTTPHeaderValue(val))
    	}
    	for _, name := range http.Headers.GetRequest().GetRemove() {
    		errs = AppendValidation(errs, ValidateHTTPHeaderOperationName(name))
    	}
    	for name, val := range http.Headers.GetResponse().GetAdd() {
    		errs = AppendValidation(errs, ValidateHTTPHeaderOperationName(name))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

            return null;
        }
    
        private Collection<Ref> getRemoteRefs(GitVersionControlSpec gitSpec, boolean tags, boolean heads) {
            try {
                return configureTransport(Git.lsRemoteRepository()).setRemote(normalizeUri(gitSpec.getUrl())).setTags(tags).setHeads(heads).call();
            } catch (URISyntaxException | GitAPIException e) {
                throw wrapGitCommandException("ls-remote", gitSpec.getUrl(), null, e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top