Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for getRemote (0.15 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. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

                        return NoOpBuildCacheController.INSTANCE;
                    }
    
                    DirectoryBuildCache local = buildCacheConfiguration.getLocal();
                    BuildCache remote = buildCacheConfiguration.getRemote();
    
                    boolean localEnabled = local.isEnabled();
                    boolean remoteEnabled = remote != null && remote.isEnabled();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/wasm/convert.go

    		return nil, nil, nil, nil
    	}
    
    	// At this point, we should have wasmNetworkFilterConfig or wasmHTTPFilterConfig should be unmarshalled.
    	if wasmNetwork {
    		if wasmNetworkFilterConfig.Config.GetVmConfig().GetCode().GetRemote() == nil {
    			if wasmNetworkFilterConfig.Config.GetVmConfig().GetCode().GetLocal() == nil {
    				return nil, nil, nil, fmt.Errorf("no remote and local load found in Wasm Network filter %+v", wasmNetworkFilterConfig)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/DefaultBuildCacheController.java

            Interner<String> stringInterner
        ) {
            this.local = toLocalHandle(config.getLocal(), config.isLocalPush(), buildOperationRunner);
            this.remote = toRemoteHandle(config.getBuildPath(), config.getRemote(), config.isRemotePush(), buildOperationRunner, buildOperationProgressEventEmitter, logStackTraces, disableRemoteOnError);
            this.tmp = toTempFileStore(config.getLocal(), temporaryFileFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top