- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 1,302 for SAME (0.04 sec)
-
tensorflow/c/eager/parallel_device/parallel_device_lib.cc
- //
- // DeviceThread itself is thread-safe, in that StartExecute will block if there
- // is a pending execution. Since StartExecute is equivalent to grabbing a lock,
- // multiple DeviceThreads should always be accessed in the same order to avoid
- // deadlocks.
- class DeviceThread {
- public:
- // Starts a background thread waiting for `StartExecute`.
- explicit DeviceThread(const std::string& device, const bool is_async,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 21 04:14:14 UTC 2024 - 25.9K bytes - Viewed (0) -
tests/associations_has_one_test.go
- &Account{Number: "account-slice-append-2"},
- &Account{Number: "account-slice-append-3"},
- )
- AssertAssociationCount(t, users, "Account", 3, "After Append")
- // Replace -> same as append
- // Delete
- if err := DB.Model(&users).Association("Account").Delete(&users[0].Account); err != nil {
- t.Errorf("no error should happened when deleting account, but got %v", err)
- }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Jun 12 10:49:45 UTC 2024 - 7.1K bytes - Viewed (0) -
common-protos/k8s.io/api/discovery/v1/generated.proto
- // hostname of this endpoint. This field may be used by consumers of
- // endpoints to distinguish endpoints from each other (e.g. in DNS names).
- // Multiple endpoints which use the same hostname should be considered
- // fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS
- // Label (RFC 1123) validation.
- // +optional
- optional string hostname = 3;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 8K bytes - Viewed (0) -
android/guava/src/com/google/common/math/StatsAccumulator.java
- *
- * <p>This is guaranteed to return zero if the dataset contains only exactly one finite value. It
- * is not guaranteed to return zero when the dataset consists of the same value multiple times,
- * due to numerical errors. However, it is guaranteed never to return a negative result.
- *
- * <h3>Non-finite values</h3>
- *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 23 16:45:30 UTC 2024 - 15.8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
- *
- * <p>This method is used when testing iterators without a known ordering. We poll the target
- * iterator's next element and pass it to the reference iterator through this method so it can
- * return the same element. This enables the assertion to pass and the reference iterator to
- * properly update its state.
- */
- void promoteToNext(E e) {
- if (nextElements.remove(e)) {
- nextElements.push(e);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 21.2K bytes - Viewed (0) -
common-protos/k8s.io/api/apps/v1beta1/generated.proto
- // this list must have at least one matching (by name) volumeMount in one
- // container in the template. A claim in this list takes precedence over
- // any volumes in the template, with the same name.
- // TODO: Define the behavior if a claim already exists with the same name.
- // +optional
- repeated k8s.io.api.core.v1.PersistentVolumeClaim volumeClaimTemplates = 4;
- // serviceName is the name of the service that governs this StatefulSet.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSource2.java
- /**
- * Provides access to the contents of a POM independently of the backing store (e.g. file system, database, memory).
- * <p>
- * Unlike {@link ModelSource}, this interface supports loading of parent POM(s) from the same backing store and allows
- * construction of MavenProject instances without the need to have parent POM(s) available from local or remote
- * repositories.
- * <p>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/en/docs/advanced/using-request-directly.md
- /// tip
- Note that in this case, we are declaring a path parameter beside the request parameter.
- So, the path parameter will be extracted, validated, converted to the specified type and annotated with OpenAPI.
- The same way, you can declare any other parameter as normally, and additionally, get the `Request` too.
- ///
- ## `Request` documentation
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.3K bytes - Viewed (0) -
internal/crypto/header.go
- "encoding/base64"
- "net/http"
- xhttp "github.com/minio/minio/internal/http"
- )
- // RemoveSensitiveHeaders removes confidential encryption
- // information - e.g. the SSE-C key - from the HTTP headers.
- // It has the same semantics as RemoveSensitiveEntries.
- func RemoveSensitiveHeaders(h http.Header) {
- h.Del(xhttp.AmzServerSideEncryptionCustomerKey)
- h.Del(xhttp.AmzServerSideEncryptionCopyCustomerKey)
- h.Del(xhttp.AmzMetaUnencryptedContentLength)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Feb 22 06:26:06 UTC 2024 - 2.9K bytes - Viewed (0) -
cmd/metacache-entries.go
- // In that case we will drop the directory entry.
- // This should however not be confused with an object with a trailing slash.
- dirMatches := best.isDir() == other.isDir()
- suffixMatches := strings.HasSuffix(best.name, slashSeparator) == strings.HasSuffix(other.name, slashSeparator)
- // Simple case. Both are same type with same suffix.
- if dirMatches && suffixMatches {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 24.1K bytes - Viewed (0)