Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for config2 (0.33 sec)

  1. pilot/pkg/model/sidecar_test.go

    					Hosts: []string{"*/*"},
    				},
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		},
    	}
    	configs2 = &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs3 = &config.Config{
    		Meta: config.Meta{
    			Name:      "foo",
    			Namespace: "not-default",
    		},
    		Spec: &networking.Sidecar{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    				}
    			},
    		},
    		{
    			configureServer: func(config *Config, called *bool) {
    				config.InsecureSkipVerify = false
    				config.VerifyPeerCertificate = nil
    				config.VerifyConnection = nil
    			},
    			configureClient: func(config *Config, called *bool) {
    				config.InsecureSkipVerify = false
    				config.VerifyPeerCertificate = func(rawCerts [][]byte, validatedChains [][]*x509.Certificate) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceregistry_test.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	xds "istio.io/istio/pilot/test/xds"
    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvk"
    	kubeclient "istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    	istiotest "istio.io/istio/pkg/test"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  4. configure.py

      if 'tensorrt_version' in config:
        print('Found TensorRT %s in:' % config['tensorrt_version'])
        print('    %s' % config['tensorrt_library_dir'])
        print('    %s' % config['tensorrt_include_dir'])
    
      if config.get('nccl_version', None):
        print('Found NCCL %s in:' % config['nccl_version'])
        print('    %s' % config['nccl_library_dir'])
        print('    %s' % config['nccl_include_dir'])
    
      print('\n')
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	// received from a client. It may return a non-nil Config in order to
    	// change the Config that will be used to handle this connection. If
    	// the returned Config is nil, the original Config will be used. The
    	// Config returned by this callback may not be subsequently modified.
    	//
    	// If GetConfigForClient is nil, the Config passed to Server() will be
    	// used for all connections.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. pilot/pkg/model/telemetry_logging_test.go

    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - gateway defined by targetRef",
    			[]config.Config{newTelemetry("default", targetRefClient)},
    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - outbound",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. tensorflow/BUILD

        ],
    )
    
    # Config setting that is satisfied when TensorFlow is being built with CUDA
    # support through e.g. `--config=cuda` (or `--config=cuda_clang` in OSS).
    alias(
        name = "is_cuda_enabled",
        actual = if_oss(
            "@local_config_cuda//:is_cuda_enabled",
            "@local_config_cuda//cuda:using_clang",
        ),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    		nil,
    	},
    	{
    		func(config *Config) {
    			for i := range config.SessionTicketKey {
    				config.SessionTicketKey[i] = byte(i)
    			}
    			config.sessionTicketKeys = nil
    		},
    		func(clientHello *ClientHelloInfo) (*Config, error) {
    			config := testConfig.Clone()
    			for i := range config.SessionTicketKey {
    				config.SessionTicketKey[i] = 0
    			}
    			config.sessionTicketKeys = nil
    			return config, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    							if from.Config().HasProxyCapabilities() && !from.Config().HasAnyWaypointProxy() {
    								if from.Config().HasSidecar() && !opts.To.Config().HasProxyCapabilities() {
    									// Sidecar respects it ISTIO_MUTUAL, will only send mTLS
    									return false
    								}
    								return true
    							}
    							if !from.Config().HasProxyCapabilities() && opts.To.Config().HasAnyWaypointProxy() {
    								// TODO: support hairpin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top