- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 65 for Combiner (0.08 sec)
-
docs/fr/docs/advanced/additional-responses.md
``` Tout sera combiné et inclus dans votre OpenAPI, et affiché dans la documentation de l'API : <img src="/img/tutorial/additional-responses/image01.png"> ## Combinez les réponses prédéfinies et les réponses personnalisées
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/CollectorTester.java
A accum = collector.supplier().get(); for (T input : inputs) { A newAccum = collector.supplier().get(); collector.accumulator().accept(newAccum, input); accum = collector.combiner().apply(accum, newAccum); } return accum; } }, /** Get one accumulator for each element and merge the accumulators right-to-left. */ MERGE_RIGHT_ASSOCIATIVE { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:40:56 UTC 2024 - 6.5K bytes - Viewed (0) -
docs/fr/docs/history-design-future.md
</blockquote> ## Recherche En utilisant toutes les alternatives précédentes, j'ai eu la chance d'apprendre de toutes, de prendre des idées, et de les combiner de la meilleure façon que j'ai pu trouver pour moi-même et les équipes de développeurs avec lesquelles j'ai travaillé. Par exemple, il était clair que l'idéal était de se baser sur les annotations de type Python standard.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 4.9K bytes - Viewed (0) -
docs/fr/docs/deployment/docker.md
--- Avec ces informations et ces outils, passez à la section suivante pour tout combiner. ## Cluster en mode Docker Swarm avec Traefik et HTTPS
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/fr/docs/tutorial/query-params-str-validations.md
/// La documentation sera donc mise à jour automatiquement pour autoriser plusieurs valeurs : <img src="/img/tutorial/query-params-str-validations/image02.png"> ### Combiner liste de paramètres et valeurs par défaut Et l'on peut aussi définir une liste de valeurs par défaut si aucune n'est fournie : {* ../../docs_src/query_params_str_validations/tutorial012.py hl[9] *}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 17:14:38 UTC 2024 - 9.5K bytes - Viewed (0) -
internal/s3select/sql/analysis.go
// qProp contains analysis info about an SQL term. type qProp struct { isAggregation, isRowFunc bool err error } // `combine` combines a pair of `qProp`s, so that errors are // propagated correctly, and checks that an aggregation is not being // combined with a row-function term. func (p *qProp) combine(q qProp) { switch { case p.err != nil: // Do nothing case q.err != nil: p.err = q.err default:
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Dec 23 07:19:11 UTC 2023 - 8.5K bytes - Viewed (0) -
istioctl/pkg/waypoint/testdata/waypoint/combined-gateway
John Howard <******@****.***> 1713303040 -0700
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 16 21:30:40 UTC 2024 - 338 bytes - Viewed (0) -
docs/en/docs/advanced/additional-responses.md
It will all be combined and included in your OpenAPI, and shown in the API docs: <img src="/img/tutorial/additional-responses/image01.png"> ## Combine predefined responses and custom ones You might want to have some predefined responses that apply to many *path operations*, but you want to combine them with custom responses needed by each *path operation*.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 16:07:07 UTC 2024 - 8.7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/resolver/filter/CumulativeScopeArtifactFilter.java
this.scopes = new HashSet<>(); addScopes(scopes); } /** * Creates a new filter that combines the specified filters. * * @param filters The filters to combine, may be {@code null}. */ public CumulativeScopeArtifactFilter(CumulativeScopeArtifactFilter... filters) { this.scopes = new HashSet<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
internal/bucket/lifecycle/and.go
return true } x[t.Key] = struct{}{} } return false } // BySize returns true when sz satisfies a // ObjectSizeLessThan/ObjectSizeGreaterthan or a logical AND of these predicates // Note: And combines size and other predicates like Tags, Prefix, etc. This // method applies exclusively to size predicates only. func (a And) BySize(sz int64) bool { if a.ObjectSizeGreaterThan > 0 && sz <= a.ObjectSizeGreaterThan {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 2.9K bytes - Viewed (0)