Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 521 - 530 of 1,655 for internalId (0.46 seconds)

  1. docs/fr/docs/tutorial/bigger-applications.md

    * De même pour `app/routers/users.py`, c'est un autre sous-module : `app.routers.users`.
    * Il y a aussi un sous-répertoire `app/internal/` avec un autre fichier `__init__.py`, c'est donc un autre « sous-package Python » : `app.internal`.
    * Et le fichier `app/internal/admin.py` est un autre sous-module : `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.drawio.svg">
    
    La même structure de fichiers avec des commentaires :
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/bigger-applications.md

    * Lo mismo con `app/routers/users.py`, es otro submódulo: `app.routers.users`.
    * También hay un subdirectorio `app/internal/` con otro archivo `__init__.py`, por lo que es otro "subpaquete de Python": `app.internal`.
    * Y el archivo `app/internal/admin.py` es otro submódulo: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.drawio.svg">
    
    La misma estructura de archivos con comentarios:
    
    ```bash
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  3. docs/pt/docs/tutorial/bigger-applications.md

    * O mesmo com `app/routers/users.py`, ele é outro submódulo: `app.routers.users`.
    * Há também um subdiretório `app/internal/` com outro arquivo `__init__.py`, então ele é outro "subpacote Python": `app.internal`.
    * E o arquivo `app/internal/admin.py` é outro submódulo: `app.internal.admin`.
    
    <img src="/img/tutorial/bigger-applications/package.drawio.svg">
    
    A mesma estrutura de arquivos com comentários:
    
    ```bash
    .
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 20.3K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt

    import okhttp3.FakeRoutePlanner
    import okhttp3.OkHttpClient
    import okhttp3.Request
    import okhttp3.TestUtil.awaitGarbageCollection
    import okhttp3.internal.concurrent.TaskRunner
    import okhttp3.internal.concurrent.TaskRunner.RealBackend
    import okhttp3.internal.concurrent.withLock
    import okhttp3.internal.http2.MockHttp2Peer
    import org.junit.jupiter.api.AfterEach
    import org.junit.jupiter.api.Test
    
    class ConnectionPoolTest {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Oct 07 21:55:03 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  5. docs/en/docs/css/custom.css

    a[data-external-link]:not(:has(img)):not(.no-link-icon):not(.announce-link):hover::after {
      opacity: 0.85;
    }
    
    /* Internal links opening in new tab: same-origin links with target=_blank
       JS sets data-internal-link on links pointing to the same site origin
       Skip image links, .no-link-icon, and .announce-link */
    a[data-internal-link][target="_blank"]:not(:has(img)):not(.no-link-icon):not(.announce-link) {
      /* For right to left languages */
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:56:46 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

    import org.gradle.api.file.FileTree;
    import org.gradle.api.internal.initialization.ClassLoaderScope;
    import org.gradle.api.tasks.CacheableTask;
    import org.gradle.api.tasks.Classpath;
    import org.gradle.api.tasks.OutputDirectory;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.initialization.ClassLoaderScopeRegistry;
    import org.gradle.internal.classloader.ClasspathUtil;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sun Mar 19 17:15:23 GMT 2023
    - 3.9K bytes
    - Click Count (0)
  7. docs/SMB3_IMPLEMENTATION_PLAN.md

    **Priority: HIGH** | **Estimated Effort: 3-4 weeks**
    
    SMB3 leases replace the traditional oplock mechanism and are foundational for other features.
    
    #### 1.1 Core Lease Infrastructure
    ```
    Package: jcifs.internal.smb2.lease
    ├── Smb2LeaseBreak.java          - Lease break notification handling
    ├── Smb2LeaseContext.java        - Lease context for create requests
    ├── Smb2LeaseKey.java            - 16-byte lease key management
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 10.7K bytes
    - Click Count (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/BridgeInterceptor.kt

     *  limitations under the License.
     */
    package okhttp3.internal.http
    
    import java.io.IOException
    import okhttp3.Cookie
    import okhttp3.CookieJar
    import okhttp3.Interceptor
    import okhttp3.Response
    import okhttp3.internal.USER_AGENT
    import okhttp3.internal.toHostHeader
    import okio.GzipSource
    import okio.buffer
    
    /**
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Jan 11 12:06:21 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  9. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/AnyValue.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.tls.internal.der
    
    import okio.ByteString
    
    /**
     * A value whose type is not specified statically. Use this with [Adapters.any] which will attempt
     * to resolve a concrete type.
     */
    internal data class AnyValue(
      var tagClass: Int,
      var tag: Long,
      var constructed: Boolean = false,
      var length: Long = -1L,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 1.3K bytes
    - Click Count (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/UnreadableResponseBody.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal
    
    import okhttp3.MediaType
    import okhttp3.Response
    import okhttp3.ResponseBody
    import okio.Buffer
    import okio.Source
    import okio.Timeout
    import okio.buffer
    
    internal class UnreadableResponseBody(
      private val mediaType: MediaType?,
      private val contentLength: Long,
    ) : ResponseBody(),
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue May 27 15:19:53 GMT 2025
    - 1.7K bytes
    - Click Count (0)
Back to Top