Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 459 for deployen (0.04 seconds)

  1. impl/maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.pom

          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
          <version>4.13.1</version>
          <scope>test</scope>
        </dependency>
      </dependencies>
      <distributionManagement>
        <status>deployed</status>
      </distributionManagement>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 602 bytes
    - Click Count (0)
  2. docs/config/README.md

    ## Configuration Directory
    
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 18.1K bytes
    - Click Count (1)
  3. impl/maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.SessionData;
    import org.eclipse.aether.artifact.Artifact;
    import org.eclipse.aether.artifact.DefaultArtifact;
    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.installation.InstallRequest;
    import org.junit.jupiter.api.Test;
    import org.mockito.Mockito;
    import org.xmlunit.builder.DiffBuilder;
    import org.xmlunit.diff.Diff;
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Nov 06 18:32:25 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  4. docs/es/docs/deployment/index.md

    # Despliegue { #deployment }
    
    Desplegar una aplicación **FastAPI** es relativamente fácil.
    
    ## Qué Significa Despliegue { #what-does-deployment-mean }
    
    **Desplegar** una aplicación significa realizar los pasos necesarios para hacerla **disponible para los usuarios**.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 1.7K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Include security options in the container created event ([#31557](https://github.com/kubernetes/kubernetes/pull/31557), [@timstclair](https://github.com/timstclair))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Click Count (0)
  6. docs/en/docs/deployment/https.md

    <img src="/img/deployment/https/https04.drawio.svg">
    
    ### Decrypt the Request { #decrypt-the-request }
    
    The TLS Termination Proxy would use the encryption agreed to **decrypt the request**, and would transmit the **plain (decrypted) HTTP request** to the process running the application (for example a process with Uvicorn running the FastAPI application).
    
    <img src="/img/deployment/https/https05.drawio.svg">
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Aug 31 19:34:08 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Include security options in the container created event ([#31557](https://github.com/kubernetes/kubernetes/pull/31557), [@timstclair](https://github.com/timstclair))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Click Count (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/deployer/ArtifactDeploymentException.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.deployer;
    
    /**
     */
    @Deprecated
    public class ArtifactDeploymentException extends Exception {
        public ArtifactDeploymentException(String message) {
            super(message);
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.2K bytes
    - Click Count (0)
  9. docs/es/docs/deployment/https.md

    <img src="/img/deployment/https/https05.drawio.svg">
    
    ### Response HTTP { #http-response }
    
    La aplicación procesaría el request y enviaría un **response HTTP simple (sin encriptar)** al TLS Termination Proxy.
    
    <img src="/img/deployment/https/https06.drawio.svg">
    
    ### Response HTTPS { #https-response }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  10. internal/config/subnet/subnet.go

    )
    
    // Upload given file content (payload) to specified URL
    func (c Config) Upload(reqURL string, filename string, payload []byte) (string, error) {
    	if !c.Registered() {
    		return "", errors.New("Deployment is not registered with SUBNET. Please register the deployment via 'mc license register ALIAS'")
    	}
    
    	var body bytes.Buffer
    	writer := multipart.NewWriter(&body)
    	part, e := writer.CreateFormFile("file", filename)
    	if e != nil {
    		return "", e
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 2.9K bytes
    - Click Count (0)
Back to Top