Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for IndexType (0.11 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    // continue parsing.
    var errNeedMore = errors.New("need more data")
    
    type indexType int
    
    const (
    	indexedTrue indexType = iota
    	indexedFalse
    	indexedNever
    )
    
    func (v indexType) indexed() bool   { return v == indexedTrue }
    func (v indexType) sensitive() bool { return v == indexedNever }
    
    // returns errNeedMore if there isn't enough data available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    }
    
    Operation* InsertCast(OpBuilder& b, Location loc, Type dst_type, Value input) {
      Type element_type = getElementTypeOrSelf(dst_type);
      if (mlir::isa<IndexType>(element_type))
        return b.create<tensor::CastOp>(loc, dst_type, input);
      if (isa<TensorFlowDialect, BuiltinDialect>(element_type.getDialect()))
        return b.create<TF::CastOp>(loc, dst_type, input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top