Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 238 for Deploy (0.04 sec)

  1. docs/en/data/sponsors.yml

      - url: https://liblab.com?utm_source=fastapi
        title: liblab - Generate SDKs from FastAPI
        img: https://fastapi.tiangolo.com/img/sponsors/liblab.png
      - url: https://docs.render.com/deploy-fastapi?utm_source=deploydoc&utm_medium=referral&utm_campaign=fastapi
        title: Deploy & scale any full-stack web app on Render. Focus on building apps, not infra.
        img: https://fastapi.tiangolo.com/img/sponsors/render.svg
    silver:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 09:13:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. util/deploy_snapshot.sh

    #!/bin/bash
    
    # see https://coderwall.com/p/9b_lfq
    
    set -e -u
    
    function mvn_deploy() {
      ./mvnw clean deploy -DskipTests=true "$@"
    }
    
    echo "Publishing Maven snapshot..."
    
    mvn_deploy
    mvn_deploy -f android/pom.xml
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 245 bytes
    - Viewed (0)
  3. compat/maven-compat/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) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_env_web.properties

    #                                                                                   ======
    # The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
    lasta_di.smart.deploy.mode = cool
    
    # Is development environment here? (used for various purpose, you should set false if unknown)
    development.here = false
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  5. helm/minio/README.md

    ## Introduction
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

    import static org.apache.maven.api.Lifecycle.Phase.BUILD;
    import static org.apache.maven.api.Lifecycle.Phase.COMPILE;
    import static org.apache.maven.api.Lifecycle.Phase.DEPLOY;
    import static org.apache.maven.api.Lifecycle.Phase.INITIALIZE;
    import static org.apache.maven.api.Lifecycle.Phase.INSTALL;
    import static org.apache.maven.api.Lifecycle.Phase.INTEGRATION_TEST;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         */
        boolean is(String propertyKey);
    
        /**
         * Get the value for the key 'lasta_di.smart.deploy.mode'. <br>
         * The value is, e.g. warm <br>
         * comment: The mode of Lasta Di's smart-deploy, should be cool in production (e.g. hot, cool, warm)
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. docs/en/overrides/main.html

            <img class="sponsor-image" src="/img/sponsors/liblab-banner.png" />
          </a>
        </div>
        <div class="item">
          <a title="Deploy & scale any full-stack web app on Render. Focus on building apps, not infra." style="display: block; position: relative;" href="https://docs.render.com/deploy-fastapi?utm_source=deploydoc&utm_medium=referral&utm_campaign=fastapi" target="_blank">
            <span class="sponsor-badge">sponsor</span>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 31 09:13:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleBindingsInjector.java

                                                    newPlugin("maven-install-plugin", "install"),
                                                    newPlugin("maven-deploy-plugin", "deploy")))
                                            .build());
                        } else {
                            return Map.of();
                        }
                    }
                });
            }
        };
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. disabled-Jenkinsfile

            stage('Checkout') {
                checkout scm
            }
    
            def WORK_DIR=pwd()
            def MAVEN_GOAL='verify'
    
            stage('Configure deploy') {
               if (env.BRANCH_NAME in ['master', 'maven-3.8.x', 'maven-3.9.x']){
                   MAVEN_GOAL='deploy'
               }
            }
    
            stage('Build / Unit Test') {
                String jdkName = jenkinsEnv.jdkFromVersion(buildOs, buildJdk)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Mon Sep 30 14:11:55 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top