Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 130 for deploying (0.25 sec)

  1. platforms/documentation/docs/src/snippets/developingPlugins/namedDomainObjectContainer/tests/namedDomainObjectContainer.out

    Deploying to URL http://localhost:8080
    Deploying to URL http://staging.enterprise.com
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 130 bytes
    - Viewed (0)
  2. docs/en/docs/deployment/index.md

    # Deployment
    
    Deploying a **FastAPI** application is relatively easy.
    
    ## What Does Deployment Mean
    
    To **deploy** an application means to perform the necessary steps to make it **available to the users**.
    
    For a **web API**, it normally involves putting it in a **remote machine**, with a **server program** that provides good performance, stability, etc, so that your **users** can **access** the application efficiently and without interruptions or problems.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeployer.java

         * @param deploymentRepository the repository to deploy to
         * @param localRepository the local repository to install into
         * @throws ArtifactDeploymentException if an error occurred deploying the artifact
         * @deprecated to be removed before 2.0 after the install/deploy plugins use the alternate
         *             method
         */
        @Deprecated
        void deploy(
                String basedir,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. manifests/charts/istio-operator/Chart.yaml

    apiVersion: v2
    name: istio-operator
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio operator
    keywords:
      - istio
      - operator
    sources:
      - https://github.com/istio/istio/tree/master/operator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 404 bytes
    - Viewed (0)
  5. samples/ambient-argo/tag-chart/Chart.yaml

    apiVersion: v1
    name: tags
    version: 1.1.0
    tillerVersion: ">=2.7.2"
    description: Helm chart for deploying Istio cluster resources and CRDs
    keywords:
      - istio
    sources:
      - http://github.com/istio/istio
    engine: gotpl
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 273 bytes
    - Viewed (0)
  6. manifests/charts/gateway/Chart.yaml

    apiVersion: v2
    name: gateway
    description: Helm chart for deploying Istio gateways
    type: application
    
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    
    sources:
    - https://github.com/istio/istio
    icon: https://istio.io/latest/favicons/android-192x192.png
    keywords:
    - istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 01:23:27 UTC 2023
    - 389 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/developingPlugins/conventionOverConfiguration/tests/deploy.out

    > Task :buildSrc:compileJava
    > Task :buildSrc:compileGroovy NO-SOURCE
    > Task :buildSrc:pluginDescriptors
    > Task :buildSrc:processResources
    > Task :buildSrc:classes
    > Task :buildSrc:jar
    
    > Task :deploy
    Deploying to URL http://localhost:8080/server
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 302 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/developingPlugins/conventionOverConfiguration/groovy/buildSrc/src/main/java/org/myorg/Deploy.java

    abstract public class Deploy extends DefaultTask {
    
        @Input
        abstract public Property<String> getUrl();
    
        @TaskAction
        public void deploy() {
            System.out.println("Deploying to URL " + getUrl().get());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 400 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/developingPlugins/conventionOverConfiguration/kotlin/buildSrc/src/main/java/org/myorg/Deploy.java

    abstract public class Deploy extends DefaultTask {
    
        @Input
        abstract public Property<String> getUrl();
    
        @TaskAction
        public void deploy() {
            System.out.println("Deploying to URL " + getUrl().get());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 400 bytes
    - Viewed (0)
  10. manifests/charts/base/Chart.yaml

    apiVersion: v2
    name: base
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for deploying Istio cluster resources and CRDs
    keywords:
      - istio
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 378 bytes
    - Viewed (0)
Back to top