Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 506 for Configure (0.1 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/DefaultEncryptInvoker.java

                            .writer()
                            .println("Tool purpose is to configure password management on developer workstations.");
                    context.terminal
                            .writer()
                            .println(
                                    "Note: Generated configuration can be moved/copied to headless environments, if configured as such.");
                    return BAD_OPERATION;
                }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
         * local repository manager needs to be configured to make session be able to create session instance.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. docs/integrations/veeam/README.md

    - MinIO object storage set up per <https://min.io/docs/minio/linux/index.html>
    - Veeam requires TLS connections to the object storage.  This can be configured per <https://min.io/docs/minio/linux/operations/network-encryption.html>
    - The S3 bucket, Access Key and Secret Key have to be created before and outside of Veeam.
    - Configure the minio client for the Veeam MinIO endpoint - <https://min.io/docs/minio/linux/index.html#quickstart-for-linux>
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  4. docs/tls/README.md

    # How to secure access to MinIO server with TLS [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    This guide explains how to configure MinIO Server with TLS certificates on Linux and Windows platforms.
    
    1. [Install MinIO Server](#install-minio-server)
    2. [Use an Existing Key and Certificate with MinIO](#use-an-existing-key-and-certificate-with-minio)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  5. docs/pt/docs/how-to/conditional-openapi.md

    Se você quiser proteger sua API, há várias coisas melhores que você pode fazer, por exemplo:
    
    * Certifique-se de ter modelos Pydantic bem definidos para seus corpos de solicitação e respostas.
    * Configure quaisquer permissões e funções necessárias usando dependências.
    * Nunca armazene senhas em texto simples, apenas hashes de senha.
    * Implemente e use ferramentas criptográficas bem conhecidas, como tokens JWT e Passlib, etc.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. src/main/resources/CLMessages.properties

    ECL0051=Can not parse of ({0})
    ECL0053=Bad parser configuration, because {0}
    ECL0054=SAXException occurred, because {0}
    ECL0055=Resource({0}) not found
    ECL0057=Method({1}) of class({0}) not found
    ECL0059=Can not configure property({1}) of {0}, because {2}
    ECL0061=SystemException occurred, because {0}
    ECL0063=RollbackException occurred, because {0}
    ECL0064=Constructor({1}) of class({0}) not found
    ECL0065=Property({1}) of class({0}) not found
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                logging(cliRequest);
                informativeCommands(cliRequest);
                version(cliRequest);
                localContainer = container(cliRequest);
                commands(cliRequest);
                configure(cliRequest);
                toolchains(cliRequest);
                populateRequest(cliRequest);
                encryption(cliRequest);
                return execute(cliRequest);
            } catch (ExitException e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  8. samples/slack/src/main/java/okhttp3/slack/SlackApi.java

     * instance of this class may operate without a user, or on behalf of many users. Use the Slack API
     * dashboard to create a client ID and secret for this application.
     *
     * <p>You must configure your Slack API OAuth and Permissions page with a localhost URL like {@code
     * http://localhost:53203/oauth/}, passing the same port to this class’ constructor.
     */
    public final class SlackApi {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Jul 06 19:30:55 UTC 2018
    - 4.4K bytes
    - Viewed (0)
  9. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

        // May fail with ProviderException with root cause like
        // sun.security.pkcs11.wrapper.PKCS11Exception: CKR_SLOT_ID_INVALID
        val pkcs11 = Security.getProvider("SunPKCS11").configure(config)
        Security.addProvider(pkcs11)
    
        val callbackHandler = ConsoleCallbackHandler
    
        val builderList: List<KeyStore.Builder> =
          listOf(
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

    /**
     * Represents a toolchain in the Maven build system.
     *
     * <p>A toolchain is a set of tools that can be used to build a project.
     * This interface allows users to define and configure various toolchains
     * that can be utilized by Maven during the build process. Toolchains can
     * include compilers, interpreters, and other tools that are necessary
     * for building a project in a specific environment.</p>
     *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 21:13:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top