Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPkg (0.08 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	if x != nil {
    		return x.Enabled
    	}
    	return nil
    }
    
    func (x *CNIConfig) GetHub() string {
    	if x != nil {
    		return x.Hub
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetTag() *structpb.Value {
    	if x != nil {
    		return x.Tag
    	}
    	return nil
    }
    
    func (x *CNIConfig) GetVariant() string {
    	if x != nil {
    		return x.Variant
    	}
    	return ""
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      // tuple of two values (starting and ending diagonal, for a band).
      LogicalResult ExtractK(TF::MatrixDiagPartV3Op op, int64_t (*k)[2]) const {
        DenseIntElementsAttr kattr;
        if (!matchPattern(op.getK(), m_Constant(&kattr))) {
          return failure();
        }
        DenseIntElementsAttr::iterator it = kattr.begin();
        (*k)[0] = (*it).getSExtValue();
        it++;
        if (it == kattr.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top