Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 684 for traits (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/common/values.go

    */
    
    package common
    
    import (
    	"fmt"
    	"reflect"
    	"sync"
    	"time"
    
    	"github.com/google/cel-go/common/types"
    	"github.com/google/cel-go/common/types/ref"
    	"github.com/google/cel-go/common/types/traits"
    
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    
    	"k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apiserver/pkg/cel"
    )
    
    // UnstructuredToVal converts a Kubernetes unstructured data element to a CEL Val.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:30:17 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/gpu_ops.td

      let name = "gpurt";
    
      let description = [{
        The TFRT GPU Dialect.
      }];
    
      let cppNamespace = "::tfrt::gpu";
    }
    
    class Gpu_Op<string mnemonic, list<Trait> traits = []> :
        Op<TFRT_GPU_Dialect, mnemonic, traits> {
    }
    
    // TODO(b/260267885): We may add a device argument when we want to support
    // GPU MIG.
    def TransferToDeviceOp: Gpu_Op<"transfer_to_device"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/AbstractTestingMultiVersionIntegrationTest.groovy

        /**
         * Test framework specific configuration for the build script.
         *
         * These values will be provided by test framework traits that can be attached to any test class.  As such, we use an interface
         * to ensure type safety and avoid decoupling of these methods in the trait classes.  The trait classes simply have to provide
         * an implementation of this interface specific to the test framework.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // TensorFlow op definitions
    //===----------------------------------------------------------------------===//
    
    class TF_Op<string mnemonic, list<Trait> traits = []> :
        Op<TensorFlowDialect, mnemonic, traits>;
    
    //===----------------------------------------------------------------------===//
    // TensorFlow attribute definitions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/composition.go

    		return apiservercel.StringType
    	case cel.TimestampType:
    		return apiservercel.TimestampType
    	case cel.UintType:
    		return apiservercel.UintType
    	default:
    		if celType.HasTrait(traits.ContainerType) && celType.HasTrait(traits.IndexerType) {
    			parameters := celType.Parameters()
    			switch len(parameters) {
    			case 1:
    				elemType := convertCelTypeToDeclType(parameters[0])
    				return apiservercel.NewListType(elemType, -1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_ops.td

    #else
    #define MLRT_OPS
    
    include "mlir/Interfaces/SideEffectInterfaces.td"
    include "tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.td"
    
    class Mlrt_Op<string mnemonic, list<Trait> traits = []> :
        Op<Mlrt_Dialect, mnemonic, !listconcat(traits, [IsolatedFromAbove])> {
    }
    
    def CondOp: Mlrt_Op<"cond", []> {
      let summary = "mlrt.cond op";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 22:07:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_ops.td

    //===----------------------------------------------------------------------===//
    
    // Base class for the operation in this dialect.
    class RuntimeFallbackDialect_Op<string mnemonic, list<Trait> traits = []> :
        Op<RuntimeFallback_Dialect, mnemonic, traits> { }
    
    def InitEagerContextOp : RuntimeFallbackDialect_Op<"init_eager_context"> {
      let summary = "eager context initialization operation";
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_sync.h

    #include "mlir/IR/OpImplementation.h"  // from @llvm-project
    #include "mlir/Interfaces/InferTypeOpInterface.h"  // from @llvm-project
    #include "mlir/Interfaces/SideEffectInterfaces.h"  // from @llvm-project
    #include "tfrt/core_runtime/opdefs/traits.h"  // from @tf_runtime
    #include "tfrt/tensor/opdefs/tensor.h"  // from @tf_runtime
    
    using namespace mlir;  // NOLINT
    
    namespace tfrt {
    namespace fallback_sync {
    
    // Dialect for fallback operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 19 21:12:59 UTC 2022
    - 1.8K 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
    	fields  map[string]ref.Val
    }
    
    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. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.h

    #define TENSORFLOW_COMPILER_MLIR_QUANTIZATION_TENSORFLOW_OPS_TF_QUANTIZE_OP_H_
    
    #include <optional>
    
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir {
    namespace quant {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 07:44:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top