- Sort Score
- Num 10 results
- Language All
Results 331 - 340 of 423 for UNIQUE (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
"Two or more projects in the reactor" + " have the same identifier, please make sure that <groupId>:<artifactId>:<version>" + " is unique for each project: " + collisions, collisions); } return index; } private Result<? extends ProjectDependencyGraph> buildGraph(MavenSession session) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Dec 29 10:43:38 GMT 2025 - 28.8K bytes - Click Count (1) -
docs/zh-hant/docs/advanced/generate-clients.md
你可以**修改**這些操作 ID 的**產生方式**,讓它們更簡潔,並在用戶端中得到**更簡潔的方法名稱**。 在這種情況下,你需要用其他方式確保每個操作 ID 都是**唯一**的。 例如,你可以確保每個 *路徑操作* 都有標籤,接著根據**標籤**與 *路徑操作* 的**名稱**(函式名稱)來產生操作 ID。 ### 自訂唯一 ID 產生函式 { #custom-generate-unique-id-function } FastAPI 會為每個 *路徑操作* 使用一個**唯一 ID**,它會被用於**操作 ID**,以及任何請求或回應所需的自訂模型名稱。 你可以自訂該函式。它接收一個 APIRoute 並回傳字串。 例如,下面使用第一個標籤(你通常只會有一個標籤)以及 *路徑操作* 的名稱(函式名稱)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 9.1K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java
SimpleProblemCollector result = validateRaw("duplicate-profile-id.xml"); assertViolations(result, 0, 1, 0); assertTrue(result.getErrors().get(0).contains("non-unique-id")); } @Test void testBadPluginVersion() throws Exception { SimpleProblemCollector result = validate("bad-plugin-version.xml"); assertViolations(result, 0, 4, 0);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 33.9K bytes - Click Count (0) -
cmd/format-erasure.go
// Purge any existing temporary file, okay to ignore errors here. defer disk.Delete(context.TODO(), minioMetaBucket, tmpFormat, DeleteOptions{ Recursive: false, Immediate: false, }) // write to unique file. if err = disk.WriteAll(context.TODO(), minioMetaBucket, tmpFormat, formatData); err != nil { return err } // Rename file `uuid.json` --> `format.json`.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 23.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ImmutableSet.java
} /** * Constructs an {@code ImmutableSet} from the first {@code n} elements of the specified array. If * {@code k} is the size of the returned {@code ImmutableSet}, then the unique elements of {@code * elements} will be in the first {@code k} positions, and {@code elements[i] == null} for {@code * k <= i < n}. *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Oct 11 14:54:00 GMT 2025 - 22.4K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/Transport.java
* * @return the number of known usages */ protected long getUsageCount() { return this.usageCount.get(); } /** * Generate a unique key for the given request * * @param request the request to generate a key for * @return the generated key * @throws IOException if an I/O error occurs */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 27.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/UserDbm.java
return ls; } // =================================================================================== // Unique Info // =========== @Override public boolean hasPrimaryKey() { return false; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 27K bytes - Click Count (0) -
scripts/docs.py
) ) if slug in permalinks: # If the slug is already used, append a number to make it unique count = 1 original_slug = slug while slug in permalinks: slug = f"{original_slug}_{count}"Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
tests/migrate_test.go
if field == nil { t.Fatalf("%v: failed to find column %q", utils.FileWithLineNum(), fieldName) } if field.Unique != unique { t.Fatalf("%v: %q column %q unique should be %v but got %v", utils.FileWithLineNum(), stmt.Schema.Table, fieldName, unique, field.Unique) } if field.UniqueIndex != uniqueIndex {Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:49:01 GMT 2026 - 66.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java
* Represents an active Fess instance discovered via heartbeat. */ public static class InstanceInfo { /** Default constructor. */ public InstanceInfo() { } /** The unique instance ID. */ public String instanceId; /** The hostname of the instance. */ public String hostname; /** The display name of the instance. */ public String name;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 33.3K bytes - Click Count (0)