- Sort Score
- Result 10 results
- Languages All
Results 1451 - 1460 of 5,836 for Public (0.04 sec)
-
android/guava/src/com/google/common/collect/ImmutableRangeSet.java
public void removeAll(Iterable<Range<C>> other) { throw new UnsupportedOperationException(); } @Override public ImmutableSet<Range<C>> asRanges() { if (ranges.isEmpty()) { return ImmutableSet.of(); } return new RegularImmutableSortedSet<>(ranges, Range.rangeLexOrdering()); } @Override public ImmutableSet<Range<C>> asDescendingSetOfRanges() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
*/ public void setCharsetName(final String charsetName) { this.charsetName = charsetName; } /** * Returns the dataClass. * * @return the dataClass */ public Class<?> getDataClass() { return dataClass; } /** * Sets the dataClass. * * @param dataClass the dataClass to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
private int currentPageNumber; /** The ID. */ public String id; /** The regex pattern. */ public String regex; /** The replacement string. */ public String replacement; /** The process type. */ public String processType; /** The sort order. */ public String sortOrder; /** The creator. */ public String createdBy; /** The creation time. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ErrorToWarnRewritePolicyTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class ErrorToWarnRewritePolicyTest extends UnitFessTestCase { public void test_constructor() { String[] loggerNames = { "test.logger", "another.logger" }; ErrorToWarnRewritePolicy policy = new ErrorToWarnRewritePolicy(loggerNames); assertNotNull(policy); } public void test_rewrite_with_null_logger_name() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
* This builder provides methods to set various parameters for the request. */ public class PopularWordsRequestBuilder extends RequestBuilder<PopularWordsRequest, PopularWordsResponse> { /** * Constructor for PopularWordsRequestBuilder. * @param client The OpenSearch client. */ public PopularWordsRequestBuilder(final Client client) { super(client, new PopularWordsRequest()); }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.ResourceUtil; public class DataStoreFactoryTest extends UnitFessTestCase { private DataStoreFactory dataStoreFactory; private SystemHelper systemHelper; private File tempDir; @Override public void setUp() throws Exception { super.setUp(); dataStoreFactory = new DataStoreFactory();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDouble.java
*/ public AtomicDouble(double initialValue) { value = doubleToRawLongBits(initialValue); } /** Creates a new {@code AtomicDouble} with initial value {@code 0.0}. */ public AtomicDouble() { // assert doubleToRawLongBits(0.0) == 0L; } /** * Gets the current value. * * @return the current value */ public final double get() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Lists.java
fromList.subList(fromIndex, toIndex).clear(); } @Override public int size() { return fromList.size(); } @Override public boolean isEmpty() { return fromList.isEmpty(); } @Override public ListIterator<T> listIterator(int index) { return new TransformedListIterator<F, T>(fromList.listIterator(index)) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java
} public void testReentrancy_noDeadlock() { lockA.lock(); lockB.lock(); lockA.lock(); // Should not assert on lockB -> reentrant(lockA) } public void testExplicitOrdering_noViolations() { lock1.lock(); lock3.lock(); lock3.unlock(); lock2.lock(); lock3.lock(); } public void testExplicitOrdering_violations() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 16.2K bytes - Viewed (0)