- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 314 for unique (0.11 sec)
-
common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto
optional string status = 2; // `lastTransitionTime` is the last time the condition transitioned from one status to another. optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3; // `reason` is a unique, one-word, CamelCase reason for the condition's last transition. optional string reason = 4; // `message` is a human-readable message indicating details about last transition. optional string message = 5; }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 19.4K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/Striped.java
* small portion of these would be in use. * * <p>Prior to this class, one might be tempted to use {@code Map<K, Lock>}, where {@code K} * represents the task. This maximizes concurrency by having each unique key mapped to a unique * lock, but also maximizes memory footprint. On the other extreme, one could use a single lock for * all tasks, which minimizes memory footprint but also minimizes concurrency. Instead of choosing
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 26 12:58:35 UTC 2024 - 20.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Range.java
* <li>Your value type's comparison method should be {@linkplain Comparable consistent with * equals} if at all possible. Otherwise, be aware that concepts used throughout this * documentation such as "equal", "same", "unique" and so on actually refer to whether {@link * Comparable#compareTo compareTo} returns zero, not whether {@link Object#equals equals} * returns {@code true}.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 27.8K bytes - Viewed (0) -
docs/lambda/README.md
# Object Lambda
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Apr 04 19:15:28 UTC 2023 - 7.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
private boolean blocked; public MavenArtifactRepository() {} /** * Create a remote download repository. * * @param id the unique identifier of the repository * @param url the URL of the repository * @param layout the layout of the repository * @param snapshots the policies to use for snapshots
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 11K bytes - Viewed (0) -
docs/fr/README.md
$ mvn package $ mvn rpm:rpm # package .rpm $ mvn jdeb:jdeb # package .deb ### Générer le Code Source $ mvn dbflute:download # (commande unique) $ mvn dbflute:freegen $ mvn license:format ### Tests d'Intégration Lancez le serveur Fess et exécutez la commande suivante :
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 07:19:47 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-nested-models.md
마찬가지로 예제에서 `tags`를 구체적으로 "문자열의 리스트"로 만들 수 있습니다: ```Python hl_lines="14" {!../../docs_src/body_nested_models/tutorial002.py!} ``` ## 집합 타입 그런데 생각해보니 태그는 반복되면 안 되고, 고유한(Unique) 문자열이어야 할 것 같습니다. 그리고 파이썬은 집합을 위한 특별한 데이터 타입 `set`이 있습니다. 그렇다면 `Set`을 임포트 하고 `tags`를 `str`의 `set`으로 선언할 수 있습니다: ```Python hl_lines="1 14" {!../../docs_src/body_nested_models/tutorial003.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 7.6K bytes - Viewed (0) -
internal/event/targetlist.go
stats = targetStat{} } stats.totalEvents++ list.targetStats[id] = stats return } type asyncEvent struct { ev Event targetSet TargetIDSet } // Add - adds unique target to target list. func (list *TargetList) Add(targets ...Target) error { list.Lock() defer list.Unlock() for _, target := range targets { if _, ok := list.targets[target.ID()]; ok {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
* as a cental repository for all jCIFS configuration properties. It cannot be * instantiated. Similar to <code>System</code> properties the namespace * is global therefore property names should be unique. Before use, * the <code>load</code> method should be called with the name of a * <code>Properties</code> file (or <code>null</code> indicating no * file) to initialize the <code>Config</code>. The <code>System</code>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.3K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1alpha1/generated.proto
// there are no conflicts with other CSI drivers on the cluster, the recommendation // is to use csisc-<uuid>, a generated name, or a reverse-domain name which ends // with the unique CSI driver name. // // Objects are namespaced. // // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata // +optional
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 9.4K bytes - Viewed (0)