- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 654 for deprecated (0.05 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/execution/DefaultRuntimeInformation.java
import org.codehaus.plexus.personality.plexus.lifecycle.phase.InitializationException; /** * Describes runtime information about the application. * */ @Deprecated @Named @Singleton public class DefaultRuntimeInformation implements RuntimeInformation, Initializable { @Inject private org.apache.maven.rtinfo.RuntimeInformation rtInfo;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java
source); } } /** * Construct a new {@link java.util.Set} that is the intersection of the given sets. * * @deprecated Use {@link com.google.common.collect.Sets#intersection(Set, Set)} instead. */ @Deprecated public static <T> Set<T> intersection(Set<? extends T> set1, Set<? extends T> set2) { Set<T> result = copyToSet(set1); result.retainAll(set2); return result;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 12.4K bytes - Viewed (0) -
docs/em/docs/tutorial/query-params-str-validations.md
## π π’ π β‘οΈ π¬ π π« π π π’ π«π. π βοΈ π β«οΈ π€ βͺ β©οΈ π€ π©βπ» βοΈ β«οΈ, βοΈ π π π©Ί π― π¦ β«οΈ <abbr title="obsolete, recommended not to use it">π’</abbr>. β€΄οΈ πΆββοΈ π’ `deprecated=True` `Query`: {* ../../docs_src/query_params_str_validations/tutorial010.py hl[18] *} π©Ί π π¦ β«οΈ π π: <img src="/img/tutorial/query-params-str-validations/image01.png"> ## π« βͺοΈβ‘οΈ π
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Feb 15 16:23:59 UTC 2025 - 7.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/deployer/SimpleArtifactMetadataSource.java
import org.apache.maven.repository.legacy.metadata.MetadataResolutionRequest; import org.apache.maven.repository.legacy.metadata.ResolutionGroup; @Named("classpath") @Singleton @Deprecated public class SimpleArtifactMetadataSource implements ArtifactMetadataSource { @Override public ResolutionGroup retrieve(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java
import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; /** * Tests {@link LegacyRepositorySystem}. * */ @PlexusTest @Deprecated class LegacyRepositorySystemTest { @Inject private LegacyRepositorySystem repositorySystem; @Test void testThatLocalRepositoryWithSpacesIsProperlyHandled() throws Exception {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableListMultimap.java
} /** * Guaranteed to throw an exception and leave the multimap unmodified. * * @throws UnsupportedOperationException always * @deprecated Unsupported operation. */ @CanIgnoreReturnValue @Deprecated @Override @DoNotCall("Always throws UnsupportedOperationException") public final ImmutableList<V> removeAll(@Nullable Object key) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19K bytes - Viewed (0) -
docs/ko/docs/tutorial/query-params-str-validations.md
## λ§€κ°λ³μ μ¬μ©νμ§ μκ² νκΈ° μ΄μ λ λμ΄μ μ΄ λ§€κ°λ³μλ₯Ό λ§μμ λ€μ΄νμ§ μλλ€κ³ κ°μ ν΄ λ΄ μλ€. μ΄ λ§€κ°λ³μλ₯Ό μ¬μ©νλ ν΄λΌμ΄μΈνΈκ° μκΈ° λλ¬Έμ νλμμ λ¨κ²¨λ¬μΌ νμ§λ§, <abbr title="ꡬμμ΄λ©°, μ¬μ©νμ§ μλ κ²μ μΆμ²">μ¬μ©λμ§ μλλ€(deprecated)</abbr>κ³ νμ€νκ² λ¬Έμμμ 보μ¬μ£Όκ³ μΆμ΅λλ€. κ·Έλ λ€λ©΄ `deprecated=True` λ§€κ°λ³μλ₯Ό `Query`λ‘ μ λ¬ν©λλ€: {* ../../docs_src/query_params_str_validations/tutorial010.py hl[18] *} λ¬Έμκ° μλμ κ°μ΄ 보μΌκ²λλ€:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/MavenArtifact.java
* under the License. */ package org.apache.maven.repository.legacy; import org.apache.maven.repository.ArtifactTransferResource; import org.apache.maven.wagon.resource.Resource; @Deprecated class MavenArtifact implements ArtifactTransferResource { private String repositoryUrl; private Resource resource; private long transferStartTime;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java
import org.apache.maven.bridge.MavenRepositorySystem; import org.apache.maven.model.root.RootLocator; import org.eclipse.aether.RepositorySystem; @Named("classpath") @Singleton @Deprecated public class TestProjectBuilder extends DefaultProjectBuilder { @Inject public TestProjectBuilder( ModelBuilder modelBuilder, ProjectBuildingHelper projectBuildingHelper,
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java
} /** * Guaranteed to throw an exception and leave the map unmodified. * * @throws UnsupportedOperationException always * @deprecated Unsupported operation. */ @CanIgnoreReturnValue @Deprecated @Override @DoNotCall("Always throws UnsupportedOperationException") public <T extends B> @Nullable T putInstance(Class<T> type, T value) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.1K bytes - Viewed (0)