- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for typeString (0.06 sec)
-
src/cmd/api/main_test.go
typ := f.Type() if f.Anonymous() { if w.isDeprecated(f) { w.emitf("embedded %s //deprecated", w.typeString(typ)) } w.emitf("embedded %s", w.typeString(typ)) continue } if w.isDeprecated(f) { w.emitf("%s //deprecated", f.Name()) } w.emitf("%s %s", f.Name(), w.typeString(typ)) } } func (w *Walker) emitIfaceType(name string, typ *types.Interface) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 04 18:16:59 UTC 2024 - 31.4K bytes - Viewed (0) -
tensorflow/c/eager/dlpack.cc
tensorflow::TensorHandleFromInterface(tensorflow::unwrap(h)); if (handle->Type() != TensorHandle::LOCAL) { status->status = tensorflow::errors::InvalidArgument( "DLPack doesn't support ", handle->TypeString(), " tensor"); return nullptr; } const tensorflow::Tensor* tensor; status->status = handle->Tensor(&tensor); if (!status->status.ok()) { return nullptr; } return tensor; }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 12.9K bytes - Viewed (0) -
tensorflow/c/eager/c_api.cc
if (handle->Type() != tensorflow::TensorHandle::LOCAL) { status->status = tensorflow::errors::InvalidArgument( "TFE_TensorHandleDevicePointer may not be called on a ", handle->TypeString(), " tensor handle."); return nullptr; } tensorflow::Device* device(handle->device()); if (device != nullptr) { status->status = device->Sync(); if (!status->status.ok()) {
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 43.9K bytes - Viewed (0) -
api/go1.5.txt
pkg go/types, func ObjectString(Object, Qualifier) string pkg go/types, func RelativeTo(*Package) Qualifier pkg go/types, func SelectionString(*Selection, Qualifier) string pkg go/types, func TypeString(Type, Qualifier) string pkg go/types, func WriteExpr(*bytes.Buffer, ast.Expr) pkg go/types, func WriteSignature(*bytes.Buffer, *Signature, Qualifier) pkg go/types, func WriteType(*bytes.Buffer, Type, Qualifier)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 30 21:14:09 UTC 2015 - 46.6K bytes - Viewed (0)