Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for tls_params (0.43 sec)

  1. istioctl/pkg/describe/testdata/describe/http_config.json

                      "typed_config": {
                        "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.UpstreamTlsContext",
                        "common_tls_context": {
                          "tls_params": {
                            "tls_minimum_protocol_version": "TLSv1_2",
                            "tls_maximum_protocol_version": "TLSv1_3"
                          },
                          "alpn_protocols": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/cluster_patch_test.go

    					"name":"envoy.transport_sockets.tls",
    					"typed_config":{
    						"@type":"type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.UpstreamTlsContext",
    						"common_tls_context":{
    							"tls_params":{
    								"tls_minimum_protocol_version":"TLSv1_3"}}}}}`),
    			},
    		},
    		// Patch custom TLS type
    		{
    			ApplyTo: networking.EnvoyFilter_CLUSTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.DownstreamTlsContext",
                          "common_tls_context": {
                            "tls_params": {
                              "tls_minimum_protocol_version": "TLSv1_3",
                              "tls_maximum_protocol_version": "TLSv1_3"
                            },
                            "alpn_protocols": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                        "typed_config": {
                          "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.DownstreamTlsContext",
                          "common_tls_context": {
                            "tls_params": {
                              "tls_minimum_protocol_version": "TLSv1_3",
                              "tls_maximum_protocol_version": "TLSv1_3"
                            },
                            "alpn_protocols": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  5. istioctl/pkg/authz/testdata/configdump.yaml

              "typed_config": {
               "@type": "type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.DownstreamTlsContext",
               "common_tls_context": {
                "tls_params": {
                 "tls_minimum_protocol_version": "TLSv1_2",
                 "tls_maximum_protocol_version": "TLSv1_3",
                 "cipher_suites": [
                  "ECDHE-ECDSA-AES256-GCM-SHA384",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    						"name":"envoy.transport_sockets.tls",
    						"typed_config":{
    							"@type":"type.googleapis.com/envoy.extensions.transport_sockets.tls.v3.DownstreamTlsContext",
    							"common_tls_context":{
    								"tls_params":{
    									"tls_maximum_protocol_version":"TLSv1_3",
    									"tls_minimum_protocol_version":"TLSv1_2"}}}}}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_FILTER_CHAIN,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. pkg/model/fips.go

    	switch common_features.CompliancePolicy {
    	case "":
    		return
    	case common_features.FIPS_140_2:
    		if ctx.TlsParams == nil {
    			ctx.TlsParams = &tls.TlsParameters{}
    		}
    		ctx.TlsParams.TlsMinimumProtocolVersion = tls.TlsParameters_TLSv1_2
    		ctx.TlsParams.TlsMaximumProtocolVersion = tls.TlsParameters_TLSv1_2
    		// Default (unset) cipher suites field in the FIPS build of Envoy uses only the FIPS ciphers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 22:11:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/core/saved_variable_loading_test.cc

    // 1. does not cause an error
    // 2. preserves dtype and shape.
    TEST_P(SavedVariableLoadingTest, LoadSavedVariableSuccessful) {
      auto& test_params = GetParam();
      DataType dtype = std::get<0>(test_params);
      TensorShape shape(std::get<1>(test_params));
    
      SavedVariable saved_variable;
      saved_variable.set_dtype(dtype);
      shape.AsProto(saved_variable.mutable_shape());
    
      std::unique_ptr<Variable> var;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls_test.go

    				SubjectAltNames: []string{"SAN"},
    				Sni:             "some-sni.com",
    			},
    			result: expectedResult{
    				tlsContext: &tls.UpstreamTlsContext{
    					CommonTlsContext: &tls.CommonTlsContext{
    						TlsParams: &tls.TlsParameters{
    							// if not specified, envoy use TLSv1_2 as default for client.
    							TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    							TlsMinimumProtocolVersion: tls.TlsParameters_TLSv1_2,
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/constant_loading_test.cc

    // preserves values.
    TEST_P(ConstantTest, CreateConstantSuccessful) {
      // Get test parameters
      auto& test_params = GetParam();
      DataType dtype = std::get<0>(test_params);
      TensorShape shape(std::get<1>(test_params));
      bool tensorproto_use_tensor_content = std::get<2>(test_params);
    
      // Construct a Tensor with the given dtype + shape
      Tensor expected(dtype, shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.2K bytes
    - Viewed (0)
Back to top