Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,142 for Becker (0.04 sec)

  1. docs/distributed/iam-import-with-missing-entities.sh

    pkill minio
    docker rm -f $(docker ps -aq)
    rm -rf /tmp/ldap{1..4}
    
    # Deploy the LDAP config witg missing groups/DN
    echo "Copying docs/distributed/samples/bootstrap-partial.ldif => minio-iam-testing/ldap/50-bootstrap.ldif"
    cp docs/distributed/samples/bootstrap-partial.ldif minio-iam-testing/ldap/50-bootstrap.ldif || exit 1
    cd ./minio-iam-testing
    make docker-images
    make docker-run
    cd -
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/CloserTest.java

    import com.google.common.collect.Lists;
    import java.io.Closeable;
    import java.io.IOException;
    import java.util.List;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Tests for {@link Closer}.
     *
     * @author Colin Decker
     */
    public class CloserTest extends TestCase {
    
      private TestSuppressor suppressor;
    
      @Override
      protected void setUp() throws Exception {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. LICENSES/third_party/forked/libcontainer/NOTICE

    runc
    
    Copyright 2012-2015 Docker, Inc.
    
    This product includes software developed at Docker, Inc. (http://www.docker.com).
    
    The following is courtesy of our legal counsel:
    
    
    Use and transfer of Docker may be subject to certain restrictions by the
    United States and other governments.  
    It is your responsibility to ensure that your use and/or transfer does not
    violate applicable laws. 
    
    For more information, please see http://www.bis.doc.gov
    
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Tue Oct 22 13:56:22 UTC 2024
    - 518 bytes
    - Viewed (0)
  4. docs/tr/docs/project-generation.md

    ### Full Stack FastAPI PostgreSQL - Özellikler
    
    * Full **Docker** entegrasyonu (Docker based).
    * Docker Swarm Mode ile deployment.
    * **Docker Compose** entegrasyonu ve lokal geliştirme için optimizasyon.
    * Uvicorn ve Gunicorn ile **Production ready** Python web server'ı.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. go.mod

    	github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect
    	github.com/cyphar/filepath-securejoin v0.3.1 // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
    	github.com/docker/distribution v2.8.3+incompatible // indirect
    	github.com/docker/docker-credential-helpers v0.8.2 // indirect
    	github.com/emicklei/go-restful/v3 v3.12.0 // indirect
    	github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Nov 06 06:23:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. .github/dependabot.yml

        groups:
          github-actions:
            patterns:
              - "*"
    
      - package-ecosystem: docker
        directory: /ci/devinfra/docker_windows
        schedule:
          interval: monthly
        ignore:
          - dependency-name: "*"
            update-types: ["version-update:semver-major", "version-update:semver-minor"]
    
      - package-ecosystem: docker
        directory: /ci/official/containers/linux_arm64
        schedule:
          interval: monthly
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jun 26 14:32:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. Dockerfile

    FROM minio/minio:latest
    
    RUN chmod -R 777 /usr/bin
    
    COPY ./minio /usr/bin/minio
    COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh
    
    ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"]
    
    VOLUME ["/data"]
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Sep 15 23:10:23 UTC 2024
    - 229 bytes
    - Viewed (0)
  8. docs_src/dependencies/tutorial011_an.py

        def __call__(self, q: str = ""):
            if q:
                return self.fixed_content in q
            return False
    
    
    checker = FixedContentQueryChecker("bar")
    
    
    @app.get("/query-checker/")
    async def read_query_check(fixed_content_included: Annotated[bool, Depends(checker)]):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 554 bytes
    - Viewed (0)
  9. docs/pt/docs/advanced/advanced-dependencies.md

    ## Utilize a instância como dependência
    
    Então, nós podemos utilizar este `checker` em um `Depends(checker)`, no lugar de `Depends(FixedContentQueryChecker)`, porque a dependência é a instância, `checker`, e não a própria classe.
    
    E quando a dependência for resolvida, o **FastAPI** chamará este `checker` como:
    
    ```Python
    checker(q="somequery")
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. docs/pt/docs/project-generation.md

    ### Full Stack FastAPI PostgreSQL - Recursos
    
    * Integração completa **Docker**.
    * Modo de implantação Docker Swarm.
    * Integração e otimização **Docker Compose** para desenvolvimento local.
    * **Pronto para Produção** com servidor _web_ usando Uvicorn e Gunicorn.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top