Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for xds_type (0.26 sec)

  1. pilot/pkg/networking/core/listener_test.go

    				Sampling:         0,
    			},
    			out: &hcm.HttpConnectionManager_Tracing{
    				MaxPathTagLength: nil,
    				ClientSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				RandomSampling: &xdstype.Percent{
    					Value: 80.0,
    				},
    				OverallSampling: &xdstype.Percent{
    					Value: 100.0,
    				},
    				CustomTags: customTracingTags(),
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    	return &xdstype.FractionalPercent{
    		Numerator:   uint32(p.Value * 10000),
    		Denominator: xdstype.FractionalPercent_MILLION,
    	}
    }
    
    // translateIntegerToFractionalPercent translates an int32 instance to an
    // envoy.type.FractionalPercent instance.
    func translateIntegerToFractionalPercent(p int32) *xdstype.FractionalPercent {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Location loc = op.getLoc();
        auto x_type = mlir::dyn_cast<RankedTensorType>(op.getX().getType());
        // x input must have static shape.
        if (!x_type || !x_type.hasStaticShape()) {
          return failure();
        }
        Type int_type = x_type.getElementType();  // Could be i32 or i64.
    
        auto result_type = x_type;
        auto start = rewriter.create<ConstOp>(loc, GetScalarOfType(int_type, 0));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top