- Sort Score
- Result 10 results
- Languages All
Results 781 - 790 of 1,348 for complements (0.07 sec)
- 
				
				guava/src/com/google/common/collect/ImmutableRangeMap.java* detailed at {@link ImmutableCollection}. * * @author Louis Wasserman * @since 14.0 */ @GwtIncompatible // NavigableMap public class ImmutableRangeMap<K extends Comparable<?>, V> implements RangeMap<K, V>, Serializable { private static final ImmutableRangeMap<Comparable<?>, Object> EMPTY = new ImmutableRangeMap<>(ImmutableList.<Range<Comparable<?>>>of(), ImmutableList.of()); /**Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 14.7K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java*/ package org.codelibs.fess.app.pager; import java.io.Serializable; import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager for Kuromoji. */ public class KuromojiPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public KuromojiPager() { // no-op }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0)
- 
				
				android/guava-tests/benchmark/com/google/common/collect/MinMaxPriorityQueueBenchmark.java} /** * Does a CPU intensive operation on Integer and returns a BigInteger Used to implement an * ordering that spends a lot of cpu. */ static class ExpensiveComputation implements Function<Integer, BigInteger> { @Override public BigInteger apply(Integer from) { BigInteger v = BigInteger.valueOf(from); // Math.sin is very slow for values outside 4*pi Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.4K bytes - Viewed (0)
- 
				
				android/guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java/** * {@link Set} implementation that asserts that a given lock is held whenever one of its methods is * called. */ @NullUnmarked class LockHeldAssertingSet<E> extends ForwardingSet<E> implements Serializable { final Set<E> delegate; final Object mutex; LockHeldAssertingSet(Set<E> delegate, Object mutex) { checkNotNull(mutex); this.delegate = delegate; this.mutex = mutex; }Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.3K bytes - Viewed (0)
- 
				
				guava-tests/test/com/google/common/collect/SynchronizedTableTest.javaimport org.jspecify.annotations.NullUnmarked; import org.jspecify.annotations.Nullable; @NullUnmarked public class SynchronizedTableTest extends AbstractTableTest<Character> { private static final class TestTable<R, C, V> implements Table<R, C, V>, Serializable { private final Table<R, C, V> delegate = HashBasedTable.create(); private final Object mutex = new Object[0]; // something Serializable @Override public String toString() { Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 4.7K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndXResponse.java* information about the connected share including service type and DFS capabilities. * * @author mbechler */ public class SmbComTreeConnectAndXResponse extends AndXServerMessageBlock implements TreeConnectResponse { private static final int SMB_SUPPORT_SEARCH_BITS = 0x0001; private static final int SMB_SHARE_IS_IN_DFS = 0x0002; private boolean supportSearchBits, shareIsInDfs;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0)
- 
				
				compat/maven-compat/src/main/java/org/apache/maven/toolchain/DefaultToolchain.java* * @since 2.0.9 * @deprecated Use {@link org.apache.maven.api.Toolchain} instead. */ @Deprecated(since = "4.0.0") public abstract class DefaultToolchain // should have been AbstractToolchain... implements Toolchain, ToolchainPrivate { private final Logger logger; private String type; private Map<String, RequirementMatcher> provides = new HashMap<>();Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 12 13:13:28 UTC 2025 - 4.8K bytes - Viewed (0)
- 
				
				compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.javaimport org.eclipse.aether.installation.InstallationException; import org.eclipse.aether.util.artifact.SubArtifact; /** */ @Named @Singleton @Deprecated public class DefaultArtifactInstaller extends AbstractLogEnabled implements ArtifactInstaller { @Inject private RepositorySystem repoSystem; @Inject private LegacySupport legacySupport;Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.1K bytes - Viewed (0)
- 
				
				fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.javaimport java.util.Set; import java.util.function.Function; import org.codelibs.fess.crawler.exception.CrawlerSystemException; /** * This class represents the result data of a crawl. */ public class ResultData implements Serializable { private static final long serialVersionUID = 1L; /** The name of the transformer. */ protected String transformerName; /** The data of the result. */ protected byte[] data;Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.7K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java* including user authentication, permission checking, and login history management. * */ public class FessLoginAssist extends TypicalLoginAssist<String, FessUserBean, FessUser> // #change_it also UserBean implements PrimaryLoginManager { /** * Default constructor. */ public FessLoginAssist() { super(); } Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0)