Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,824 for proxier (0.12 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

          return proxiesOrNull.toImmutableList()
        }
    
        connectionUser.proxySelectStart(url)
        proxies = selectProxies()
        nextProxyIndex = 0
        connectionUser.proxySelectEnd(url, proxies)
      }
    
      /** Returns true if there's another proxy to try. */
      private fun hasNextProxy(): Boolean = nextProxyIndex < proxies.size
    
      /** Returns the next proxy to try. May be PROXY.NO_PROXY but never null. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  2. releasenotes/notes/fips.yaml

      curves to `P-256`. These restrictions apply on the following data paths:
    
      * mTLS communication between Envoy proxies;
      * regular TLS on the downstream and the upstream of Envoy proxies (e.g. gateway);
      * Google gRPC side requests from Envoy proxies (e.g. Stackdriver extensions);
      * Istiod xDS server;
      * Istiod injection and validation webhook servers.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/FakeProxySelector.kt

    class FakeProxySelector : ProxySelector() {
      val proxies: MutableList<Proxy> = mutableListOf()
    
      fun addProxy(proxy: Proxy): FakeProxySelector {
        proxies.add(proxy)
        return this
      }
    
      override fun select(uri: URI): List<Proxy> {
        // Don't handle 'socket' schemes, which the RI's Socket class may request (for SOCKS).
        return if (uri.scheme == "http" || uri.scheme == "https") proxies else listOf(Proxy.NO_PROXY)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/peerproxy/metrics/metrics.go

    var (
    	// peerProxiedRequestsTotal counts the number of requests that were proxied to a peer kube-apiserver.
    	peerProxiedRequestsTotal = metrics.NewCounterVec(
    		&metrics.CounterOpts{
    			Subsystem:      subsystem,
    			Name:           "rerouted_request_total",
    			Help:           "Total number of requests that were proxied to a peer kube apiserver because the local apiserver was not capable of serving it",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/CircularEvaluationSpec.groovy

         *
         * @param <T> the provider value type
         */
        static abstract class CircularChainEvaluationSpec<T> extends CircularEvaluationSpec<T> {
            /**
             * Returns a provider-under-test that uses baseProvider for its computation
             * @param baseProvider the provider to wrap
             * @return the provider-under-test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:32 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. pilot/pkg/status/distribution/state_test.go

    	Conditions: []*v1alpha1.IstioCondition{
    		{
    			Type:    "PassedValidation",
    			Status:  "True",
    			Message: "just a test, here",
    		},
    		{
    			Type:    "Reconciled",
    			Status:  "False",
    			Message: "1/2 proxies up to date.",
    		},
    	},
    	ValidationMessages: nil,
    }
    
    func TestReconcileStatuses(t *testing.T) {
    	type args struct {
    		current *config.Config
    		desired Progress
    	}
    	tests := []struct {
    		name  string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 22 22:47:47 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar.md5

    Guillaume Nodet <******@****.***> 1664700085 +0200
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32 bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/extended-custom-grpc-provider-no-namespace-out1.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 873 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProperty.java

        }
    
        public DefaultProperty<T> provider(Provider<? extends T> provider) {
            set(provider);
            return this;
        }
    
        @Override
        public void set(Provider<? extends T> provider) {
            Preconditions.checkArgument(provider != null, "Cannot set the value of a property using a null provider.");
            ProviderInternal<? extends T> p = Providers.internal(provider);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         * </p>
         *
         * @param provider The provider whose value to use.
         * @return this
         * @since 5.6
         */
        Property<T> value(Provider<? extends T> provider);
    
        /**
         * {@inheritDoc}
         * <p>
         * This is similar to calling {@link #value(Object)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        Property<T> unset();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top