Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 366 for Patterns (0.92 sec)

  1. 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)
  2. 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)
  3. src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java

            int[] offsets = { 0, 1, 10, 50, 100 };
    
            for (int offset : offsets) {
                byte[] buffer = new byte[200];
                // Fill buffer with pattern to ensure proper writing
                for (int i = 0; i < buffer.length; i++) {
                    buffer[i] = (byte) 0xFF;
                }
    
                int bytesEncoded = request.encode(buffer, offset);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    because it stays the same year for such a long time together.'
    
      `Which is just the case with MINE,' said the Hatter.
    
      Alice felt dreadfully puzzled.  The Hatter's remark seemed to
    have no sort of meaning in it, and yet it was certainly English.
    `I don't quite understand you,' she said, as politely as she
    could.
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top