Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 198 for Deprecation (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

            when:
            gradle.rootProject = project('rootProject')
    
            then:
            gradle.toString() == "build 'rootProject'"
        }
    
        @SuppressWarnings("deprecation")
        interface UnsupportedDescendant extends TaskExecutionListener, ProjectEvaluationListener {}
    
        def "notifies observers when a descendant of unsupported listener interface is added"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. 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)
  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