Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 925 for Programs (0.09 sec)

  1. docs/recipes.md

    Here we `POST` a request body as a stream. The content of this request body is being generated as it's being written. This example streams directly into the [Okio](https://github.com/square/okio) buffered sink. Your programs may prefer an `OutputStream`, which you can get from `BufferedSink.outputStream()`.
    
    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
          fun run() {
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  2. CREDITS

    an absolute waiver of all civil liability in connection with the
    Program, unless a warranty or assumption of liability accompanies a
    copy of the Program in return for a fee.
    
                         END OF TERMS AND CONDITIONS
    
                How to Apply These Terms to Your New Programs
    
      If you develop a new program, and you want it to be of the greatest
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 26 15:03:08 UTC 2024
    - 1.6M bytes
    - Viewed (0)
  3. doc/asm.html

    <p>
    For garbage collection to run correctly, the runtime must know the
    location of pointers in all global data and in most stack frames.
    The Go compiler emits this information when compiling Go source files,
    but assembly programs must define it explicitly.
    </p>
    
    <p>
    A data symbol marked with the <code>NOPTR</code> flag (see above)
    is treated as containing no pointers to runtime-allocated data.
    A data symbol with the <code>RODATA</code> flag
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    types declared in the program at hand, but all possible types in all possible programs, and
    hence is infinite.
    Similarly, given the set of all non-interface types that implement a particular method, the
    intersection of the method sets of those types will contain exactly that method, even if all
    types in the program at hand always pair that method with another method.
    </p>
    
    <p>
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    At that point, the program is terminated and the error
    condition is reported, including the value of the argument to <code>panic</code>.
    This termination sequence is called <i>panicking</i>.
    </p>
    
    <pre>
    panic(42)
    panic("unreachable")
    panic(Error("cannot parse"))
    </pre>
    
    <p>
    The <code>recover</code> function allows a program to manage behavior
    of a panicking goroutine.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  6. RELEASE.md

        1.  To switch tf.keras to use Keras 2 (tf-keras), set the environment
            variable TF_USE_LEGACY_KERAS=1 directly or in your python program by
            import os;os.environ["TF_USE_LEGACY_KERAS"]=1. Please note that this
            will set it for all packages in your Python runtime program
    
    *   1.  Change import of keras from tensorflow as follows
    *   import tensorflow.keras as keras and import keras to import tf_keras as
        keras
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  7. docs/pt/docs/environment-variables.md

    Isso significa que o sistema deve procurar programas nos diretórios:
    
    * `/usr/local/bin`
    * `/usr/bin`
    * `/bin`
    * `/usr/sbin`
    * `/sbin`
    
    ////
    
    //// tab | Windows
    
    ```plaintext
    C:\Program Files\Python312\Scripts;C:\Program Files\Python312;C:\Windows\System32
    ```
    
    Isso significa que o sistema deve procurar programas nos diretórios:
    
    * `C:\Program Files\Python312\Scripts`
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:36:42 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. docs/pt/docs/virtual-environments.md

    Um `requirements.txt` com alguns pacotes poderia se parecer com:
    
    ```requirements.txt
    fastapi[standard]==0.113.0
    pydantic==2.8.0
    ```
    
    ///
    
    ## Execute seu programa
    
    Depois de ativar o ambiente virtual, você pode executar seu programa, e ele usará o Python dentro do seu ambiente virtual com os pacotes que você instalou lá.
    
    <div class="termy">
    
    ```console
    $ python main.py
    
    Hello World
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 10 10:37:13 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  9. docs/pt/docs/deployment/manually.md

    ## Máquina Servidora e Programa Servidor
    
    Existe um pequeno detalhe sobre estes nomes para se manter em mente. 💡
    
    A palavra "**servidor**" é comumente usada para se referir tanto ao computador remoto/nuvem (a máquina física ou virtual) quanto ao programa que está sendo executado nessa máquina (por exemplo, Uvicorn).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 20 11:10:02 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/settings.md

    Você também pode criar uma variável de ambiente específica para uma invocação de um programa, que é acessível somente para esse programa, e somente enquanto ele estiver executando.
    
    Para fazer isso, crie a variável imediatamente antes de iniciar o programa, na mesma linha:
    
    <div class="termy">
    
    ```console
    // Criando uma env var MY_NAME na mesma linha da execução do programa
    $ MY_NAME="Wade Wilson" python main.py
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top