- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 394 for Pattern (0.05 sec)
-
guava/src/com/google/common/base/Suppliers.java
@ParametricNullness @SuppressWarnings("unchecked") // Cast from Supplier<Void> to Supplier<T> is always valid public T get() { // Because Supplier is read-heavy, we use the "double-checked locking" pattern. if (delegate != SUCCESSFULLY_COMPUTED) { synchronized (lock) { if (delegate != SUCCESSFULLY_COMPUTED) { T t = delegate.get(); value = t;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Suppliers.java
@ParametricNullness @SuppressWarnings("unchecked") // Cast from Supplier<Void> to Supplier<T> is always valid public T get() { // Because Supplier is read-heavy, we use the "double-checked locking" pattern. if (delegate != SUCCESSFULLY_COMPUTED) { synchronized (lock) { if (delegate != SUCCESSFULLY_COMPUTED) { T t = delegate.get(); value = t;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/resources/fess_message_it.properties
constraints.NotNull.message = {item} è obbligatorio. constraints.Null.message = {item} deve essere nullo. constraints.Past.message = {item} deve essere una data passata. constraints.Pattern.message = {item} non corrisponde a "{regexp}". constraints.Size.message = La dimensione di {item} deve essere compresa tra {min} e {max} caratteri. # ---------------------------------------------------------- # Hibernate Validator
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
import jcifs.DialectVersion; import jcifs.ResolverType; /** * Configuration implementation that delegates to another configuration instance. * Provides a wrapper mechanism for configuration objects with delegation pattern. * * @author mbechler */ public class DelegatingConfiguration implements Configuration { private final Configuration delegate; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0) -
src/test/java/jcifs/config/DelegatingConfigurationTest.java
import jcifs.BaseTest; import jcifs.Configuration; import jcifs.DialectVersion; import jcifs.ResolverType; /** * Comprehensive test suite for DelegatingConfiguration class. * Tests the delegation pattern and ensures all methods properly delegate. */ @DisplayName("DelegatingConfiguration Tests") class DelegatingConfigurationTest extends BaseTest { @Mock private Configuration mockDelegate;
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/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java
trans2QueryFSInfo = new Trans2QueryFSInformation(config, FileSystemInformation.SMB_INFO_ALLOCATION); byte[] buffer = new byte[256]; // Fill buffer with pattern for (int i = 0; i < buffer.length; i++) { buffer[i] = (byte) (i % 256); } int offset = 50; trans2QueryFSInfo.writeParametersWireFormat(buffer, offset);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
assertEquals("{constraints.Null.message}", FessMessages.CONSTRAINTS_Null_MESSAGE); assertEquals("{constraints.Past.message}", FessMessages.CONSTRAINTS_Past_MESSAGE); assertEquals("{constraints.Pattern.message}", FessMessages.CONSTRAINTS_Pattern_MESSAGE); assertEquals("{constraints.Size.message}", FessMessages.CONSTRAINTS_Size_MESSAGE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
@Test @DisplayName("Should not modify buffer during write operation") void testWriteDoesNotModifyBuffer() { // Given byte[] buffer = new byte[256]; // Fill buffer with test pattern for (int i = 0; i < buffer.length; i++) { buffer[i] = (byte) (i & 0xFF); } byte[] originalBuffer = buffer.clone(); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/resources/fess_message_ko.properties
constraints.Min.message = {item}는 {value} 이상이어야 합니다. constraints.NotNull.message = {item}는 필수 항목입니다. constraints.Null.message = {item}는 null이어야 합니다. constraints.Past.message = {item}는 과거의 값이어야 합니다. constraints.Pattern.message = {item}가 "{regexp}"와 일치하지 않습니다. constraints.Size.message = {item}의 크기는 {min}자에서 {max}자 사이여야 합니다. # ---------------------------------------------------------- # Hibernate Validator # -------------------
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 14.1K bytes - Viewed (0)