Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for Valore (0.21 sec)

  1. docs/es/docs/async.md

    Por ejemplo:
    
    * **Audio** o **procesamiento de imágenes**.
    * **Visión por computadora**: una imagen está compuesta de millones de píxeles, cada píxel tiene 3 valores / colores, procesamiento que normalmente requiere calcular algo en esos píxeles, todo al mismo tiempo.
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/networking/v1/generated.proto

      // +optional
      repeated string hosts = 1;
    
      // secretName is the name of the secret used to terminate TLS traffic on
      // port 443. Field is left optional to allow TLS routing based on SNI
      // hostname alone. If the SNI host in a listener conflicts with the "Host"
      // header field used by an IngressRule, the SNI host is used for termination
      // and value of the "Host" header is used for routing.
      // +optional
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  3. docs/pt/docs/alternatives.md

    !!! check "**FastAPI** inspirado para"
        Definir validações extras para tipos de dados usando valores "padrão" de atributos dos modelos. Isso melhora o suporte do editor, e não estava disponível no Pydantic antes.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    contributions, often because we probably won't get to them right now. If you
    decide to start on an issue, leave a comment so that other people know that
    you're working on it. If you want to help out, but not alone, use the issue
    comment thread to coordinate.
    
    ### Contribution guidelines and standards
    
    Before sending your pull request for
    [review](https://github.com/tensorflow/tensorflow/pulls),
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  5. docs/it/docs/index.md

    * Tecniche più avanzate (ma ugualmente semplici) per dichiarare **modelli JSON altamente nidificati** (grazie a Pydantic).
    * E altre funzionalità (grazie a Starlette) come:
        * **WebSockets**
        * **GraphQL**
        * test molto facili basati su `requests` e `pytest`
        * **CORS**
        * **Cookie Sessions**
        * ...e altro ancora.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 23:58:47 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  6. Makefile.core.mk

    # * Building all docker images (generally in CI). In this case we want to build everything at once, so they share work
    # * Building a single docker image (generally during dev). In this case we just want to build the single binary alone
    BUILD_ALL ?= true
    define build-linux
    .PHONY: $(TARGET_OUT_LINUX)/$(shell basename $(1))
    ifeq ($(BUILD_ALL),true)
    $(TARGET_OUT_LINUX)/$(shell basename $(1)): build-linux
    	@:
    else
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Apr 26 19:45:17 GMT 2024
    - 22.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        int hashThree = map.hash(keyThree);
        InternalEntry<Object, Object, ?> entryThree =
            segment.newEntryForTesting(keyThree, hashThree, entryTwo);
        segment.setValueForTesting(entryThree, valueThree);
    
        // alone
        assertNull(segment.removeFromChainForTesting(entryOne, entryOne));
    
        // head
        assertSame(entryOne, segment.removeFromChainForTesting(entryTwo, entryTwo));
    
        // middle
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 35.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        int hashThree = map.hash(keyThree);
        InternalEntry<Object, Object, ?> entryThree =
            segment.newEntryForTesting(keyThree, hashThree, entryTwo);
        segment.setValueForTesting(entryThree, valueThree);
    
        // alone
        assertNull(segment.removeFromChainForTesting(entryOne, entryOne));
    
        // head
        assertSame(entryOne, segment.removeFromChainForTesting(entryTwo, entryTwo));
    
        // middle
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 35.1K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/docker.md

    ```Dockerfile
    CMD ["uvicorn", "app.main:app", "--proxy-headers", "--host", "0.0.0.0", "--port", "80"]
    ```
    
    #### Docker Cache
    
    There's an important trick in this `Dockerfile`, we first copy the **file with the dependencies alone**, not the rest of the code. Let me tell you why is that.
    
    ```Dockerfile
    COPY ./requirements.txt /code/requirements.txt
    ```
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    	// for delete's we do not need to honor storage
    	// class for objects that have reduced quorum
    	// due to storage class - this only needs to be honored
    	// for Read() requests alone that we already do.
    	writeQuorum := len(disks)/2 + 1
    
    	g := errgroup.WithNErrs(len(disks))
    	for index := range disks {
    		index := index
    		g.Go(func() error {
    			if disks[index] == nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 76.9K bytes
    - Viewed (2)
Back to top