Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 231 - 240 of 459 for deployen (0.21 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/MavenPluginLifecycleMappingProvider.java

            "install", "org.apache.maven.plugins:maven-install-plugin:" + INSTALL_PLUGIN_VERSION + ":install",
            "deploy", "org.apache.maven.plugins:maven-deploy-plugin:" + DEPLOY_PLUGIN_VERSION + ":deploy"
        };
        // END SNIPPET: maven-plugin
    
        @Inject
        public MavenPluginLifecycleMappingProvider() {
            super(BINDINGS);
        }
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Sat May 03 21:14:22 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  2. tests/test_reponse_set_reponse_code_empty.py

            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/{id}": {
                    "delete": {
                        "summary": "Delete Deployment",
                        "operationId": "delete_deployment__id__delete",
                        "parameters": [
                            {
                                "required": True,
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 3.1K bytes
    - Click Count (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonManager.java

                ArtifactMetadata metadata, ArtifactRepository remoteRepository, File file, String checksumPolicyWarn)
                throws TransferFailedException, ResourceDoesNotExistException;
    
        //
        // Deployer
        //
        void putArtifact(
                File source, Artifact artifact, ArtifactRepository deploymentRepository, TransferListener downloadMonitor)
                throws TransferFailedException;
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 3.4K bytes
    - Click Count (0)
  4. src/main/resources/fess_env.properties

    #                                                                                   ======
    # The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
    lasta_di.smart.deploy.mode = warm
    
    # Is development environment here? (used for various purpose, you should set false if unknown)
    development.here = true
    
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Aug 07 04:53:24 GMT 2021
    - 2.2K bytes
    - Click Count (1)
  5. helm/minio/templates/_helpers.tpl

      {{- else if semverCompare "^1.16-0" .Capabilities.KubeVersion.Version -}}
        {{- print "networking.k8s.io/v1" -}}
      {{- end -}}
    {{- end -}}
    
    {{/*
    Return the appropriate apiVersion for deployment.
    */}}
    {{- define "minio.deployment.apiVersion" -}}
      {{- if semverCompare "<1.9-0" .Capabilities.KubeVersion.Version -}}
        {{- print "apps/v1beta2" -}}
      {{- else -}}
        {{- print "apps/v1" -}}
      {{- end -}}
    {{- end -}}
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Aug 06 23:48:24 GMT 2025
    - 6.4K bytes
    - Click Count (0)
  6. SECURITY.md

    You can learn more about [FastAPI versions and how to pin and upgrade them](https://fastapi.tiangolo.com/deployment/versions/) for your project in the docs.
    
    ## Reporting a Vulnerability
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Aug 31 10:49:48 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  7. impl/maven-core/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java

                plugins.add(newPlugin("maven-jar-plugin", "jar"));
                plugins.add(newPlugin("maven-install-plugin", "install"));
                plugins.add(newPlugin("maven-deploy-plugin", "deploy"));
            } else {
                plugins = Collections.emptySet();
            }
    
            return plugins;
        }
    
        private Plugin newPlugin(String artifactId, String... goals) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  8. docs/pt/docs/deployment/docker.md

    # FastAPI em contêineres - Docker { #fastapi-in-containers-docker }
    
    Ao fazer o deploy de aplicações FastAPI uma abordagem comum é construir uma **imagem de contêiner Linux**. Isso normalmente é feito usando o <a href="https://www.docker.com/" class="external-link" target="_blank">**Docker**</a>. Você pode a partir disso fazer o deploy dessa imagem de algumas maneiras.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 32.1K bytes
    - Click Count (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/aether/MavenTransformer.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import org.apache.maven.internal.transformation.TransformerManager;
    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.installation.InstallRequest;
    import org.eclipse.aether.spi.artifact.transformer.ArtifactTransformer;
    
    import static java.util.Objects.requireNonNull;
    
    /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jun 06 20:01:00 GMT 2025
    - 2K bytes
    - Click Count (0)
  10. CLAUDE.md

    # Generate Javadoc
    mvn javadoc:javadoc
    
    # Generate test coverage report
    mvn jacoco:report
    ```
    
    ### Release Process
    ```bash
    # Sign artifacts (for releases)
    mvn verify
    
    # Deploy to Maven Central via Sonatype Central Portal
    mvn deploy
    ```
    
    ## Architecture
    
    ### Core Components
    
    Created: Sat Dec 20 09:13:53 GMT 2025
    - Last Modified: Mon Nov 24 03:10:07 GMT 2025
    - 3.2K bytes
    - Click Count (0)
Back to Top