- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 974 for Deprecated (0.1 sec)
-
guava-tests/test/com/google/common/math/DoubleMathTest.java
@SuppressWarnings("deprecation") // test of deprecated method public void testMean_intVarargs() { assertThat(DoubleMath.mean(11, -22, 44, -88)).isWithin(1.0e-10).of(-13.75); assertThat(DoubleMath.mean(11)).isWithin(1.0e-10).of(11.0); } @GwtIncompatible // DoubleMath.mean @SuppressWarnings("deprecation") // test of deprecated method public void testMean_longVarargs() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 27.3K bytes - Viewed (0) -
src/main/java/jcifs/https/Handler.java
* capabilities to the default HTTPS handler. This acts as a wrapper, * handling authentication and passing control to the underlying * stream handler. * * @deprecated {@link NtlmHttpURLConnection} is broken by design. */ @Deprecated public class Handler extends jcifs.http.Handler { /** * The default HTTPS port (<code>443</code>). */ public static final int DEFAULT_HTTPS_PORT = 443;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/metadata/ArtifactMetadataSource.java
import org.apache.maven.repository.legacy.metadata.MetadataResolutionRequest; /** * Provides some metadata operations, like querying the remote repository for a list of versions available for an * artifact - deprecated */ @Deprecated public interface ArtifactMetadataSource extends org.apache.maven.repository.legacy.metadata.ArtifactMetadataSource {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainsBuilder.java
* <strong>Note:</strong> This is an internal component whose interface can change without prior notice. * * @deprecated use {@link org.apache.maven.toolchain.building.ToolchainsBuilder} instead */ @Deprecated public interface ToolchainsBuilder { /** * Builds the toolchains model from the configured toolchain files. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/superpom/SuperPomProvider.java
*/ package org.apache.maven.model.superpom; import org.apache.maven.model.Model; /** * Provides the super POM that all models implicitly inherit from. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface SuperPomProvider { /** * Gets the super POM for the specified model version. The returned model is supposed to be read-only, i.e. if the
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuildingResult.java
/** * Holds the result of the merged toolchains and holds the problems during this build, if any. * * @since 3.3.0 * @deprecated since 4.0.0, use {@link org.apache.maven.api.services.ToolchainsBuilder} instead */ @Deprecated(since = "4.0.0") public class DefaultToolchainsBuildingResult implements ToolchainsBuildingResult { private PersistedToolchains effectiveToolchains;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/MethodDoc.groovy
} String getName() { return metaData.name } MethodMetaData getMetaData() { return metaData } boolean isDeprecated() { return metaData.deprecated && !referringClass.deprecated } boolean isIncubating() { return metaData.incubating || metaData.ownerClass.incubating } boolean isReplaced() { return metaData.replaced }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsAccessTokenCQ.java
setId_Terms(idList, opLambda); } @Deprecated public BsAccessTokenCQ addOrderBy_Id_Asc() { regOBA("_id"); return this; } @Deprecated public BsAccessTokenCQ addOrderBy_Id_Desc() { regOBD("_id"); return this; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 71.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java
import java.util.HashSet; import java.util.LinkedHashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Set; /** * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") class Graph { final Map<String, Set<String>> graph = new LinkedHashMap<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/io/DefaultSettingsReader.java
import org.apache.maven.settings.v4.SettingsStaxReader; /** * Handles deserialization of settings from the default textual format. * * @deprecated since 4.0.0, use {@link SettingsStaxReader} instead */ @Named @Singleton @Deprecated(since = "4.0.0") public class DefaultSettingsReader implements SettingsReader { @Override public Settings read(File input, Map<String, ?> options) throws IOException {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0)