- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,912 for methods (0.17 sec)
-
compat/maven-model/src/main/java/org/apache/maven/model/InputSource.java
this.importedFrom = source.getImportedFrom() != null ? new InputLocation(source.getImportedFrom()) : null; } // -----------/ // - Methods -/ // -----------/ /** * Method clone. * * @return InputSource */ public InputSource clone() { try { InputSource copy = (InputSource) super.clone(); return copy;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/AbstractModelBuildingListener.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.model.building; /** * Provides a skeleton implementation for model building listeners. The methods of this class are empty. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class AbstractModelBuildingListener implements ModelBuildingListener {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ReferencedTypeBuilder.java
private final DslDocModel model; public ReferencedTypeBuilder(DslDocModel model) { this.model = model; } /** * Builds the docs for types referenced by properties and methods of the given class. */ public void build(ClassDoc classDoc) { for (PropertyDoc propertyDoc : classDoc.getClassProperties()) { String referencedType = propertyDoc.getMetaData().getType().getName();
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultimapContainsKeyTester.java
import com.google.common.collect.testing.features.CollectionSize; import com.google.common.collect.testing.features.MapFeature; import org.junit.Ignore; /** * Tester for the {@code containsKey} methods of {@code Multimap} and its {@code asMap()} view. * * @author Louis Wasserman */ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 19:10:20 UTC 2024 - 3K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java
// -----------/ // - Methods -/ // -----------/ /** * Method addLifecycle. * * @param lifecycle a lifecycle object. */ public void addLifecycle(Lifecycle lifecycle) { getLifecycles().add(lifecycle); } // -- void addLifecycle( Lifecycle ) /** * Method getLifecycles. * * @return List */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ListMultimap.java
* ordering of values for a given key. See the {@link Multimap} documentation for information common * to all multimaps. * * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods each return a {@link * List} of values. Though the method signature doesn't say so explicitly, the map returned by * {@link #asMap} has {@code List} values. * * <p>See the Guava User Guide article on <a href=
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 24 17:47:51 UTC 2022 - 3.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ListMultimap.java
* ordering of values for a given key. See the {@link Multimap} documentation for information common * to all multimaps. * * <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods each return a {@link * List} of values. Though the method signature doesn't say so explicitly, the map returned by * {@link #asMap} has {@code List} values. * * <p>See the Guava User Guide article on <a href=
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 24 17:47:51 UTC 2022 - 3.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/LongAdderTest.java
public class LongAdderTest extends TestCase { /** * No-op null-pointer test for {@link LongAdder} to override the {@link PackageSanityTests} * version, which checks package-private methods that we don't want to have to annotate as {@code * Nullable} because we don't want diffs from jsr166e. */ public void testNulls() {} public void testOverflows() { LongAdder longAdder = new LongAdder();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 09 04:11:29 UTC 2019 - 1.4K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenRepositorySystemSupplier.java
* <p> * Since Resolver 2.0 this class offers access to various components via public getters, and allows even partial object * graph construction. * <p> * Extend this class {@code createXXX()} methods and override to customize, if needed. The contract of this class makes
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.7K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
/** * Configuration to pass to all goals run in this phase. */ private Object configuration; // -----------/ // - Methods -/ // -----------/ /** * Method addExecution. * * @param execution a execution object. */ public void addExecution(Execution execution) { getExecutions().add(execution);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.4K bytes - Viewed (0)