Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,207 for Types (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.td

                               "quant::QuantizationDialect"];
    }
    
    def ConvertTFQuantTypes : Pass<"convert-tf-quant-types", "mlir::func::FuncOp"> {
      let summary = "Replace TensorFlow qint types with int types.";
    
      let description = [{
        Converts TF ops with qint types to int types. Some UniformQuantized ops
        argument/result allow qint type only. For such cases, add qint <-> int
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. docs/compression/README.md

    Config `compress` settings take extensions and mime-types to be compressed.
    
    ```bash
    ~ mc admin config get myminio compression
    compression extensions=".txt,.log,.csv,.json,.tar,.xml,.bin" mime_types="text/*,application/json,application/xml"
    ```
    
    Default config includes most common highly compressible content extensions and mime-types.
    
    ```bash
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/testinggoroutine.go

    func forbiddenMethod(info *types.Info, call *ast.CallExpr) (*types.Var, *types.Selection, *types.Func) {
    	// Compare to typeutil.StaticCallee.
    	fun := astutil.Unparen(call.Fun)
    	selExpr, ok := fun.(*ast.SelectorExpr)
    	if !ok {
    		return nil, nil, nil
    	}
    	sel := info.Selections[selExpr]
    	if sel == nil {
    		return nil, nil, nil
    	}
    
    	var x *types.Var
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/store.go

    	return s.instancesBySE[key]
    }
    
    func (s *serviceInstancesStore) updateServiceEntryInstances(key types.NamespacedName, instances map[configKey][]*model.ServiceInstance) {
    	s.instancesBySE[key] = instances
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/quantity.go

    	switch typeVal {
    	case quantityTypeValue:
    		return d
    	case types.TypeType:
    		return quantityTypeValue
    	default:
    		return types.NewErr("type conversion error from '%s' to '%s'", quantityTypeValue, typeVal)
    	}
    }
    
    func (d Quantity) Equal(other ref.Val) ref.Val {
    	otherDur, ok := other.(Quantity)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(other)
    	}
    	return types.Bool(d.Quantity.Equal(*otherDur.Quantity))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:23:54 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/set_tpu_infeed_layout.cc

        }
        ArrayRef<Attribute> shape(v);
        return rewriter.getArrayAttr(shape);
      } else if (mlir::isa<TupleType>(types[0])) {
        auto tuple_type = mlir::dyn_cast<TupleType>(types[0]);
        const auto &types = tuple_type.getTypes();
        llvm::SmallVector<mlir::Attribute> v;
        v.reserve(types.size());
        for (const mlir::Type &t : types) {
          if (mlir::isa<mhlo::TokenType>(t)) continue;
          auto layout = GetTPUInfeedLayout({t}, rewriter);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirTypeErrorType.kt

    import org.jetbrains.kotlin.analysis.api.types.KaErrorType
    import org.jetbrains.kotlin.analysis.api.types.KaTypeNullability
    import org.jetbrains.kotlin.analysis.api.types.KaUsualClassType
    import org.jetbrains.kotlin.fir.diagnostics.ConeCannotInferTypeParameterType
    import org.jetbrains.kotlin.fir.diagnostics.ConeTypeVariableTypeIsNotInferred
    import org.jetbrains.kotlin.fir.types.ConeErrorType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/toonew.go

    package typesinternal
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/stdlib"
    	"golang.org/x/tools/internal/versions"
    )
    
    // TooNewStdSymbols computes the set of package-level symbols
    // exported by pkg that are not available at the specified version.
    // The result maps each symbol to its minimum version.
    //
    // The pkg is allowed to contain type errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/mutation/common/val.go

    limitations under the License.
    */
    
    package common
    
    import (
    	"fmt"
    	"reflect"
    
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    	"github.com/google/cel-go/common/types/traits"
    )
    
    // ObjectVal is the CEL Val for an object that is constructed via the object
    // construction syntax.
    type ObjectVal struct {
    	typeRef TypeRef
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 21:55:08 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirUsualClassType.kt

    import org.jetbrains.kotlin.analysis.api.types.KaTypeNullability
    import org.jetbrains.kotlin.analysis.api.types.KaTypeProjection
    import org.jetbrains.kotlin.analysis.api.types.KaUsualClassType
    import org.jetbrains.kotlin.analysis.low.level.api.fir.util.errorWithFirSpecificEntries
    import org.jetbrains.kotlin.fir.types.impl.ConeClassLikeTypeImpl
    import org.jetbrains.kotlin.fir.types.renderForDebugging
    import org.jetbrains.kotlin.name.ClassId
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top