Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getRemote (0.15 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/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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/core/route/route.go

    	}
    	return HeadersOperations{
    		RequestHeadersToAdd:     requestHeadersToAdd,
    		ResponseHeadersToAdd:    responseHeadersToAdd,
    		RequestHeadersToRemove:  dropInternal(req.GetRemove()),
    		ResponseHeadersToRemove: dropInternal(resp.GetRemove()),
    		Authority:               auth,
    	}
    }
    
    // TranslateRouteMatch translates match condition
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    			errs = appendErrors(errs, ValidateHTTPHeaderWithAuthorityOperationName(name))
    			errs = appendErrors(errs, ValidateHTTPHeaderValue(val))
    		}
    		for _, name := range weight.Headers.GetRequest().GetRemove() {
    			errs = appendErrors(errs, ValidateHTTPHeaderOperationName(name))
    		}
    		for name, val := range weight.Headers.GetResponse().GetAdd() {
    			errs = appendErrors(errs, ValidateHTTPHeaderOperationName(name))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top