- Sort Score
- Result 10 results
- Languages All
Results 1831 - 1840 of 2,172 for error_1 (0.05 sec)
-
tensorflow/c/eager/abstract_operation.h
const char* attr_name, absl::Span<const AbstractOperation*> values) = 0; private: const AbstractOperationKind kind_; }; // TODO(b/193656009): Defining these in a cc file causes linker errors with // fastbuild. inline absl::Status AbstractOperation::SetAttrShape( const char* attr_name, const PartialTensorShape shape) { return SetAttrShape(attr_name, shape.dim_sizes().data(), shape.dims()); }
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 7.3K bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc
build --copt="-mtune=generic" --copt="-march=armv8-a" --copt="-O3" # Test-related settings below this point. test --build_tests_only --keep_going --test_output=errors --verbose_failures=true test --test_timeout=500,900,-1,-1 # Give only the list of failed tests at the end of the log test --test_summary=short # "nonpip" tests are regular py_test tests.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Jul 12 20:16:57 UTC 2024 - 6.2K bytes - Viewed (0) -
cmd/leak-detect_test.go
time.Sleep(leakDetectPauseTimeMs * time.Millisecond) continue } // after the deadline time report all the difference in the latest snapshot compared with the initial one. for _, g := range leaked { t.Errorf("Leaked goroutine: %v", g) } return } } // DetectTestLeak - snapshots the currently running goroutines and returns a // function to be run at the end of tests to see whether any // goroutines leaked.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/em/docs/how-to/custom-request-and-route.md
โ๏ธ โฉ๏ธ ๐ ๐ `GzipRequest.body`, ๐จ ๐ช ๐ ๐ ๐ ๐โ โซ๏ธ ๐ **FastAPI** ๐โ ๐ช. ## ๐ ๐จ ๐ช โ ๐โ๐ฆบ /// tip โ ๐ ๐ โ , โซ๏ธ ๐ฒ ๐ โฉ โ๏ธ `body` ๐ ๐โ๐ฆบ `RequestValidationError` ([๐ โ](../tutorial/handling-errors.md#requestvalidationerror){.internal-link target=_blank}). โ๏ธ ๐ ๐ผ โ & โซ๏ธ ๐ฆ โ ๐ โฎ๏ธ ๐ ๐ฆฒ. /// ๐ฅ ๐ช โ๏ธ ๐ ๐ ๐ฏ ๐ ๐จ ๐ช โ ๐โ๐ฆบ. ๐ ๐ฅ ๐ช ๐ต ๐จ ๐ `try`/`except` ๐ซ:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.6K bytes - Viewed (0) -
tensorflow/c/eager/c_api_remote_test.cc
#include "tensorflow/core/distributed_runtime/rpc/grpc_server_lib.h" #include "tensorflow/core/framework/function.h" #include "tensorflow/core/graph/graph.h" #include "tensorflow/core/platform/casts.h" #include "tensorflow/core/platform/errors.h" #include "tensorflow/core/platform/protobuf.h" #include "tensorflow/core/platform/test.h" #include "tensorflow/core/protobuf/cluster.pb.h" #include "tensorflow/core/protobuf/config.pb.h"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 12 00:14:22 UTC 2020 - 5.4K bytes - Viewed (0) -
internal/config/batch/batch.go
Value: "0ms", // No wait by default between each expiration attempts. }, } // LookupConfig - lookup config and override with valid environment settings if any. func LookupConfig(kvs config.KVS) (cfg Config, err error) { if err = config.CheckValidKeys(config.BatchSubSys, kvs, DefaultKVS); err != nil { return cfg, err } cfg.ReplicationWorkersWait = 0 cfg.KeyRotationWorkersWait = 0 cfg.ExpirationWorkersWait = 0
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 4.7K bytes - Viewed (0) -
statement.go
type StatementModifier interface { ModifyStatement(*Statement) } // WriteString write string func (stmt *Statement) WriteString(str string) (int, error) { return stmt.SQL.WriteString(str) } // WriteByte write byte func (stmt *Statement) WriteByte(c byte) error { return stmt.SQL.WriteByte(c) } // WriteQuoted write quoted value func (stmt *Statement) WriteQuoted(value interface{}) { stmt.QuoteTo(&stmt.SQL, value)
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 24 09:42:59 UTC 2024 - 19.9K bytes - Viewed (0) -
docs/de/docs/tutorial/security/simple-oauth2.md
Daher erstellen wir eine zusรคtzliche Abhรคngigkeit `get_current_active_user`, die wiederum `get_current_user` als Abhรคngigkeit verwendet. Beide Abhรคngigkeiten geben nur dann einen HTTP-Error zurรผck, wenn der Benutzer nicht existiert oder inaktiv ist. In unserem Endpunkt erhalten wir also nur dann einen Benutzer, wenn der Benutzer existiert, korrekt authentifiziert wurde und aktiv ist: //// tab | Python 3.10+
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 14.1K bytes - Viewed (0) -
misc/cgo/gmp/gmp.go
return z } // SetString interprets s as a number in the given base // and sets z to that value. The base must be in the range [2,36]. // SetString returns an error if s cannot be parsed or the base is invalid. func (z *Int) SetString(s string, base int) error { z.doinit() if base < 2 || base > 36 { return os.ErrInvalid } p := C.CString(s) defer C.free(unsafe.Pointer(p))
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Apr 11 16:34:30 UTC 2022 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java
CopyUtil.copy(in, out); } catch (final ClientAbortException e) { logger.debug("Client aborts this request.", e); } catch (final IOException e) { logger.error("Failed to read {} from {}", path, filePath); throw new WebApiException(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e); } } else { try {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 15 08:29:24 UTC 2024 - 11.3K bytes - Viewed (0)