Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 642 for tproxy (0.64 sec)

  1. releasenotes/notes/proxy-headers.yaml

    John Howard <******@****.***> 1692986923 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 18:08:43 UTC 2023
    - 314 bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

                            if (proxy.isActive() && protocol.equalsIgnoreCase(proxy.getProtocol())) {
                                SettingsDecryptionResult result =
                                        settingsDecrypter.decrypt(new DefaultSettingsDecryptionRequest(proxy));
                                proxy = result.getProxy();
    
                                ProxyInfo proxyInfo = new ProxyInfo();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

     */
    public interface Actor extends Dispatch<MethodInvocation>, Stoppable, ThreadSafe {
        /**
         * Creates a proxy which delivers method calls to the target object.
         *
         * @param type the type for the proxy.
         * @return The proxy.
         */
        <T> T getProxy(Class<T> type);
    
        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/govcs.txt

    stderr '^go: github.com/google/go-cmp: unreachable pattern in GOVCS: "github.com:git" after "github.com:hg"$'
    
    # bad GOVCS patterns do not stop commands that do not need to check VCS
    go list
    env GOPROXY=$proxy
    go get rsc.io/quote # ok because used proxy
    env GOPROXY=direct
    
    # svn is disallowed by default
    env GOPRIVATE=
    env GOVCS=
    ! go get rsc.io/nonexist.svn/hello
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionResult.java

        public List<Server> getServers() {
            return servers;
        }
    
        @Override
        public Proxy getProxy() {
            return proxies.isEmpty() ? null : proxies.get(0);
        }
    
        @Override
        public List<Proxy> getProxies() {
            return proxies;
        }
    
        @Override
        public List<SettingsProblem> getProblems() {
            return problems;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

        @Test
        void testValidateUniqueProxyId() throws Exception {
            Settings settings = new Settings();
            Proxy proxy = new Proxy();
            String id = "foo";
            proxy.setId(id);
            proxy.setHost("www.example.com");
            settings.addProxy(proxy);
            settings.addProxy(proxy);
    
            SimpleProblemCollector problems = new SimpleProblemCollector();
            validator.validate(settings, problems);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionResult.java

        /**
         * Gets the decrypted proxy. This is a convenience method to retrieve the first element from {@link #getProxies()}.
         *
         * @return The decrypted proxy or {@code null}.
         */
        Proxy getProxy();
    
        /**
         * Gets the decrypted proxies.
         *
         * @return The decrypted proxy, can be empty but never {@code null}.
         */
        List<Proxy> getProxies();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/JavaSystemPropertiesProxySettings.java

            this.propertyPrefix = propertyPrefix;
            this.defaultPort = defaultPort;
            if (StringUtils.isBlank(proxyHost)) {
                this.proxy = null;
            } else {
                this.proxy = new HttpProxy(proxyHost, initProxyPort(proxyPortString), proxyUser, proxyPassword);
            }
        }
    
        private int initProxyPort(String proxyPortString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/env.go

    func GetProxyEnvVars() []kubeadmapi.EnvVar {
    	envs := []kubeadmapi.EnvVar{}
    	for _, env := range os.Environ() {
    		pos := strings.Index(env, "=")
    		if pos == -1 {
    			// malformed environment variable, skip it.
    			continue
    		}
    		name := env[:pos]
    		value := env[pos+1:]
    		if strings.HasSuffix(strings.ToLower(name), "_proxy") && value != "" {
    			envVar := kubeadmapi.EnvVar{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 09:09:19 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java

        }
    
        public void setAuthentication(Authentication authentication) {
            this.authentication = authentication;
        }
    
        public Proxy getProxy() {
            return proxy;
        }
    
        public void setProxy(Proxy proxy) {
            this.proxy = proxy;
        }
    
        public boolean isUniqueVersion() {
            return true;
        }
    
        public List<ArtifactRepository> getMirroredRepositories() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.3K bytes
    - Viewed (0)
Back to top