Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for Funnels (0.11 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                    import org.junit.runner.Runner;
                    import org.junit.runners.BlockJUnit4ClassRunner;
                    import org.junit.runners.Suite;
                    import org.junit.runners.model.FrameworkMethod;
                    import org.junit.runners.model.InitializationError;
                    import org.junit.runners.model.Statement;
    
                    import java.util.ArrayList;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilterStrategies.java

        @Override
        public <T extends @Nullable Object> boolean put(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
            LockFreeBitArray bits) {
          long bitSize = bits.bitSize();
          long hash64 = Hashing.murmur3_128().hashObject(object, funnel).asLong();
          int hash1 = (int) hash64;
          int hash2 = (int) (hash64 >>> 32);
    
          boolean bitsChanged = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/networkfilter_test.go

    	tunnelingEnabled := &networking.DestinationRule{
    		Host: "tunnel-proxy.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    			Tunnel: &networking.TrafficPolicy_TunnelSettings{
    				Protocol:   "CONNECT",
    				TargetHost: "example.com",
    				TargetPort: 8443,
    			},
    		},
    	}
    	tunnelingEnabledWithoutProtocol := &networking.DestinationRule{
    		Host: "tunnel-proxy.com",
    		TrafficPolicy: &networking.TrafficPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/BloomFilterStrategies.java

        @Override
        public <T extends @Nullable Object> boolean put(
            @ParametricNullness T object,
            Funnel<? super T> funnel,
            int numHashFunctions,
            LockFreeBitArray bits) {
          long bitSize = bits.bitSize();
          long hash64 = Hashing.murmur3_128().hashObject(object, funnel).asLong();
          int hash1 = (int) hash64;
          int hash2 = (int) (hash64 >>> 32);
    
          boolean bitsChanged = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 10.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/util/util.go

    		mergedPolicy.LoadBalancer = subsetPolicy.LoadBalancer
    	}
    	if subsetPolicy.Tls != nil || hasPortLevel {
    		mergedPolicy.Tls = subsetPolicy.Tls
    	}
    
    	if subsetPolicy.Tunnel != nil {
    		mergedPolicy.Tunnel = subsetPolicy.Tunnel
    	}
    	if subsetPolicy.ProxyProtocol != nil {
    		mergedPolicy.ProxyProtocol = subsetPolicy.ProxyProtocol
    	}
    	return mergedPolicy
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	return tunnelHTTPConnect(t.conn, t.proxyAddress, addr)
    }
    
    var _ proxier = &grpcProxier{}
    
    type grpcProxier struct {
    	tunnel client.Tunnel
    }
    
    func (g *grpcProxier) proxy(ctx context.Context, addr string) (net.Conn, error) {
    	return g.tunnel.DialContext(ctx, "tcp", addr)
    }
    
    type proxyServerConnector interface {
    	// connect establishes connection to the proxy server, and returns a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/HashFunction.java

      /**
       * Shortcut for {@code newHasher().putObject(instance, funnel).hash()}. The implementation
       * <i>might</i> perform better than its longhand equivalent, but should not perform worse.
       *
       * @since 14.0
       */
      <T extends @Nullable Object> HashCode hashObject(
          @ParametricNullness T instance, Funnel<? super T> funnel);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/HashFunction.java

      /**
       * Shortcut for {@code newHasher().putObject(instance, funnel).hash()}. The implementation
       * <i>might</i> perform better than its longhand equivalent, but should not perform worse.
       *
       * @since 14.0
       */
      <T extends @Nullable Object> HashCode hashObject(
          @ParametricNullness T instance, Funnel<? super T> funnel);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/endpoint_builder.go

    	if !mtlsEnabled {
    		meta.TLSMode = ""
    	}
    	util.AppendLbEndpointMetadata(meta, ep.Metadata)
    
    	tunnel := supportTunnel(b, e)
    	if mtlsEnabled && !features.PreferHBONESend {
    		tunnel = false
    	}
    	if b.proxy.Metadata.DisableHBONESend {
    		tunnel = false
    	}
    	if tunnel {
    		address, port := e.Address, int(e.EndpointPort)
    		// We intentionally do not take into account waypoints here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    | `Traceparent` | (Experimental) This maintains tracing information. Note this is tracing of *connections*, and is not correlated to tracing of user's own HTTP requests. However, this is useful to follow a connection across ztunnels.                                 |
    
    ## Traffic routing
    
    Based on the three [redirection](#redirection) paths, the ztunnel has three primary types of traffic it handles.
    
    ### Outbound
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top