Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getRemote (0.27 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServicesConfiguration.java

        @Nullable
        public LocalBuildCacheService getLocal() {
            return local;
        }
    
        public boolean isLocalPush() {
            return localPush;
        }
    
        @Nullable
        public BuildCacheService getRemote() {
            return remote;
        }
    
        public boolean isRemotePush() {
            return remotePush;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 08:25:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddresses.java

            }
        }
    
        public List<InetAddress> getLoopback() {
            return loopback;
        }
    
        public List<InetAddress> getRemote() {
            return remote;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

        }
    
        private void loopbackAddresses(List<InetAddress> loopback) {
            addresses.getLoopback() >> loopback
        }
    
        private void remoteAddresses(List<InetAddress> remote) {
            addresses.getRemote() >> remote
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/FinalizeBuildCacheConfigurationBuildOperationType.java

            boolean isLocalEnabled();
    
            boolean isRemoteEnabled();
    
            @Nullable
            BuildCacheDescription getLocal();
    
            @Nullable
            BuildCacheDescription getRemote();
    
            interface BuildCacheDescription {
    
                /**
                 * The class name of the DSL configuration type.
                 *
                 * E.g. {@code org.gradle.caching.local.DirectoryBuildCache}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCacheConfiguration.java

         */
        void local(Action<? super DirectoryBuildCache> configuration);
    
        /**
         * Returns the remote cache configuration.
         */
        @Nullable
        BuildCache getRemote();
    
        /**
         * Configures a remote cache with the given type.
         * <p>
         * If a remote build cache has already been configured with a different type, this method replaces it.
         * </p>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/DefaultBuildCacheConfiguration.java

        public void local(Action<? super DirectoryBuildCache> configuration) {
            configuration.execute(local);
        }
    
        @Nullable
        @Override
        public BuildCache getRemote() {
            return remote;
        }
    
        @Override
        public void setRemote(@Nullable BuildCache remote) {
            this.remote = remote;
        }
    
        @Override
        public <T extends BuildCache> T remote(Class<T> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 20 12:32:48 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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