- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 63 for fdel (0.03 sec)
-
cmd/storage-rest-common.go
storageRESTLength = "length" storageRESTCount = "count" storageRESTBitrotAlgo = "balg" storageRESTBitrotHash = "bhash" storageRESTDiskID = "did" storageRESTForceDelete = "fdel" storageRESTGlob = "glob" storageRESTMetrics = "metrics" storageRESTDriveQuorum = "dquorum" storageRESTOrigVolume = "ovol" storageRESTInclFreeVersions = "incl-fv"
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.9K bytes - Viewed (0) -
tensorflow/c/eager/graph_function.cc
namespace tensorflow { namespace tracing { namespace graph { GraphFunction::GraphFunction(FunctionDef fdef) : AbstractFunction(kGraph), func_record_(new FunctionRecord(std::move(fdef), {}, true)) {} GraphFunction::~GraphFunction() {} absl::Status GraphFunction::GetFunctionDef(const FunctionDef **fdef) { *fdef = &(func_record_->fdef()); return absl::OkStatus(); } } // namespace graph } // namespace tracing
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 1.3K bytes - Viewed (0) -
tensorflow/c/c_api_function.cc
TF_Status* status) { status->status = MessageToBuffer(func->record->fdef(), output_func_def); } TF_Function* TF_FunctionImportFunctionDef(const void* proto, size_t proto_len, TF_Status* status) { tensorflow::FunctionDef fdef; bool success = fdef.ParseFromArray(proto, proto_len); if (!success) { status->status = InvalidArgument(
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Sat Oct 12 16:27:48 UTC 2024 - 13.7K bytes - Viewed (0) -
internal/event/target/redis.go
if err != nil { return err } key := eventData.S3.Bucket.Name + "/" + objectName if eventData.EventName == event.ObjectRemovedDelete { _, err = conn.Do("HDEL", target.args.Key, key) } else { var data []byte if data, err = json.Marshal(struct{ Records []event.Event }{[]event.Event{eventData}}); err != nil { return err }
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 9.1K bytes - Viewed (0) -
tensorflow/api_template_v1.__init__.py
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Wed Oct 02 22:16:02 UTC 2024 - 7.5K bytes - Viewed (0) -
.github/workflows/issue-manager.yml
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Oct 15 10:38:53 UTC 2024 - 1.4K bytes - Viewed (0) -
docs/es/docs/tutorial/path-params.md
Exploraremos varios de estos tipos en los próximos capítulos del tutorial. ## El orden importa Cuando creas *operaciones de path* puedes encontrarte con situaciones en las que tengas un path fijo. Digamos algo como `/users/me` que sea para obtener datos del usuario actual.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.4K bytes - Viewed (0) -
internal/store/queuestore.go
if err := decoder.Decode(&item); err != nil { return nil, err } items = append(items, item) } return } // Del - Deletes an entry from the store. func (store *QueueStore[_]) Del(key Key) error { store.Lock() defer store.Unlock() return store.del(key) } // Len returns the entry count. func (store *QueueStore[_]) Len() int { store.RLock() l := len(store.entries)
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 8.6K bytes - Viewed (0) -
tensorflow/c/eager/graph_function.h
// Thin wrapper around a FunctionDef. class GraphFunction : public AbstractFunction { public: explicit GraphFunction(FunctionDef fdef); ~GraphFunction() override; // GraphFunction maybe stay alive for the duration of the returned // FunctionDef. absl::Status GetFunctionDef(const FunctionDef** fdef) override; // Returns a shared reference to the wrapped function.
Registered: Tue Oct 29 12:39:09 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/es/docs/tutorial/query-params.md
* Soporte del editor (obviamente) * <abbr title="convertir el string que viene de un HTTP request a datos de Python">"Parsing"</abbr> de datos * Validación de datos * Documentación automática ## Configuraciones por defecto Como los parámetros de query no están fijos en una parte del path pueden ser opcionales y pueden tener valores por defecto.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.1K bytes - Viewed (0)