- Sort Score
- Num 10 results
- Language All
Results 971 - 980 of 1,069 for deprecatet (0.06 seconds)
-
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; /** * ReflectionValueExtractorTest class. */ @Deprecated public class ReflectionValueExtractorTest { private Project project; /** * <p>setUp.</p> */ @BeforeEach void setUp() { Dependency dependency1 = new Dependency();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 16.9K bytes - Click Count (0) -
internal/auth/credentials.go
Claims map[string]any `xml:"-" json:"claims,omitempty"` Name string `xml:"-" json:"name,omitempty"` Description string `xml:"-" json:"description,omitempty"` // Deprecated: In favor of Description - when reading credentials from // storage the value of this field is placed in the Description field above // if the existing Description from storage is empty.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 11.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Multisets.java
} /** * Simply returns its argument. * * @deprecated no need to use this * @since 10.0 */ @InlineMe( replacement = "checkNotNull(multiset)", staticImports = "com.google.common.base.Preconditions.checkNotNull") @Deprecated public static <E> Multiset<E> unmodifiableMultiset(ImmutableMultiset<E> multiset) { return checkNotNull(multiset);Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 41.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Streams.java
: StreamSupport.stream(iterable.spliterator(), false); } /** * Returns {@link Collection#stream}. * * @deprecated There is no reason to use this; just invoke {@code collection.stream()} directly. */ @Deprecated @InlineMe(replacement = "collection.stream()") public static <T extends @Nullable Object> Stream<T> stream(Collection<T> collection) { return collection.stream();
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 21 15:40:45 GMT 2025 - 36.8K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/Ints.java
return value; } /** * Returns the {@code int} value that is equal to {@code value}, if possible. * * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Use {@link * Math#toIntExact(long)} instead, but be aware that that method throws {@link * ArithmeticException} rather than {@link IllegalArgumentException}. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Oct 22 18:14:49 GMT 2025 - 31.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/Multisets.java
} /** * Simply returns its argument. * * @deprecated no need to use this * @since 10.0 */ @InlineMe( replacement = "checkNotNull(multiset)", staticImports = "com.google.common.base.Preconditions.checkNotNull") @Deprecated public static <E> Multiset<E> unmodifiableMultiset(ImmutableMultiset<E> multiset) { return checkNotNull(multiset);Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 41.2K bytes - Click Count (0) -
src/main/java/jcifs/config/BaseConfiguration.java
public int getSessionTimeout() { return this.smbSessionTimeout; } @Override public int getSendBufferSize() { return this.smbSendBufferSize; } @Deprecated @Override public int getRecieveBufferSize() { return this.smbRecvBufferSize; } @Override public int getReceiveBufferSize() { return this.smbRecvBufferSize; }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 36.5K bytes - Click Count (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
assertEquals(SmbConstants.DEFAULT_RCV_BUF_SIZE, config.getReceiveBufferSize()); assertEquals(SmbConstants.DEFAULT_RCV_BUF_SIZE, config.getRecieveBufferSize()); // Deprecated method assertEquals(SmbConstants.DEFAULT_NOTIFY_BUF_SIZE, config.getNotifyBufferSize()); assertEquals(SmbConstants.DEFAULT_MAX_MPX_COUNT, config.getMaxMpxCount()); } @Test
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 20.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
value = getHandlerParameterMap().get("timeToLive"); // TODO remove if (StringUtil.isBlank(value)) { return null; } logger.warn("timeToLive is deprecated. Please use time_to_live."); } try { return Integer.parseInt(value); } catch (final NumberFormatException e) { if (logger.isDebugEnabled()) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Mon Nov 24 02:07:40 GMT 2025 - 18.8K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertTrue; /** */ @Deprecated public abstract class AbstractModelInterpolatorTest { private Properties context; @BeforeEach public void setUp() { context = new Properties(); context.put("basedir", "myBasedir");Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 18.2K bytes - Click Count (0)