- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 40 for timezone (0.05 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java
TimeZone.setDefault(newTimeZone); // Create new provider instance to pick up the new default FessUserTimeZoneProcessProvider newProvider = new FessUserTimeZoneProcessProvider(); // Execute TimeZone result = newProvider.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/mylasta/direction/sponsor/FessUserTimeZoneProcessProvider.java
public static final TimeZone centralTimeZone = TimeZone.getDefault(); @Override public boolean isUseTimeZoneHandling() { return false; } @Override public boolean isAcceptCookieTimeZone() { return false; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHook.java
} protected DfFinalTimeZoneProvider createFinalTimeZoneProvider() { return new DfFinalTimeZoneProvider() { protected final TimeZone provided = FessUserTimeZoneProcessProvider.centralTimeZone; @Override public TimeZone provide() { return provided; } @Override public String toString() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java
public void test_createFinalTimeZoneProvider_withDifferentDefaultTimeZone() { // Given TimeZone testTimeZone = TimeZone.getTimeZone("America/New_York"); TimeZone originalDefault = TimeZone.getDefault(); try { // Change default timezone temporarily TimeZone.setDefault(testTimeZone); // When
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/SmbTreeHandle.java
* @return the tree is connected */ boolean isConnected(); /** * Gets the server timezone offset in milliseconds * @return server timezone offset * @throws CIFSException if an error occurs retrieving the timezone offset */ long getServerTimeZoneOffset() throws CIFSException; /** * Gets the OEM domain name reported by the server
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertNotNull(yearProvider); } // Test timezone information public void test_timezoneInformation() { TimeZone defaultTz = TimeZone.getDefault(); assertNotNull(defaultTz); assertNotNull(defaultTz.getID()); assertTrue(defaultTz.getID().length() > 0); // Central timezone should match default
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
} @Test @DisplayName("TimeZone configuration should delegate correctly") void testTimeZoneConfigurationDelegation() { // Given TimeZone timeZone = TimeZone.getTimeZone("UTC"); when(mockDelegate.getLocalTimezone()).thenReturn(timeZone); // When TimeZone resultTimeZone = delegatingConfig.getLocalTimezone(); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProvider.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.mylasta.direction.sponsor; import java.util.TimeZone; import org.codelibs.fess.mylasta.direction.FessConfig; import org.lastaflute.core.time.TypicalTimeResourceProvider; /** * The provider of time resource. * * @author jflute */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationResponseTest.java
@BeforeEach void setUp() { mockConfig = mock(Configuration.class); } @Test void testConstructor() { // Test constructor with positive timezone offset long serverTimeZoneOffset = 3600000L; // 1 hour in milliseconds response = new SmbComQueryInformationResponse(mockConfig, serverTimeZoneOffset); assertNotNull(response);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** SMB header length */ int HEADER_LENGTH = 32; /** Milliseconds between 1970 and 1601 */ long MILLISECONDS_BETWEEN_1970_AND_1601 = 11644473600000L; /** Default timezone */ TimeZone TZ = TimeZone.getDefault(); /** Whether to use batching */ boolean USE_BATCHING = Config.getBoolean("jcifs.smb1.smb.client.useBatching", true); /** OEM encoding */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0)