Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 103 for juntos (0.27 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/DockerBase.java

     */
    
    package org.elasticsearch.gradle.internal;
    
    /**
     * This class models the different Docker base images that are used to build Docker distributions of Elasticsearch.
     */
    public enum DockerBase {
        CENTOS("centos:8", ""),
    
        // "latest" here is intentional, since the image name specifies "8"
        UBI("docker.elastic.co/ubi8/ubi-minimal:latest", "-ubi8"),
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  2. Vagrantfile

          deb_common config, box
          deb_docker config
        end
      end
      'centos-6'.tap do |box|
        config.vm.define box, define_opts do |config|
          config.vm.box = 'elastic/centos-6-x86_64'
          rpm_common config, box
        end
      end
      'centos-7'.tap do |box|
        config.vm.define box, define_opts do |config|
          config.vm.box = 'elastic/centos-7-x86_64'
          rpm_common config, box
          rpm_docker config
        end
      end
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
  3. ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh

    case "${VERSION}" in
    devtoolset-7)
      wget "http://vault.centos.org/centos/6/sclo/Source/rh/devtoolset-7/devtoolset-7-gcc-7.3.1-5.15.el6.src.rpm"
      rpm2cpio "devtoolset-7-gcc-7.3.1-5.15.el6.src.rpm" |cpio -idmv
      tar -xvjf "gcc-7.3.1-20180303.tar.bz2" --strip 1
      ;;
    devtoolset-9)
      wget "https://vault.centos.org/centos/7/sclo/Source/rh/devtoolset-9-gcc-9.3.1-2.2.el7.src.rpm"
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Jan 16 21:51:13 GMT 2026
    - 8K bytes
    - Click Count (0)
  4. .ci/jobs.t/elastic+elasticsearch+multijob+packaging-tests-unix.yml

        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
                - debian-10-packaging
                - debian-11-packaging
                - opensuse-15-1-packaging
                - oraclelinux-7-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  5. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix.yml

              black-list-labels:
                - '>test-mute'
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
                - debian-10-packaging
                - debian-11-packaging
                - opensuse-15-1-packaging
                - oraclelinux-7-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  6. .ci/dockerOnLinuxExclusions

    # (as is the case on centos-6, for example) then that OS will again be
    # excluded.
    debian-8
    opensuse-leap-15.1
    ol-7.7
    sles-12.3 # older version used in Vagrant image
    sles-12.5
    sles-15.1
    sles-15.2
    sles-15.3
    
    # These OSes are deprecated and filtered starting with 8.0.0, but need to be excluded
    # for PR checks
    centos-6
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 29 23:07:12 GMT 2021
    - 615 bytes
    - Click Count (0)
  7. .ci/jobs.t/elastic+elasticsearch+multijob+platform-support-unix.yml

        node: master
        scm:
          - git:
              wipe-workspace: false
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - "centos-7&&immutable"
                - "centos-8&&immutable"
                - "debian-9&&immutable"
                - "debian-10&&immutable"
                - "debian-11&&immutable"
                - "opensuse-15-1&&immutable"
                - "oraclelinux-7&&immutable"
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 1.3K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/security/oauth2-jwt.md

    Então, o invasor não poderá tentar usar essas senhas em outro sistema (como muitos usuários utilizam a mesma senha em vários lugares, isso seria perigoso).
    
    ## Instalar o `pwdlib` { #install-pwdlib }
    
    pwdlib é um excelente pacote Python para lidar com hashes de senhas.
    
    Ele suporta muitos algoritmos de hashing seguros e utilitários para trabalhar com eles.
    
    O algoritmo recomendado é o "Argon2".
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/response-model.md

    Dessa forma, você pode obter o melhor dos dois mundos: anotações de tipo com **suporte a ferramentas** e **filtragem de dados**.
    
    ## Veja na documentação { #see-it-in-the-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/debugging.md

    * "Add configuration...".
    * Selecionar "Python"
    * Executar o depurador com a opção "`Python: Current File (Integrated Terminal)`".
    
    Em seguida, ele iniciará o servidor com seu código **FastAPI**, parará em seus pontos de interrupção, etc.
    
    Veja como pode parecer:
    
    <img src="/img/tutorial/debugging/image01.png">
    
    ---
    
    Se você usar o Pycharm, você pode:
    
    * Abrir o menu "Executar".
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.6K bytes
    - Click Count (0)
Back to Top