Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 545 for deploy2 (0.32 sec)

  1. platforms/documentation/docs/src/snippets/ear/earCustomized/groovy/ear/build.gradle

    //      libraryDirectory = "APP-INF/lib"  // not needed, above libDirName setting does this
    //      module("my.jar", "java")  // won't deploy as my.jar isn't deploy dependency
    //      webModule("my.war", "/")  // won't deploy as my.war isn't deploy dependency
            securityRole "admin"
            securityRole "superadmin"
            withXml { provider -> // add a custom node to the XML
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. tests/integration/ambient/main_test.go

    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    
    	// used to validate telemetry in-cluster
    	prom prometheus.Instance
    )
    
    type EchoDeployments struct {
    	// Namespace echo apps will be deployed
    	Namespace         namespace.Instance
    	ExternalNamespace namespace.Instance
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/test/framework/components/jwt/kube.go

    	start := time.Now()
    	scopes.Framework.Info("=== BEGIN: Deploy JWT server ===")
    	defer func() {
    		if err != nil {
    			scopes.Framework.Error("=== FAILED: Deploy JWT server ===")
    			scopes.Framework.Error(err)
    		} else {
    			scopes.Framework.Infof("=== SUCCEEDED: Deploy JWT server in %v ===", time.Since(start))
    		}
    	}()
    
    	// Create the namespace, if unspecified.
    	if ns == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 22 23:45:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/developingPlugins/conventionOverConfiguration/groovy/buildSrc/src/main/java/org/myorg/ServerPlugin.java

            ServerExtension extension = project.getExtensions().create("server", ServerExtension.class);
            extension.getUrl().convention("https://www.myorg.com/server");
            Deploy deployTask = project.getTasks().create("deploy", Deploy.class);
            deployTask.getUrl().set(extension.getUrl());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 504 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/conventionOverConfiguration/kotlin/buildSrc/src/main/java/org/myorg/ServerPlugin.java

            ServerExtension extension = project.getExtensions().create("server", ServerExtension.class);
            extension.getUrl().convention("https://www.myorg.com/server");
            Deploy deployTask = project.getTasks().create("deploy", Deploy.class);
            deployTask.getUrl().set(extension.getUrl());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 504 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/ear/build.gradle.kts

    //      libraryDirectory = "APP-INF/lib"  // not needed, above libDirName setting does this
    //      module("my.jar", "java")  // won't deploy as my.jar isn't deploy dependency
    //      webModule("my.war", "/")  // won't deploy as my.war isn't deploy dependency
            securityRole("admin")
            securityRole("superadmin")
            withXml { // add a custom node to the XML
                asElement().apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/BomLifecycleMappingProvider.java

        private static final String[] BINDINGS = {
            "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: bom
    
        @Inject
        public BomLifecycleMappingProvider() {
            super(BINDINGS);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 10:53:44 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/providers/packaging/WarLifecycleMappingProvider.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: war
    
        @Inject
        public WarLifecycleMappingProvider() {
            super(BINDINGS);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppWithVarsWtpComponent.xml

    <project-modules id="moduleCoreId" project-version="1.5.0">
    	<wb-module deploy-name="webAppWithVars">
    		<property name="context-root" value="webAppWithVars"/>
    		<wb-resource deploy-path="/WEB-INF/classes" source-path="src/main/java"/>
    	</wb-module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 268 bytes
    - Viewed (0)
  10. docs/en/data/external_links.yml

    Articles: English: - author: Stephen Siegert - Neon link: https://neon.tech/blog/deploy-a-serverless-fastapi-app-with-neon-postgres-and-aws-app-runner-at-any-scale title: Deploy a Serverless FastAPI App with Neon Postgres and AWS App Runner at any scale - author: Kurtis Pykes - NVIDIA link: https://developer.nvidia.com/blog/building-a-machine-learning-microservice-with-fastapi/ title: Building a Machine Learning Microservice with FastAPI - author: Ravgeet Dhillon - Twilio link: https://www.tw...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top