- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 314 for membre (0.07 sec)
-
docs/fr/docs/tutorial/path-params.md
La valeur du *paramètre de chemin* sera un des "membres" de l'énumération. #### Comparer les *membres d'énumération* Vous pouvez comparer ce paramètre avec les membres de votre énumération `ModelName` : ```Python hl_lines="17" {!../../docs_src/path_params/tutorial005.py!} ``` #### Récupérer la *valeur de l'énumération*
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10K bytes - Viewed (0) -
tests/associations_test.go
var member2 Member if err := DB.First(&member2, "id = ?", member.ID).Error; err != nil { t.Fatalf("failed to find member, got error: %v", err) } else if member2.ProfileID != 100 { t.Fatalf("member id is not equal: expects: %v, got: %v", 100, member2.ProfileID) } if r := DB.Delete(&profile); r.Error != nil || r.RowsAffected != 1 {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Wed Feb 08 08:29:09 UTC 2023 - 10.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 04 08:05:22 UTC 2024 - 11.2K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt
override fun decode(reader: DerReader): T { return reader.withTypeHint { val list = mutableListOf<Any?>() while (list.size < members.size) { val member = members[list.size] list += member.fromDer(reader) } if (reader.hasNext()) { throw ProtocolException("unexpected ${reader.peekHeader()} at $reader") }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 15K bytes - Viewed (0) -
docs/pt/docs/tutorial/path-params.md
<img src="/img/tutorial/path-params/image03.png"> ### Trabalhando com os *enumeration* do Python O valor do *parâmetro da rota* será um *membro de enumeration*. #### Compare *membros de enumeration* Você pode comparar eles com o *membro de enumeration* no enum `ModelName` que você criou: ```Python hl_lines="17" {!../../docs_src/path_params/tutorial005.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.8K bytes - Viewed (0) -
cmd/metrics-resource.go
total: "Total memory on the node", memUsed: "Used memory on the node", memUsedPerc: "Used memory percentage on the node", memFree: "Free memory on the node", memShared: "Shared memory on the node", memBuffers: "Buffers memory on the node", memCache: "Cache memory on the node", memAvailable: "Available memory on the node",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 23:30:33 UTC 2024 - 17.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TopKSelector.java
* offering expected O(n + k log k) performance (worst case O(n log k)) for n calls to {@link * #offer} and a call to {@link #topK}, with O(k) memory. In comparison, quickselect has the same * asymptotics but requires O(n) memory, and a {@code PriorityQueue} implementation takes O(n log * k). In benchmarks, this implementation performs at least as well as either implementation, and
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.1K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
if (member instanceof JApiClass) { return isIncubatingClass((JApiClass) member) } if (member instanceof JApiMethod) { return isIncubatingOrOverrideMethod((JApiMethod) member) } if (member instanceof JApiField) { return isIncubatingField((JApiField) member) } if (member instanceof JApiConstructor) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:30:48 UTC 2024 - 10.4K bytes - Viewed (0) -
tensorflow/c/eager/immediate_execution_context.h
// context and TF server for multi-client execution. virtual absl::Status EnableCollectiveOps(const ServerDef& server_def) = 0; // Set a distributed manager that helps set up, update, and check liveness // of member tasks in the cluster. virtual void SetDistributedManager( std::unique_ptr<ImmediateExecutionDistributedManager> distributed) = 0; virtual ImmediateExecutionDistributedManager* GetDistributedManager() = 0;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 12.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
return true; } } return false; } private boolean isIgnored(Member member) { return member.isSynthetic() || ignoredMembers.contains(member) || isEquals(member); } /** * Returns true if the given member is a method that overrides {@link Object#equals(Object)}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 22.6K bytes - Viewed (0)