- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 1,282 for descriptions (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java
packages.addAll(descriptor.getExportedPackages()); } } } catch (IOException ignored) { // exports descriptors are entirely optional } return new CoreExtensionEntry(loader, artifacts, packages, null, null); } public static CoreExtensionEntry discoverFrom(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 4.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/DownloadGitRepoToEc2Agent.kt
import jetbrains.buildServer.configs.kotlin.buildSteps.script object DownloadGitRepoToEc2Agent : BuildType({ val id = "Util_DownloadGitRepoToEc2Agent" name = "Download Git Repo to EC2 Agent" description = "Do nothing but downloading gradle/gradle repo to EC2 agents" applyDefaultSettings(artifactRuleOverride = "") params { param("defaultBranchName", "master") } steps {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Nov 12 06:13:12 GMT 2025 - 758 bytes - Click Count (0) -
docs_src/query_params_str_validations/tutorial010_an_py310.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Oct 24 20:26:06 GMT 2023 - 622 bytes - Click Count (0) -
docs_src/response_model/tutorial001_py310.py
from typing import Any from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None tags: list[str] = [] @app.post("/items/", response_model=Item) async def create_item(item: Item) -> Any: return item @app.get("/items/", response_model=list[Item])
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Jan 07 13:45:48 GMT 2023 - 537 bytes - Click Count (0) -
.ci/templates.t/pull-request-gradle-unix.yml
--- - job: name: "elastic+elasticsearch+pull-request+{pr-job}" display-name: "elastic / elasticsearch - pull request {pr-job}" description: "Testing of Elasticsearch pull requests - {pr-job}" workspace: "/dev/shm/elastic+elasticsearch+pull-request+{pr-job}" scm: - git: refspec: "+refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/*" branches: - "${ghprbActualCommit}" triggers:Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 01 20:27:05 GMT 2021 - 1.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
* @throws IOException if the stream cannot be created or opened */ @Nonnull InputStream openStream() throws IOException; /** * Returns a human-readable description of where this source came from, * used primarily for error messages and debugging. * <p> * Examples of locations: * <ul> * <li>Absolute file path: {@code /path/to/pom.xml}</li>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jan 29 09:46:53 GMT 2025 - 4K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+intake+multijob+rest-compat.yml
--- jjbb-template: generic-gradle-unix.yml vars: - job-name: elastic+elasticsearch+%BRANCH%+intake+multijob+rest-compat - job-display-name: "elastic / elasticsearch # %BRANCH% - intake rest compatibility" - job-description: Elasticsearch %BRANCH% branch intake REST compatibility checks.
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 449 bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+periodic+java-matrix.yml
--- jjbb-template: matrix-gradle-unix.yml vars: - job-name: elastic+elasticsearch+%BRANCH%+periodic+java-matrix - job-display-name: "elastic / elasticsearch # %BRANCH% - java compatibility matrix" - job-description: "Testing of the Elasticsearch %BRANCH% branch java compatibility matrix.\n" - matrix-yaml-file: ".ci/matrix-runtime-javas.yml" - matrix-variable: ES_RUNTIME_JAVA
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 439 bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-windows-nojdk.yml
--- - job: name: "elastic+elasticsearch+pull-request+packaging-tests-windows-nojdk" display-name: "elastic / elasticsearch - pull request packaging-tests-windows-nojdk" description: "Testing of Elasticsearch pull requests - packaging-tests-windows-nojdk" # We use a hard-coded workspace directory here to avoid hitting windows path length limits child-workspace: "C:\\Users\\jenkins\\workspace\\pr-packaging-windows\\${BUILD_NUMBER}"Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 24 19:49:58 GMT 2021 - 2.3K bytes - Click Count (0) -
docs_src/body_nested_models/tutorial004_py310.py
from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Image(BaseModel): url: str name: str class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None tags: set[str] = set() image: Image | None = None @app.put("/items/{item_id}") async def update_item(item_id: int, item: Item):
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed May 11 17:29:02 GMT 2022 - 455 bytes - Click Count (0)