- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 900 for represent (2.15 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
OptionalThing<TimeZone> result = provider.findBusinessTimeZone(runtimeMeta, requestManager); // Verify that empty optional is returned assertNotNull(result); assertFalse(result.isPresent()); } // Test getRequestedTimeZone() method public void test_getRequestedTimeZone() { // Execute TimeZone result = provider.getRequestedTimeZone(requestManager);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { pageNumber.ifPresent(num -> { pathMapPager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { pathMapPager.setCurrentPageNumber(0); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java
} @MapFeature.Require(absent = SUPPORTS_PUT) @CollectionSize.Require(absent = ZERO) public void testPut_unsupportedPresentExistingValue() { try { assertEquals("put(present, existingValue) should return present or throw", v0(), put(e0())); } catch (UnsupportedOperationException tolerated) { } expectUnchanged(); } @MapFeature.Require(absent = SUPPORTS_PUT)
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
package jcifs.ntlmssp; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; /** * Represents an NTLMSSP Type-2 message. */ public class Type2Message extends NtlmMessage { private static final Logger log = LoggerFactory.getLogger(Type2Message.class); private byte[] challenge;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/AdminLabeltypeAction.java
* @return HTML response for the list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { pageNumber.ifPresent(num -> { labelTypePager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { labelTypePager.setCurrentPageNumber(0); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
/** * Displays the login page. * * @return the HTML response for the login page */ @Execute public HtmlResponse index() { getSession().ifPresent(session -> session.removeAttribute(INVALID_OLD_PASSWORD)); return asIndexPage(null).useForm(LoginForm.class); } private HtmlResponse asIndexPage(final LoginForm form) { if (form != null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
* @return HTML response for the list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { pageNumber.ifPresent(num -> { fileConfigPager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { fileConfigPager.setCurrentPageNumber(0); });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/BooleanFunction.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.util; /** * Functional interface for boolean functions. * Represents a function that accepts one argument and produces a boolean result. * @param <T> the type of the input to the function */ @FunctionalInterface public interface BooleanFunction<T> { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeSet.java
extends AbstractNavigableMap<Cut<C>, Range<C>> { private final NavigableMap<Cut<C>, Range<C>> rangesByLowerBound; /** * upperBoundWindow represents the headMap/subMap/tailMap view of the entire "ranges by upper * bound" map; it's a constraint on the *keys*, and does not affect the values. */ private final Range<Cut<C>> upperBoundWindow;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 32.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Mojo.java
*/ package org.apache.maven.api.plugin; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.ThreadSafe; /** * Represents the contract for Mojos to interact with the Maven infrastructure. * Implementations of this interface define specific build-process behaviors * that are triggered during a Maven build lifecycle. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:21:00 UTC 2025 - 2.8K bytes - Viewed (0)