Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 764 for deprecated (0.34 sec)

  1. tests/test_regex_deprecated_params.py

    Sebastián Ramírez <******@****.***> 1713469257 -0500
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  2. tests/test_regex_deprecated_body.py

    Sebastián Ramírez <******@****.***> 1713469257 -0500
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  3. tests/test_deprecated_openapi_prefix.py

    Sebastián Ramírez <******@****.***> 1688149516 +0200
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Address.kt

      val connectionSpecs: List<ConnectionSpec> =
        connectionSpecs.toImmutableList()
    
      @JvmName("-deprecated_url")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "url"),
        level = DeprecationLevel.ERROR,
      )
      fun url(): HttpUrl = url
    
      @JvmName("-deprecated_dns")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "dns"),
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedCoreExpressionValidator.java

    import org.codehaus.plexus.configuration.PlexusConfiguration;
    
    /**
     * Print warnings if deprecated core parameters are used in mojo.
     *
     * @since 3.9.1
     */
    @Singleton
    @Named
    class DeprecatedCoreExpressionValidator extends AbstractMavenPluginParametersValidator {
        private static final HashMap<String, String> DEPRECATED_CORE_PARAMETERS;
    
        private static final String ARTIFACT_REPOSITORY_REASON =
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri May 26 16:22:12 GMT 2023
    - 3.5K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolver.java

    @Deprecated
    public interface ArtifactResolver {
    
        ArtifactResolutionResult resolve(ArtifactResolutionRequest request);
    
        // The rest is deprecated
        // USED BY MAVEN ASSEMBLY PLUGIN 2.2-beta-2
        @Deprecated
        String ROLE = ArtifactResolver.class.getName();
    
        // USED BY SUREFIRE, DEPENDENCY PLUGIN
        @Deprecated
        ArtifactResolutionResult resolveTransitively(
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  7. okhttp/api/okhttp.api

    	public final fun -deprecated_immutable ()Z
    	public final fun -deprecated_maxAgeSeconds ()I
    	public final fun -deprecated_maxStaleSeconds ()I
    	public final fun -deprecated_minFreshSeconds ()I
    	public final fun -deprecated_mustRevalidate ()Z
    	public final fun -deprecated_noCache ()Z
    	public final fun -deprecated_noStore ()Z
    	public final fun -deprecated_noTransform ()Z
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 70.2K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Handshake.kt

          listOf()
        }
      }
    
      @JvmName("-deprecated_tlsVersion")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "tlsVersion"),
        level = DeprecationLevel.ERROR,
      )
      fun tlsVersion(): TlsVersion = tlsVersion
    
      @JvmName("-deprecated_cipherSuite")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "cipherSuite"),
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

      internal var headerValue: String?,
    ) {
      @JvmName("-deprecated_noCache")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "noCache"),
        level = DeprecationLevel.ERROR,
      )
      fun noCache(): Boolean = noCache
    
      @JvmName("-deprecated_noStore")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "noStore"),
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 15 13:41:01 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            return null;
        }
    
        @Deprecated
        public EventDispatcher getEventDispatcher() {
            return null;
        }
    
        @Deprecated
        public boolean isUsingPOMsFromFilesystem() {
            return request.isProjectPresent();
        }
    
        /**
         * @deprecated Use either {@link #getUserProperties()} or {@link #getSystemProperties()}.
         */
        @Deprecated
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
Back to top