Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 264 for handle1_ (0.12 sec)

  1. tensorflow/compiler/mlir/lite/transforms/legalize_tensorlist.cc

    // input a tensorlist. These are tf.AddN and tf.ZeroesLike. Since the runtime
    // implementation of a tensorlist are not compatible between tf and tflite
    // we cannot use tflite tensorlist kernels until these cases are handled.
    bool IsNonTensorListVariantOp(Operation* op) {
      return llvm::isa<mlir::TF::ZerosLikeOp>(op) && HasVariantInputOrOutput(op);
    }
    
    }  // namespace
    
    namespace mlir {
    namespace TFL {
    namespace {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. istioctl/pkg/wait/wait.go

    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/util/handlers"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/resource"
    	"istio.io/istio/pkg/slices"
    )
    
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  3. tests/integration/security/egress_gateway_origination_test.go

    		},
    		Check: check.And(
    			check.NoErrorAndStatus(statusCode),
    			check.Each(func(r echoClient.Response) error {
    				if _, f := r.RequestHeaders["Handled-By-Egress-Gateway"]; useGateway && !f {
    					return fmt.Errorf("expected to be handled by gateway. response: %s", r)
    				}
    				return nil
    			})),
    	}
    }
    
    func newTLSGatewayTest(t framework.TestContext) *echotest.T {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server.go

    // filteringContainer delegates all Handle(...) calls to Container.HandleWithFilter(...),
    // so we can ensure restful.FilterFunctions are used for all handlers
    type filteringContainer struct {
    	*restful.Container
    
    	registeredHandlePaths []string
    }
    
    func (a *filteringContainer) Handle(path string, handler http.Handler) {
    	a.HandleWithFilter(path, handler)
    	a.registeredHandlePaths = append(a.registeredHandlePaths, path)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/freeze_variables.mlir

    // -----
    // Test immutable detection propagates across function calls, with returned
    // handle.
    
    module {
      func.func @f() -> tensor<0xf32> {
        %handle = "tf.VarHandleOp"() {container="", shared_name="var1", device = "/job:worker/replica:0/task:1/device:CPU:0"} : () -> tensor<!tf_type.resource<tensor<0xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    	"k8s.io/apiserver/pkg/endpoints/metrics"
    	endpointsrequest "k8s.io/apiserver/pkg/endpoints/request"
    
    	klog "k8s.io/klog/v2"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    		Name:        "envoy.formatter.cel",
    		TypedConfig: protoconv.MessageToAny(&celformatter.Cel{}),
    	}
    )
    
    // configureFromProviderConfigHandled contains the number of providers we handle below.
    // This is to ensure this stays in sync as new handlers are added
    // STOP. DO NOT UPDATE THIS WITHOUT UPDATING telemetryAccessLog.
    const telemetryAccessLogHandled = 14
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pkg/kubelet/container/runtime.go

    		ss = append(ss, c.String())
    	}
    	for _, h := range r.Handlers {
    		sh = append(sh, h.String())
    	}
    	return fmt.Sprintf("Runtime Conditions: %s; Handlers: %s", strings.Join(ss, ", "), strings.Join(sh, ", "))
    }
    
    // RuntimeHandler contains condition information for the runtime handler.
    type RuntimeHandler struct {
    	// Name is the handler name.
    	Name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/hoist_invariant_ops.mlir

    // CHECK: [[handle:%.*]] = "tf.VarHandleOp"() <{container = "", shared_name = "x"}> : () -> tensor<!tf_type.resource<tensor<i32>>>
    // CHECK: "tf._TfrtSetResource"([[handle]])
    // CHECK-SAME: index = [[handle_index:.*]]
    // CHECK: [[handle1:%.*]] = "tf.VarHandleOp"() <{container = "", shared_name = "x"}> : () -> tensor<!tf_type.resource<tensor<i32>>>
    // CHECK: "tf._TfrtSetResource"([[handle1]])
    // CHECK-SAME: index = [[handle1_index:.*]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 01 23:54:14 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api.h

    // "Context" under which operations/functions are executed. It encapsulates
    // things like the available devices, resource manager etc.
    // TFE_Context must outlive all tensor handles created using it. In other
    // words, TFE_DeleteContext() must be called after all tensor handles have
    // been deleted (with TFE_DeleteTensorHandle).
    //
    // TODO(ashankar): Merge with TF_Session?
    typedef struct TFE_Context TFE_Context;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
Back to top