Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 738 for extensive (0.07 seconds)

  1. build-logic/buildquality/build.gradle.kts

        compileOnly(buildLibs.kotlinCompilerEmbeddable) {
            because("Required by IncubatingApiReportTask")
        }
        implementation(buildLibs.develocityPlugin) {
            because("Arch-test plugin configures the PTS extension")
        }
    
        testImplementation(testLibs.junit5JupiterEngine)
        testImplementation(buildLibs.commonsLang3)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 09:06:26 GMT 2026
    - 1.2K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java

    import static org.mockito.Mockito.when;
    
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.extension.ExtendWith;
    import org.junit.jupiter.params.ParameterizedTest;
    import org.junit.jupiter.params.provider.Arguments;
    import org.junit.jupiter.params.provider.MethodSource;
    import org.mockito.Mock;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8.1K bytes
    - Click Count (0)
  3. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            srcRoot: File,
            content: String,
            exceptions: List<String>,
        ): Boolean {
            srcRoot.walkTopDown().forEach { file ->
                if (file.extension == "groovy" || file.extension == "java") {
                    val originalText = file.readText()
                    val text =
                        originalText
                            .lineSequence()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 16 01:27:05 GMT 2025
    - 14.6K bytes
    - Click Count (0)
  4. docs/ja/docs/editor-support.md

    # エディタ対応 { #editor-support }
    
    公式の[FastAPI Extension](https://marketplace.visualstudio.com/items?itemName=FastAPILabs.fastapi-vscode)は、*path operation* の検出・ナビゲーションに加え、FastAPI Cloud へのデプロイやライブログストリーミングなど、FastAPI の開発ワークフローを強化します。
    
    拡張機能の詳細は、[GitHub リポジトリ](https://github.com/fastapi/fastapi-vscode)の README を参照してください。
    
    ## セットアップとインストール { #setup-and-installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:55:22 GMT 2026
    - 3K bytes
    - Click Count (0)
  5. okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/DeferredSocketAdapter.kt

    import okhttp3.Protocol
    
    /**
     * Deferred implementation of SocketAdapter that works by observing the socket
     * and initializing on first use.
     *
     * We use this because eager classpath checks cause confusion and excessive logging in Android,
     * and we can't rely on classnames after proguard, so are probably best served by falling through
     * to a situation of trying our least likely noisiest options.
     */
    class DeferredSocketAdapter(
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  6. compat/maven-resolver-provider/src/site/apt/dependency-types.apt

    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    || type                 || classifier   || extension || language || path types           || includesDependencies ||
    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 5.7K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesExtension.java

    import org.gradle.api.Action;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.ListProperty;
    
    import javax.inject.Inject;
    
    /**
     * Custom extension to configure the {@link CopyRestApiTask}
     */
    public class RestResourcesExtension {
    
        private final RestResourcesSpec restApi;
        private final XpackRestResourcesSpec restTests;
    
        @Inject
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  8. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                return getNotifierKey(notifier);
            }
        }
    
        /**
         * KeyComputer for Extension
         */
        private class ExtensionKeyComputer implements KeyComputer<Extension> {
            @Override
            public Object key(Extension extension) {
                return getExtensionKey(extension);
            }
        }
    
        /**
         * KeyComputer for Resource
         */
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt

          try {
            toMediaType()
          } catch (_: IllegalArgumentException) {
            null
          }
    
        @JvmName("-deprecated_get")
        @Deprecated(
          message = "moved to extension function",
          replaceWith =
            ReplaceWith(
              expression = "mediaType.toMediaType()",
              imports = ["okhttp3.MediaType.Companion.toMediaType"],
            ),
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  10. docs/es/docs/deployment/https.md

        * Sin embargo, hay una **solución** para esto.
    * Hay una **extensión** para el protocolo **TLS** (el que maneja la encriptación a nivel de TCP, antes de HTTP) llamada **[<abbr title="Server Name Indication - Indicación del nombre del servidor">SNI</abbr>](https://en.wikipedia.org/wiki/Server_Name_Indication)**.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 15.1K bytes
    - Click Count (0)
Back to Top