Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 212 for Deprecation (1.02 sec)

  1. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
        stop();
        join();
    
        if (uncaughtThrowable != null) {
          throw new AssertionError("Uncaught throwable in " + getName(), uncaughtThrowable);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. docs/changelogs/upgrading_to_okhttp_4.md

    OkHttp 3.x. You can use an OkHttp 4.x .jar file with applications or libraries built for OkHttp 3.x.
    
    OkHttp is **not** source-compatible for Kotlin callers, but upgrading should be automatic thanks to
    Kotlin’s powerful deprecation features. Most developers should be able to use IntelliJ’s _Code
    Cleanup_ for a safe and fast upgrade.
    
    
    Backwards-Incompatible Changes
    ------------------------------
    
    #### OkHttpClient final methods
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemAttributesDescriber.java

                    break;
                default:
                    sb.append("with the library elements '").append(name).append("'");
            }
        }
    
        @SuppressWarnings("deprecation")
        private static void describeUsage(Object usage, StringBuilder sb) {
            String str = toName(usage);
            switch (str) {
                case Usage.JAVA_API:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.Optional;
    import org.gradle.api.tasks.OutputDirectory;
    import org.gradle.api.tasks.TaskAction;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.jvm.DefaultModularitySpec;
    import org.gradle.internal.jvm.JavaModuleDetector;
    import org.gradle.jvm.application.scripts.ScriptGenerator;
    import org.gradle.util.internal.GUtil;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

                    append("<extension receiver>: ${receiver.type.render()}")
                    if (valueParameters.isNotEmpty()) append(", ")
                }
    
                @Suppress("DEPRECATION")
                (this@with as? KaCallableSymbol)?.getDispatchReceiverType()?.let { dispatchReceiverType ->
                    append("<dispatch receiver>: ${dispatchReceiverType.render()}")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

      // may put a thread into an uninterruptible operation intentionally, so there is no other way to
      // clean up these threads.
      @SuppressWarnings("deprecation")
      @Override
      public void tearDown() throws Exception {
        stop();
        join();
    
        if (uncaughtThrowable != null) {
          throw new AssertionError("Uncaught throwable in " + getName(), uncaughtThrowable);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import org.gradle.internal.deprecation.Documentation
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.test.fixtures.keystore.TestKeyStore
    
    @IntegrationTestTimeout(120)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/DefaultGradleRunner.java

                        String rootTmpDir = SystemProperties.getInstance().getWorkerTmpDir();
                        if (rootTmpDir == null) {
                            @SuppressWarnings("deprecation")
                            String javaIoTmpDir = SystemProperties.getInstance().getJavaIoTmpDir();
                            rootTmpDir = javaIoTmpDir;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

    import org.gradle.util.internal.TextUtil;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Collection;
    import java.util.function.Supplier;
    
    import static org.gradle.internal.deprecation.Documentation.userManual;
    
    public enum ValidationActions implements ValidationAction {
        NO_OP("file collection") {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

          }
    
        fun build(): ConnectionSpec =
          ConnectionSpec(
            tls,
            supportsTlsExtensions,
            cipherSuites,
            tlsVersions,
          )
      }
    
      @Suppress("DEPRECATION")
      companion object {
        // Most secure but generally supported list.
        private val RESTRICTED_CIPHER_SUITES =
          listOf(
            // TLSv1.3.
            CipherSuite.TLS_AES_128_GCM_SHA256,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top