- Sort Score
- Result 10 results
- Languages All
Results 241 - 250 of 1,990 for spath (0.03 sec)
-
docs/ru/docs/tutorial/body-fields.md
/// ## Объявление атрибутов модели { #declare-model-attributes } Вы можете использовать функцию `Field` с атрибутами модели: {* ../../docs_src/body_fields/tutorial001_an_py310.py hl[11:14] *} Функция `Field` работает так же, как `Query`, `Path` и `Body`, у неё такие же параметры и т.д. /// note | Технические деталиRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Sep 30 11:24:39 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
* * @param id The unique identifier for this dictionary file. * @param path The path to the dictionary file. * @param timestamp The last modified timestamp of the file. */ public StopwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return STOPWORDS; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 13K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ResourceIncludeTest.java
assertEquals(Path.of("src/main/resources").toString(), resources.get(0).getDirectory()); assertEquals(Path.of("src/main/resources2").toString(), resources.get(1).getDirectory()); assertEquals(Path.of("src/main/resources3").toString(), resources.get(2).getDirectory()); // Modify the middle resource resources.get(1).addInclude("*.properties");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 07 13:11:07 UTC 2025 - 12.6K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeWorkflowIntegrationTest.java
.build(); Files.writeString(parentPom, parentPomContent); // Create module directory and POM Path moduleDir = tempDir.resolve("module1"); Files.createDirectories(moduleDir); Path modulePom = moduleDir.resolve("pom.xml"); String modulePomContent = PomBuilder.create() .parent("com.example", "parent-project", "1.0.0")
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 9.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
Collection<DownloadedArtifact> getArtifacts(); /** * Retrieves the file system path associated with a specific artifact. * * @param artifact The {@link Artifact} whose path is to be retrieved. * @return The {@link Path} to the artifact, or {@code null} if unavailable. */ @Nullable Path getPath(@Nonnull Artifact artifact); /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K bytes - Viewed (0) -
docs/de/docs/tutorial/cookie-params.md
Sie können Cookie-Parameter auf die gleiche Weise definieren wie `Query`- und `Path`-Parameter. ## `Cookie` importieren { #import-cookie } Importieren Sie zuerst `Cookie`: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *} ## `Cookie`-Parameter deklarieren { #declare-cookie-parameters } Deklarieren Sie dann die Cookie-Parameter mit derselben Struktur wie bei `Path` und `Query`.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Sep 24 08:10:28 UTC 2025 - 1.8K bytes - Viewed (0) -
docs/ko/docs/tutorial/cookie-params.md
쿠키 매개변수를 `Query`와 `Path` 매개변수들과 같은 방식으로 정의할 수 있습니다. ## `Cookie` 임포트 먼저 `Cookie`를 임포트합니다: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *} ## `Cookie` 매개변수 선언 그런 다음, `Path`와 `Query`처럼 동일한 구조를 사용하는 쿠키 매개변수를 선언합니다. 첫 번째 값은 기본값이며, 추가 검증이나 어노테이션 매개변수 모두 전달할 수 있습니다: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[9] *} /// note | 기술 세부사항Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
* @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); } @Override public String getType() { return PROTWORDS; } @Override public String getPath() { return path; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.9K bytes - Viewed (0) -
compat/maven-model-builder/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 12.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/UpgradeResult.java
*/ public static UpgradeResult success(Set<Path> processedPoms, Set<Path> modifiedPoms) { return new UpgradeResult(processedPoms, modifiedPoms, Collections.emptySet()); } /** * Creates a failure result with the specified processed POMs and error POMs. */ public static UpgradeResult failure(Set<Path> processedPoms, Set<Path> errorPoms) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 3.9K bytes - Viewed (0)