- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 974 for deprecate (0.11 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java
private boolean lifecyclesPrinted; public DefaultLifecycles() { this.lookup = null; this.registry = null; } /** * @deprecated Use {@link #DefaultLifecycles(LifecycleRegistry,Lookup)} instead */ @Deprecated public DefaultLifecycles(Map<String, Lifecycle> lifecycles, org.codehaus.plexus.logging.Logger logger) { this.customLifecycles = lifecycles; this.lookup = null;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingRequest.java
import java.io.File; import java.util.Properties; /** * Collects settings that control the building of effective settings. * * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.SettingsBuilder} instead */ @Deprecated(since = "4.0.0") public interface SettingsBuildingRequest { /** * Gets the global settings file. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidator.java
* under the License. */ package org.apache.maven.project.validation; import org.apache.maven.model.Model; /** * Checks the model for missing or invalid values. * */ @Deprecated public interface ModelValidator { String ROLE = ModelValidator.class.getName(); ModelValidationResult validate(Model model);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferListener.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.repository; /** * ArtifactTransferListener */ @Deprecated public interface ArtifactTransferListener { boolean isShowChecksumEvents(); void setShowChecksumEvents(boolean showChecksumEvents); void transferInitiated(ArtifactTransferEvent transferEvent);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
You could still see some code using it: //// tab | Python 3.10+ Pydantic v1 ```Python hl_lines="11" {!> ../../docs_src/query_params_str_validations/tutorial004_an_py310_regex.py!} ``` //// But know that this is deprecated and it should be updated to use the new parameter `pattern`. 🤓 ## Default values
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 25.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataResolutionException.java
* under the License. */ package org.apache.maven.artifact.repository.metadata; /** * Error while retrieving repository metadata from the repository. * */ @Deprecated public class RepositoryMetadataResolutionException extends Exception { public RepositoryMetadataResolutionException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.profiles.activation; /** * ProfileActivationException */ @Deprecated public class ProfileActivationException extends Exception { private static final long serialVersionUID = -90820222109103638L; public ProfileActivationException(String message, Throwable cause) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
* * @return The resolved instance of the inbound Model. This is a different instance! * * @deprecated Use {@link ModelInterpolator#interpolate(Model, File, ProjectBuilderConfiguration, boolean)} instead. */ @Deprecated public Model interpolate(Model model, Map<String, ?> context, boolean strict) throws ModelInterpolationException { Properties props = new Properties();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.5K bytes - Viewed (0) -
okhttp-sse/src/main/kotlin/okhttp3/sse/EventSources.kt
* limitations under the License. */ package okhttp3.sse import okhttp3.Call import okhttp3.OkHttpClient import okhttp3.Response import okhttp3.sse.internal.RealEventSource object EventSources { @Deprecated( message = "required for binary-compatibility!", level = DeprecationLevel.HIDDEN, ) @JvmStatic fun createFactory(client: OkHttpClient) = createFactory(client as Call.Factory) @JvmStatic
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:18:15 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeInternal.java
import jcifs.internal.Request; /** * @author mbechler * @internal */ public interface SmbTreeInternal extends SmbTree { /** * @param tf * @throws SmbException */ @Deprecated void connectLogon ( CIFSContext tf ) throws SmbException; /** * @param request * @param params * @return response message * @throws CIFSException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Apr 13 17:08:49 UTC 2020 - 1.4K bytes - Viewed (0)