Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1061 - 1070 of 1,312 for reads (0.03 seconds)

  1. README.md

      </a>
      <a href="https://docs.gradle.org/current/userguide/userguide.html">
        <img src="https://img.shields.io/badge/Docs-Gradle%20User%20Guide-blueviolet?style=flat&logo=read-the-docs" alt="Gradle Documentation">
      </a>
    </div>
    
    
    ## 🐘 **Gradle Build Tool** 
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 18:58:41 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

     * MSIE clients using NTLM SSP. This is similar to {@code Authentication:
     * BASIC} but weakly encrypted and without requiring the user to re-supply
     * authentication credentials.
     * <p>
     * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> for complete details.
     */
    
    /**
     * An HTTP servlet filter that provides NTLM authentication support for SMB1 protocol.
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  3. src/main/java/jcifs/smb/compression/DefaultCompressionService.java

                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                byte[] buffer = new byte[1024];
                int bytesRead;
    
                while ((bytesRead = inflaterStream.read(buffer)) != -1) {
                    baos.write(buffer, 0, bytesRead);
                }
    
                inflaterStream.close();
                return baos.toByteArray();
            } catch (IOException e) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  4. docs/ru/docs/advanced/events.md

    ΠœΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ контСкста Π² Python β€” это Ρ‚ΠΎ, Ρ‡Ρ‚ΠΎ ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ Π² ΠΎΠΏΠ΅Ρ€Π°Ρ‚ΠΎΡ€Π΅ `with`. НапримСр, `open()` ΠΌΠΎΠΆΠ½ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΠΎΠ²Π°Ρ‚ΡŒ ΠΊΠ°ΠΊ ΠΌΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ контСкста:
    
    ```Python
    with open("file.txt") as file:
        file.read()
    ```
    
    Π’ послСдних вСрсиях Python Π΅ΡΡ‚ΡŒ Ρ‚Π°ΠΊΠΆΠ΅ асинхронный ΠΌΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ контСкста. Π•Π³ΠΎ ΠΈΡΠΏΠΎΠ»ΡŒΠ·ΡƒΡŽΡ‚ с `async with`:
    
    ```Python
    async with lifespan(app):
        await do_stuff()
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 12.6K bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

    import static org.apache.maven.api.Lifecycle.AT;
    import static org.apache.maven.api.Lifecycle.BEFORE;
    import static org.apache.maven.api.Lifecycle.Phase.PACKAGE;
    import static org.apache.maven.api.Lifecycle.Phase.READY;
    import static org.apache.maven.lifecycle.internal.concurrent.BuildStep.CREATED;
    import static org.apache.maven.lifecycle.internal.concurrent.BuildStep.EXECUTED;
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

      private var handshake: Handshake? = null
      private var protocol: Protocol? = null
      private lateinit var socket: BufferedSocket
      private var connection: RealConnection? = null
    
      /** True if this connection is ready for use, including TCP, tunnels, and TLS. */
      override val isReady: Boolean
        get() = protocol != null
    
      private fun copy(
        attempt: Int = this.attempt,
        tunnelRequest: Request? = this.tunnelRequest,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 19.3K bytes
    - Click Count (2)
  7. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionResolver.java

                            try (InputStream in = Files.newInputStream(metadata.getPath())) {
                                versioning = new Versioning(
                                        new MetadataStaxReader().read(in, false).getVersioning());
    
                                /*
                                NOTE: Users occasionally misuse the id "local" for remote repos which screws up the metadata
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jan 10 08:42:00 GMT 2025
    - 20.2K bytes
    - Click Count (0)
  8. docs/de/docs/advanced/settings.md

    ### Die `.env`-Datei { #the-env-file }
    
    Sie kΓΆnnten eine `.env`-Datei haben, mit:
    
    ```bash
    ADMIN_EMAIL="******@****.***"
    APP_NAME="ChimichangApp"
    ```
    
    ### Einstellungen aus `.env` lesen { #read-settings-from-env }
    
    Und dann aktualisieren Sie Ihre `config.py` mit:
    
    {* ../../docs_src/settings/app03_an_py310/config.py hl[9] *}
    
    /// tip | Tipp
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  9. docs/ja/docs/advanced/path-operation-advanced-configuration.md

    {
        "openapi": "3.1.0",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "summary": "Read Items",
                    "operationId": "read_items_items__get",
                    "responses": {
                        "200": {
                            "description": "Successful Response",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  10. docs/uk/docs/tutorial/dependencies/dependencies-with-yield.md

    Наприклад, [ΠΌΠΎΠΆΠ½Π° використати `with`, Ρ‰ΠΎΠ± ΠΏΡ€ΠΎΡ‡ΠΈΡ‚Π°Ρ‚ΠΈ Ρ„Π°ΠΉΠ»](https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files):
    
    ```Python
    with open("./somefile.txt") as f:
        contents = f.read()
        print(contents)
    ```
    
    ΠŸΡ–Π΄ ΠΊΠ°ΠΏΠΎΡ‚ΠΎΠΌ `open("./somefile.txt")` ΡΡ‚Π²ΠΎΡ€ΡŽΡ” ΠΎΠ±'Ρ”ΠΊΡ‚, який Π½Π°Π·ΠΈΠ²Π°Ρ”Ρ‚ΡŒΡΡ Β«ΠœΠ΅Π½Π΅Π΄ΠΆΠ΅Ρ€ контСксту».
    
    Коли Π±Π»ΠΎΠΊ `with` Π·Π°Π²Π΅Ρ€ΡˆΡƒΡ”Ρ‚ΡŒΡΡ, Π²Ρ–Π½ Π³Π°Ρ€Π°Π½Ρ‚ΡƒΡ” закриття Ρ„Π°ΠΉΠ»Ρƒ, Π½Π°Π²Ρ–Ρ‚ΡŒ якщо Π±ΡƒΠ»ΠΈ винятки.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 18.4K bytes
    - Click Count (0)
Back to Top