- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 136 for Deprecations (0.26 seconds)
-
BUILDING.md
as `build-tools` to be usuable by thirdparty elasticsearch plugin authors. This is also used by other elastic teams like `elasticsearch-hadoop`. Breaking changes should therefore be avoided and an appropriate deprecation cycle should be followed. ### Stay up to date The elasticsearch build usually uses the latest Gradle GA release. We stay as close to the
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 23 07:45:59 GMT 2021 - 6.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MultimapsTest.java
@GwtCompatible @NullMarked public class MultimapsTest extends TestCase { private static final Comparator<Integer> INT_COMPARATOR = Ordering.<Integer>natural().reverse().nullsFirst(); @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method public void testUnmodifiableListMultimapShortCircuit() { ListMultimap<String, Integer> mod = ArrayListMultimap.create();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 39.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/CharMatcherTest.java
reallyTestMatchThenNoMatch(matcher.negate().precomputed(), s); reallyTestMatchThenNoMatch(matcher.precomputed().negate(), s); } // intentionally testing apply() method @SuppressWarnings({ "deprecation", "InlineMeInliner", }) private void reallyTestOneCharMatch(CharMatcher matcher, String s) { assertTrue(matcher.matches(s.charAt(0))); assertTrue(matcher.apply(s.charAt(0)));
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 32.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java
result.addAll(project.getArtifacts()); result.addAll(getAttachedArtifacts(project)); return Collections.unmodifiableCollection(result); } @Override @SuppressWarnings("deprecation") public void attachArtifact(@Nonnull Project project, @Nonnull ProducedArtifact artifact, @Nonnull Path path) { requireNonNull(project, "project cannot be null");
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Dec 17 16:17:01 GMT 2025 - 10.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/OrderingTest.java
assertEquals(0, caseInsensitiveOrdering.compare("A", "a")); assertTrue(caseInsensitiveOrdering.compare("a", "B") < 0); assertTrue(caseInsensitiveOrdering.compare("B", "a") > 0); @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method Ordering<String> orderingFromOrdering = Ordering.from(Ordering.<String>natural()); new EqualsTester()
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 43.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/OrderingTest.java
assertEquals(0, caseInsensitiveOrdering.compare("A", "a")); assertTrue(caseInsensitiveOrdering.compare("a", "B") < 0); assertTrue(caseInsensitiveOrdering.compare("B", "a") > 0); @SuppressWarnings({"deprecation", "InlineMeInliner"}) // test of a deprecated method Ordering<String> orderingFromOrdering = Ordering.from(Ordering.<String>natural()); new EqualsTester()
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 43.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/BooleansTest.java
// The constructor is deprecated only in some versions of java.lang.Boolean. @SuppressWarnings({"deprecation", "UnnecessaryJavacSuppressWarnings"}) Boolean anotherTrue = new Boolean(true); // The constructor is deprecated only in some versions of java.lang.Boolean. @SuppressWarnings({"deprecation", "UnnecessaryJavacSuppressWarnings"}) Boolean anotherFalse = new Boolean(false); list.set(0, anotherTrue);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 01:43:32 GMT 2026 - 25.3K bytes - Click Count (0) -
build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy
Files\\Java\\jdk1.7/bin/java.exe" -Dorg.gradle.daemon.idletimeout=120000 -Dorg.gradle.daemon.registry.base=C:\\some\\agent\\workspace\\build\\daemon -Dorg.gradle.native.dir=C:\\some\\agent\\workspace\\intTestHomeDir\\worker-1\\native -Dorg.gradle.deprecation.trace=true -Djava.io.tmpdir=C:\\some\\agent\\workspace\\subprojects\\osgi\\build\\tmp -Dfile.encoding=windows-1252 -Dorg.gradle.classloaderscope.strict=true -ea -ea "-Dorg.gradle.appname=gradle" -classpath "C:\\some\\agent\\workspace\\subprojec...
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jul 12 03:42:46 GMT 2024 - 14.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/ThrowablesTest.java
import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Unit test for {@link Throwables}. * * @author Kevin Bourrillion */ @GwtCompatible @SuppressWarnings({ "deprecation", // tests of numerous deprecated methods "nullness", // TODO(cpovirk): fix errors }) @NullUnmarked public class ThrowablesTest extends TestCase {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 15K bytes - Click Count (0) -
src/test/java/jcifs/http/NtlmHttpFilterTest.java
import jcifs.context.BaseContext; import jcifs.smb.NtlmPasswordAuthentication; /** * Test class for NtlmHttpFilter * * NtlmHttpFilter is deprecated but we test it for backward compatibility */ @SuppressWarnings("deprecation") @ExtendWith(MockitoExtension.class) @MockitoSettings(strictness = Strictness.LENIENT) class NtlmHttpFilterTest { private NtlmHttpFilter filter; @Mock private FilterConfig filterConfig;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 21 04:51:33 GMT 2025 - 12.8K bytes - Click Count (0)