Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for applyTo (0.17 sec)

  1. tests/integration/pilot/common/routing.go

                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: MERGE
          value:
            request_headers_to_add:
            - header:
                key: x-vhost-outbound
                value: "hello world"
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
          cluster: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			[]*networking.EnvoyFilter{{
    				ConfigPatches: []*networking.EnvoyFilter_EnvoyConfigObjectPatch{{
    					ApplyTo: networking.EnvoyFilter_CLUSTER,
    					Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    						Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    					},
    					Patch: &networking.EnvoyFilter_Patch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    directory. Istio has strong integration with certmanager. Some operators may want to keep their current certmanager CRDs in place and not have Istio modify them. In this case, it is necessary to apply CRD files individually. ```bash kubectl apply -k github.com/istio/installer/base ``` or ```bash kubectl apply -f base/files ``` ### Install Istio-CNI This is an optional step - CNI must run in a dedicated namespace, it is a 'singleton' and extremely security sensitive. Access to the CNI namespace must...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
    
        @Override
        public O apply(I input) {
          applyCount++;
          return delegate.apply(input);
        }
    
        void verifyCallCount(int expected) {
          assertThat(applyCount).isEqualTo(expected);
        }
      }
    
      private static <X extends Throwable, V> Function<X, V> unexpectedFunction() {
        return new Function<X, V>() {
          @Override
          public V apply(X t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        }
    
        @Override
        public O apply(I input) {
          applyCount++;
          return delegate.apply(input);
        }
    
        void verifyCallCount(int expected) {
          assertThat(applyCount).isEqualTo(expected);
        }
      }
    
      private static <X extends Throwable, V> Function<X, V> unexpectedFunction() {
        return new Function<X, V>() {
          @Override
          public V apply(X t) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

        checkNotNull(function);
        return new AsyncClosingFunction<V, U>() {
          @Override
          public ClosingFuture<U> apply(DeferredCloser closer, V input) throws Exception {
            return ClosingFuture.from(function.apply(input));
          }
        };
      }
    
      /**
       * Returns a new {@code ClosingFuture} pipeline step derived from this one by applying a function
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Maps.java

        KEY {
          @Override
          @CheckForNull
          public Object apply(Entry<?, ?> entry) {
            return entry.getKey();
          }
        },
        VALUE {
          @Override
          @CheckForNull
          public Object apply(Entry<?, ?> entry) {
            return entry.getValue();
          }
        };
      }
    
      @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            mavenRepo.module("org", "middle").dependsOnModules("leaf1", "leaf2").publish()
            mavenRepo.module("org", "top").dependsOnModules("middle", "leaf2").publish()
    
            buildFile << """
                apply plugin: 'java'
    
                repositories {
                    maven { url "${mavenRepo.uri}" }
                }
                configurations {
                    conf
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ClosingFuture.java

        checkNotNull(function);
        return new AsyncClosingFunction<V, U>() {
          @Override
          public ClosingFuture<U> apply(DeferredCloser closer, V input) throws Exception {
            return ClosingFuture.from(function.apply(input));
          }
        };
      }
    
      /**
       * Returns a new {@code ClosingFuture} pipeline step derived from this one by applying a function
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

        KEY {
          @Override
          @CheckForNull
          public Object apply(Entry<?, ?> entry) {
            return entry.getKey();
          }
        },
        VALUE {
          @Override
          @CheckForNull
          public Object apply(Entry<?, ?> entry) {
            return entry.getValue();
          }
        };
      }
    
      @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top