Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 308 for Proxier (0.12 sec)

  1. samples/addons/README.md

    As an alternative to the standard Prometheus deployment, we provide a `ServiceMonitor` to monitor the Istio control plane and `PodMonitor`
    Envoy proxies. To use these, make sure you have the Prometheus operator deployed, then run `kubectl apply -f samples/addons/extras/prometheus-operator.yaml`.
    
    > **Note**
    >
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

        }
    
        private void configureProxyAuthentication() {
            if (systemProperties.get("http.proxyUser") != null || systemProperties.get("https.proxyUser") != null) {
                // Only an authenticator for proxies needs to be set. Basic authentication is supported by directly setting the request header field.
                Authenticator.setDefault(new ProxyAuthenticator(systemProperties));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/proxy.go

    //
    // If GOPROXY is set to "off", TryProxies invokes f once with the argument
    // "off".
    func TryProxies(f func(proxy string) error) error {
    	proxies, err := proxyList()
    	if err != nil {
    		return err
    	}
    	if len(proxies) == 0 {
    		panic("GOPROXY list is empty")
    	}
    
    	// We try to report the most helpful error to the user. "direct" and "noproxy"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. pkg/proxy/proxyinfo.go

    	"istio.io/istio/pkg/kube"
    	istioVersion "istio.io/istio/pkg/version"
    )
    
    type sidecarSyncStatus struct {
    	// nolint: structcheck, unused
    	pilot string
    	xds.SyncStatus
    }
    
    // GetProxyInfo retrieves infos of proxies that connect to the Istio control plane of specific revision.
    func GetProxyInfo(kubeClient kube.CLIClient, istioNamespace string) (*[]istioVersion.ProxyInfo, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 22:41:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-settings/src/site/apt/index.apt

      * {{{https://maven.apache.org/guides/mini/guide-encryption.html} Password Encryption}},
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pilot/pkg/features/ambient.go

    		"If enabled, HBONE will be allowed when sending to destinations.")
    
    	EnableSidecarHBONEListening = registerAmbient(
    		"PILOT_ENABLE_SIDECAR_LISTENING_HBONE",
    		true, false,
    		"If enabled, HBONE support can be configured for proxies.")
    
    	// Not required for ambient, so disabled by default
    	PreferHBONESend = registerAmbient(
    		"PILOT_PREFER_SENDING_HBONE",
    		false, false,
    		"If enabled, HBONE will be preferred when sending to destinations. ")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectionUser.kt

      fun doExtensiveHealthChecks(): Boolean
    
      fun isCanceled(): Boolean
    
      fun candidateConnection(): RealConnection?
    
      fun proxySelectStart(url: HttpUrl)
    
      fun proxySelectEnd(
        url: HttpUrl,
        proxies: List<Proxy>,
      )
    
      fun dnsStart(socketHost: String)
    
      fun dnsEnd(
        socketHost: String,
        result: List<InetAddress>,
      )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. maven-settings-builder/src/test/java/org/apache/maven/settings/validation/DefaultSettingsValidatorTest.java

            validator.validate(settings, problems);
            assertEquals(1, problems.messages.size());
            assertContains(
                    problems.messages.get(0),
                    "'proxies.proxy.id' must be unique" + " but found duplicate proxy with id " + id);
        }
    
        @Test
        void testValidateProxy() throws Exception {
            Settings settings = new Settings();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/bug_report.yml

          placeholder: |
            $ istioctl version
            client version: 1.0.0
            control plane version: 1.0.0
            data plane version: 1.0.0 (100 proxies)
            $ kubectl version
            Client Version: v1.0.0
            Kustomize Version: v1.0.0
            Server Version: v1.0.0
          render: Text
        validations:
          required: true
      - type: textarea
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 15:17:29 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/SettingsDecryptionResult.java

         *
         * @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();
    
        /**
         * Gets the problems that were encountered during the settings decryption.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top