- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 88 for 3902 (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs_src/custom_response/tutorial006c_py39.py
from fastapi import FastAPI from fastapi.responses import RedirectResponse app = FastAPI() @app.get("/pydantic", response_class=RedirectResponse, status_code=302) async def redirect_pydantic():
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 237 bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/ResolverLifecycle.java
import org.eclipse.sisu.PreDestroy; import static java.util.Objects.requireNonNull; /** * Maven internal component that bridges container "shut down" to {@link RepositorySystem#shutdown()}. * * @since 3.9.0 */ @Named @EagerSingleton final class ResolverLifecycle { private final Provider<RepositorySystem> repositorySystemProvider; @Inject
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/AbstractMavenPluginDependenciesValidator.java
import org.eclipse.aether.resolution.ArtifactDescriptorResult; import static java.util.Objects.requireNonNull; /** * Service responsible for validating plugin dependencies. * * @since 3.9.2 */ abstract class AbstractMavenPluginDependenciesValidator implements MavenPluginDependenciesValidator { protected final PluginValidationManager pluginValidationManager;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.1K bytes - Click Count (0) -
docs_src/additional_responses/tutorial004_py39.py
from fastapi.responses import FileResponse from pydantic import BaseModel class Item(BaseModel): id: str value: str responses = { 404: {"description": "Item not found"}, 302: {"description": "The item was moved"}, 403: {"description": "Not enough privileges"}, } app = FastAPI() @app.get( "/items/{item_id}", response_model=Item,
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 20:41:43 GMT 2025 - 701 bytes - Click Count (0) -
internal/s3select/sql/jsondata/books.json
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Jun 01 21:59:40 GMT 2021 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/AbstractEventSpy.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.eventspy; /** * A skeleton eventspy that does nothing other than helping implementors. * @since 3.0.2 */ public abstract class AbstractEventSpy implements EventSpy { @Override public void init(Context context) throws Exception {} @Override public void onEvent(Object event) throws Exception {}Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 1.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyDispatcher.java
import org.apache.maven.execution.ExecutionListener; import org.eclipse.aether.RepositoryListener; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Dispatches callbacks to all registered EventSpies. * @since 3.0.2 */ @Named @Singleton public class EventSpyDispatcher { private final Logger logger = LoggerFactory.getLogger(getClass()); private final List<EventSpy> eventSpies; @InjectCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MavenMixedDependenciesValidator.java
import org.eclipse.aether.artifact.Artifact; import org.eclipse.aether.graph.Dependency; import org.eclipse.aether.resolution.ArtifactDescriptorResult; /** * Detects mixed Maven versions in plugins. * * @since 3.9.2 */ @Singleton @Named class MavenMixedDependenciesValidator extends AbstractMavenPluginDependenciesValidator { @Inject MavenMixedDependenciesValidator(PluginValidationManager pluginValidationManager) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java
* Implementors are strongly advised to inherit from {@link AbstractEventSpy} instead of directly implementing this * interface. * @since 3.0.2 */ public interface EventSpy { /** * Context */ interface Context { /** * Gets key-value pairs providing information about the Maven runtime. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Feb 10 15:02:53 GMT 2025 - 2.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginValidationManager.java
import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.artifact.Artifact; /** * Component collecting plugin validation issues and reporting them. * * @since 3.9.2 */ public interface PluginValidationManager { enum IssueLocality { /** * Issue is "user actionable", is internal to the currently built project and is reparable from scope of itCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.4K bytes - Click Count (0)