- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 974 for deprecate (0.14 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/io/xpp3/MavenXpp3WriterEx.java
import java.io.IOException; import java.io.OutputStream; import java.io.Writer; import org.apache.maven.model.InputLocation; import org.apache.maven.model.Model; /** * @deprecated Use MavenStaxWriter instead */ @Deprecated public class MavenXpp3WriterEx extends MavenXpp3Writer { // -----------/ // - Methods -/ // -----------/ public MavenXpp3WriterEx() { super(true); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
public static final String MAVEN_RESOLVER_TRANSPORT_JDK = "jdk"; /** * This name for Apache HttpClient transport is deprecated. * * @deprecated Renamed to {@link #MAVEN_RESOLVER_TRANSPORT_APACHE} */ @Deprecated private static final String MAVEN_RESOLVER_TRANSPORT_NATIVE = "native"; public static final String MAVEN_RESOLVER_TRANSPORT_AUTO = "auto";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecrypter.java
import org.codehaus.plexus.components.secdispatcher.SecDispatcher; import org.codehaus.plexus.components.secdispatcher.SecDispatcherException; /** * Decrypts passwords in the settings. * * @deprecated since 4.0.0 */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultSettingsDecrypter implements SettingsDecrypter { private final SecDispatcher securityDispatcher; @Inject
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.8K bytes - Viewed (0) -
fastapi/openapi/utils.py
message += f" at {file_name}" warnings.warn(message, stacklevel=1) operation_ids.add(operation_id) operation["operationId"] = operation_id if route.deprecated: operation["deprecated"] = route.deprecated return operation def get_openapi_path( *, route: routing.APIRoute, operation_ids: Set[str], schema_generator: GenerateJsonSchema,
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Sep 17 18:54:10 UTC 2024 - 22.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/ArtifactDescriptorUtils.java
* of the public API. In particular, this class can be changed or deleted without prior notice. * * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Deprecated(since = "4.0.0") public class ArtifactDescriptorUtils { public static Artifact toPomArtifact(Artifact artifact) { Artifact pomArtifact = artifact;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/PropertyProfileActivator.java
/** * Determines profile activation based on the existence or value of some execution property. * * @see ActivationProperty * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Named("property") @Singleton @Deprecated(since = "4.0.0") public class PropertyProfileActivator implements ProfileActivator { @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/DefaultToolchainsReader.java
import org.apache.maven.toolchain.v4.MavenToolchainsStaxReader; /** * Handles deserialization of toolchains from the default textual format. * * @since 3.3.0 * @deprecated since 4.0.0, use {@link MavenToolchainsStaxReader} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultToolchainsReader implements ToolchainsReader { @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingBlockingDeque.java
* methods that they depend on are thread-safe. * * @author Emily Soldal * @since 14.0 * @deprecated This class has moved to {@code com.google.common.util.concurrent}. Please use {@link * com.google.common.util.concurrent.ForwardingBlockingDeque} instead. */ @Deprecated @J2ktIncompatible @GwtIncompatible @ElementTypesAreNonnullByDefault
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 13 14:30:51 UTC 2023 - 4.4K bytes - Viewed (0) -
compat/maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java
import org.apache.maven.settings.v4.SettingsStaxReader; import org.codehaus.plexus.util.xml.pull.XmlPullParserException; /** * @deprecated Maven 3 compatibility - please use {@code org.apache.maven.api.services.xml.SettingsXmlFactory} from {@code maven-api-core} * or {@link SettingsStaxReader} */ @Deprecated public class SettingsXpp3Reader { private final SettingsStaxReader delegate; public SettingsXpp3Reader() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/SystemStreamLog.java
*/ package org.apache.maven.plugin.logging; import java.io.PrintWriter; import java.io.StringWriter; /** * Logger with "standard" output and error output stream. * * * @deprecated Use SLF4J directly */ @Deprecated public class SystemStreamLog implements Log { /** * @see org.apache.maven.plugin.logging.Log#debug(java.lang.CharSequence) */ public void debug(CharSequence content) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0)