Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for HYBRID (0.11 sec)

  1. pilot/pkg/features/pilot.go

    		v := env.Register(
    			"PILOT_JWT_ENABLE_REMOTE_JWKS",
    			"false",
    			"Mode of fetching JWKs from JwksUri in RequestAuthentication. Supported value: "+
    				"istiod, false, hybrid, true, envoy. The client fetching JWKs is as following: "+
    				"istiod/false - Istiod; hybrid/true - Envoy and fallback to Istiod if JWKs server is external; "+
    				"envoy - Envoy.",
    		).Get()
    		return jwt.ConvertToJwksFetchMode(v)
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/policy_applier_test.go

    			name: "JWT policy with Mesh cluster as issuer and remote jwks mode Hybrid",
    			in: []*config.Config{
    				{
    					Spec: &v1beta1.RequestAuthentication{
    						JwtRules: []*v1beta1.JWTRule{
    							{
    								Issuer:  "mesh cluster",
    								JwksUri: "http://jwt-token-issuer.mesh:7443/jwks",
    							},
    						},
    					},
    				},
    			},
    			jwksFetchMode: jwt.Hybrid,
    			expected: &hcm.HttpFilter{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 60.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

                }
    
                apply plugin: "java"
            """
    
            then:
            succeeds "help"
        }
    
        def "plugin manager with id is fired after the plugin is applied for hybrid plugins"() {
            when:
            file("buildSrc/src/main/groovy/MyPlugin.groovy") << """
                import org.gradle.api.Plugin
                import org.gradle.api.Task
                import org.gradle.model.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/convert_tf_quant_to_mhlo_int_test.cc

          double error_tolerance = 0.1) {
        // Expected result is calculated by evaluating using TF kernels. In some
        // cases, TF kernel behaves differently from lowered graph (e.g. Hybrid
        // ops). So we optionally use a different graph to calculate the expected
        // result.
        TF_ASSERT_OK_AND_ASSIGN(
            auto expected,
            this->EvaluateTfFunction(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 01:03:21 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  5. src/internal/bytealg/equal_ppc64x.s

    	BLE	check0_16
    	MOVD	$0, R3		// Assume no-match in case BGELR CR6 returns
    	CMP	R5, $32		// Use overlapping VSX loads for len <= 32
    	BLE	check17_32	// Do a pair of overlapping VSR compares
    	CMP	R5, $64
    	BLE	check33_64	// Hybrid check + overlap compare.
    
    setup64:
    	SRD	$6, R5, R6	// number of 64 byte chunks to compare
    	MOVD	R6, CTR
    	MOVD	$16, R14	// index for VSX loads and stores
    	MOVD	$32, R15
    	MOVD	$48, R16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_weight_param.cc

      using impl::InsertWeightParamPassBase<
          InsertWeightParamPass>::InsertWeightParamPassBase;
    
     private:
      void runOnOperation() override;
    };
    
    // Inserts quantization parameters for weights for hybrid quantization of
    // `stablehlo.convolution` and `stablehlo.dot_general`.
    class InsertWeightParamPattern
        : public OpTraitRewritePattern<OpTrait::ConstantLike> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/passes.td

      ];
    }
    def DecomposeHybridQuantizationPass : Pass<"tfl-decompose-hybrid-quantization", "mlir::func::FuncOp"> {
      let summary = "Decomposes hybridge quantization to explicit quantize / dequantize";
      let description = [{
          Decomposes (with explicit quantize/dequantize ops) selected math
          operations which exist in the model with hybrid quantization
          (some arguments/results left in floating point).
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the TensorFlow Lite dialect QuantizeVariables pass.
    std::unique_ptr<OperationPass<ModuleOp>> CreatePrepareQuantizeVariablesPass();
    
    // Creates an instance of the TensorFlow Lite pass that decomposes hybrid
    // quantization patterns to the same dense operation with tfl dequantization
    // and quantization patterns.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateDecomposeHybridQuantizationPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/conversion.go

    		expectedPort = port
    	}
    	return fmt.Sprint(l.Port) == expectedPort
    }
    
    func hasListenerMode(l v1beta1.Listener, mode string) bool {
    	// TODO if we add a hybrid mode for detecting HBONE/passthrough, also check that here
    	return l.TLS != nil && l.TLS.Options != nil && string(l.TLS.Options[constants.ListenerModeOption]) == mode
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. src/crypto/tls/key_agreement.go

    func sha1Hash(slices [][]byte) []byte {
    	hsha1 := sha1.New()
    	for _, slice := range slices {
    		hsha1.Write(slice)
    	}
    	return hsha1.Sum(nil)
    }
    
    // md5SHA1Hash implements TLS 1.0's hybrid hash function which consists of the
    // concatenation of an MD5 and SHA1 hash.
    func md5SHA1Hash(slices [][]byte) []byte {
    	md5sha1 := make([]byte, md5.Size+sha1.Size)
    	hmd5 := md5.New()
    	for _, slice := range slices {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top