Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tls_params (0.25 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. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // Lower TF to MHLO and insert HLO into the XlaBuilder. xla_params are HLO-level
    // inputs to module_op that have already been added to the XlaBuilder. returns
    // are the returned XlaOps.
    ABSL_DEPRECATED("Use v2/legalize_tf.h::LegalizeMlirToHlo instead.")
    Status BuildHloFromTf(mlir::ModuleOp module_op, xla::XlaBuilder& builder,
                          llvm::ArrayRef<xla::XlaOp> xla_params,
                          std::vector<xla::XlaOp>& returns,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

      xla::XlaBuilder builder("main");
    
      // Create xla_params.
      std::vector<xla::XlaOp> xla_params;
      for (mlir::BlockArgument& arg : block.getArguments()) {
        auto num = arg.getArgNumber();
        xla::Shape shape = xla::TypeToShape(arg.getType());
        xla::XlaOp argop =
            xla::Parameter(&builder, num, shape, absl::StrCat("Arg_", num));
        xla_params.push_back(argop);
      }
    
      std::vector<xla::XlaOp> returns(1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      TF_RETURN_IF_ERROR(
          CompileGraphSetup(module_op, args, &remaining_params, arg_shapes));
      // Passing down only remaining (non-constant) xla_params.
      llvm::SmallVector<xla::XlaOp, 2> remaining_xla_params;
      for (auto i : remaining_params) remaining_xla_params.push_back(xla_params[i]);
      return BuildHloFromTf(module_op, builder, remaining_xla_params, returns,
                            arg_shapes, device_type, custom_legalization_passes);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_tls.go

    	if tlsDefaults == nil {
    		return
    	}
    	if len(tlsDefaults.EcdhCurves) > 0 {
    		tlsContext.CommonTlsContext.TlsParams.EcdhCurves = tlsDefaults.EcdhCurves
    	}
    	if len(tlsDefaults.CipherSuites) > 0 {
    		tlsContext.CommonTlsContext.TlsParams.CipherSuites = tlsDefaults.CipherSuites
    	}
    }
    
    // Set auto_sni if EnableAutoSni feature flag is enabled and if sni field is not explicitly set in DR.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_waypoint.go

    				SanType: tls.SubjectAltNameMatcher_URI,
    				Matcher: matcher,
    			})
    		}
    	}
    	ctx.AlpnProtocols = []string{"h2"}
    	ctx.TlsParams = &tls.TlsParameters{
    		// Ensure TLS 1.3 is used everywhere
    		TlsMaximumProtocolVersion: tls.TlsParameters_TLSv1_3,
    		TlsMinimumProtocolVersion: tls.TlsParameters_TLSv1_3,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top