Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for resourceSet (0.08 sec)

  1. pkg/controlplane/instance_test.go

    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	autoscalingrest "k8s.io/kubernetes/pkg/registry/autoscaling/rest"
    	resourcerest "k8s.io/kubernetes/pkg/registry/resource/rest"
    
    	autoscalingapiv2beta1 "k8s.io/api/autoscaling/v2beta1"
    	autoscalingapiv2beta2 "k8s.io/api/autoscaling/v2beta2"
    	batchapiv1beta1 "k8s.io/api/batch/v1beta1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_Quint16Ref : TF_TensorFlowType<"Quint16Ref", "quint16ref">;
    
    // Other reference types
    def TF_BoolRef : TF_TensorFlowType<"BoolRef", "boolref">;
    def TF_ResourceRef : TF_TensorFlowType<"ResourceRef", "resourceref">;
    def TF_StrRef : TF_TensorFlowType<"StringRef", "stringref">;
    def TF_VariantRef : TF_TensorFlowType<"VariantRef", "variantref">;
    
    //===----------------------------------------------------------------------===//
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    void RegionResourceHoister::GenerateHoistedReads() {
      OpBuilder builder(op_);
      DictionaryAttr empty_attrs = builder.getDictionaryAttr({});
      for (auto& resource_it : GetResources()) {
        Value resource = resource_it.first;
        auto& info = resource_it.second;
    
        if (info.is_read) {
          Operation* read = builder.create<TF::ReadVariableOp>(
              op_->getLoc(), info.data_type, resource);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top