Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,204 for match2 (0.2 sec)

  1. src/main/java/org/codelibs/fess/util/ComponentUtil.java

         * @return The index updater.
         */
        public static IndexUpdater getIndexUpdater() {
            return getComponent(INDEX_UPDATER);
        }
    
        /**
         * Gets the key match helper component.
         * @return The key match helper.
         */
        public static KeyMatchHelper getKeyMatchHelper() {
            return getComponent(KEY_MATCH_HELPER);
        }
    
        /**
         * Gets the indexing helper component.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    constraints.NotNull.message = {item} is required.
    constraints.Null.message = {item} must be null.
    constraints.Past.message = {item} must be a past value.
    constraints.Pattern.message = {item} does not match "{regexp}".
    constraints.Size.message = The size of {item} must be between {min} and {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    constraints.NotNull.message = {item} is required.
    constraints.Null.message = {item} must be null.
    constraints.Past.message = {item} must be a past value.
    constraints.Pattern.message = {item} does not match "{regexp}".
    constraints.Size.message = The size of {item} must be between {min} and {max}.
    # ----------------------------------------------------------
    # Hibernate Validator
    # -------------------
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java

                assertNotNull(connection, "Connection should not be null");
                assertEquals(address, connection.getRemoteAddress(), "Remote address should match");
                assertNotNull(connection.getState(), "Connection state should not be null");
    
                System.out.println("RDMA connection created to: " + address);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  5. maven-tests/mvnw

      verbose "found existing MAVEN_HOME at $MAVEN_HOME"
      exec_maven "$@"
    fi
    
    case "${distributionUrl-}" in
    *?-bin.zip | *?maven-mvnd-?*-?*.zip) ;;
    *) die "distributionUrl is not valid, must match *-bin.zip or maven-mvnd-*.zip, but found '${distributionUrl-}'" ;;
    esac
    
    # prepare tmp dir
    if TMP_DOWNLOAD_DIR="$(mktemp -d)" && [ -d "$TMP_DOWNLOAD_DIR" ]; then
      clean() { rm -rf -- "$TMP_DOWNLOAD_DIR"; }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 12 12:05:57 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java

            } else {
                return create(100);
            }
        }
    
        /**
         * Creates new instance of problem collector with the specified maximum problem count limit,
         * but only preserves problems that match the given filter.
         *
         * @param <P>           the type of problem
         * @param maxCountLimit the maximum number of problems to preserve
         * @param filter        predicate to decide which problems to record
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 18 17:30:19 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  7. guava-testlib/src/com/google/common/testing/CollectorTester.java

          A finalAccum = scheme.result(collector, inputs);
          if (collector.characteristics().contains(Collector.Characteristics.IDENTITY_FINISH)) {
            @SuppressWarnings("unchecked") // `R` and `A` match for an `IDENTITY_FINISH`
            R result = (R) finalAccum;
            assertEquivalent(expectedResult, result);
          }
          assertEquivalent(expectedResult, collector.finisher().apply(finalAccum));
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu May 15 21:47:56 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/rdma/RdmaBufferManagerTest.java

            // Cleanup should not throw exception
            assertDoesNotThrow(() -> bufferManager.cleanup());
    
            // After cleanup, all regions should be released (but the count may not match exactly
            // if some regions were pooled rather than immediately released)
            assertTrue(bufferManager.getTotalReleased() > 0, "Some regions should be released during cleanup");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

                key = encrypt ? getEncryptionKey() : getDecryptionKey();
                keyCopy = Arrays.copyOf(key, key.length);
    
                // Validate key length matches expected cipher requirements
                if (keyCopy.length != keyLength) {
                    throw new IllegalArgumentException("Key length mismatch: expected " + keyLength + ", got " + keyCopy.length);
                }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/path-params.md

    Otherwise, the path for `/users/{user_id}` would match also for `/users/me`, "thinking" that it's receiving a parameter `user_id` with a value of `"me"`.
    
    Similarly, you cannot redefine a path operation:
    
    {* ../../docs_src/path_params/tutorial003b.py hl[6,11] *}
    
    The first one will always be used since the path matches first.
    
    ## Predefined values { #predefined-values }
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top