- Sort Score
- Result 10 results
- Languages All
Results 1351 - 1360 of 1,668 for complements (0.07 sec)
-
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
public static interface MyInterface2 extends MyInterface { /** * */ String HOGE = "hoge2"; } /** * */ public static class MyBean implements MyInterface2 { private String aaa; private String eee; /** * */ public String ggg; /** * @return String
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 13.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
import java.util.TimeZone; import jcifs.Configuration; import jcifs.DialectVersion; import jcifs.ResolverType; /** * @author mbechler * */ public class DelegatingConfiguration implements Configuration { private final Configuration delegate; /** * @param delegate * delegate to pass all non-overridden method calls to * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 17.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Cut.java
* * @author Kevin Bourrillion */ @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989 @GwtCompatible @ElementTypesAreNonnullByDefault abstract class Cut<C extends Comparable> implements Comparable<Cut<C>>, Serializable { final C endpoint; Cut(C endpoint) { this.endpoint = endpoint; } abstract boolean isLessThan(C value); abstract BoundType typeAsLowerBound();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 12.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/EnumBiMapTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* @author Louis Wasserman * @since 2.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingMultiset<E extends @Nullable Object> extends ForwardingCollection<E> implements Multiset<E> { /** Constructor for use by subclasses. */ protected ForwardingMultiset() {} @Override protected abstract Multiset<E> delegate(); @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 10.4K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java
* lazy {@link #asList} view). * </ul> * * @since 22.0 */ @GwtCompatible @Immutable @ElementTypesAreNonnullByDefault public final class ImmutableDoubleArray implements Serializable { private static final ImmutableDoubleArray EMPTY = new ImmutableDoubleArray(new double[0]); /** Returns the empty array. */ public static ImmutableDoubleArray of() { return EMPTY; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 23K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
-(1L << 54) - 4, Long.MIN_VALUE + 2, Long.MIN_VALUE + 1, Long.MIN_VALUE }; @J2ktIncompatible // EnumSet.complementOf @GwtIncompatible public void testRoundToDoubleAgainstBigInteger() { for (RoundingMode roundingMode : EnumSet.complementOf(EnumSet.of(UNNECESSARY))) { for (long candidate : roundToDoubleTestCandidates) { assertThat(LongMath.roundToDouble(candidate, roundingMode))
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 30.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
pathScope, pathTypeFilter, repositories); } static class DefaultDependencyResolverRequest extends BaseRequest implements DependencyResolverRequest { private final RequestType requestType; private final Project project; private final Artifact rootArtifact;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 17.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionQuery.java
import org.opensearch.search.sort.SortBuilders; import org.opensearch.search.sort.SortOrder; /** * @author ESFlute (using FreeGen) */ public abstract class EsAbstractConditionQuery implements ConditionQuery { protected static final String CQ_PROPERTY = "conditionQuery"; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 21.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import static java.util.Objects.requireNonNull; /** * @since 3.3.0 */ @Named @Singleton public class DefaultRepositorySystemSessionFactory implements RepositorySystemSessionFactory { public static final String MAVEN_RESOLVER_TRANSPORT_DEFAULT = "default"; public static final String MAVEN_RESOLVER_TRANSPORT_WAGON = "wagon";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0)