Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,677 for aString (0.99 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

         * @param appendValue the value to append to the property value
         */
        protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) {
            final String value = System.getProperty(name);
            if (value != null) {
                final StringBuilder buf = new StringBuilder();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ldap/LdapUserTest.java

                public String getRoleSearchUserPrefix() {
                    return "U";
                }
            });
    
            ComponentUtil.register(new LdapManager() {
                @Override
                public String[] getRoles(LdapUser user, String baseDn, String accountFilter, String groupFilter, Consumer<String[]> callback) {
                    return new String[] { "Rrole1", "Rrole2", "Ggroup1", "Uuser1" };
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestStringCollectionGenerator.java

        int i = 0;
        for (Object e : elements) {
          array[i++] = (String) e;
        }
        return create(array);
      }
    
      protected abstract Collection<String> create(String[] elements);
    
      @Override
      public String[] createArray(int length) {
        return new String[length];
      }
    
      /** Returns the original element list, unchanged. */
      @Override
      public List<String> order(List<String> insertionOrder) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

        String[] array = new String[] {"a"};
        Multiset<String> multiset = ImmutableMultiset.copyOf(array);
        assertEquals(HashMultiset.create(asList("a")), multiset);
      }
    
      @SuppressWarnings("ArrayAsKeyOfSetOrMap")
      public void testCreation_arrayOfArray() {
        String[] array = new String[] {"a"};
        Multiset<String[]> multiset = ImmutableMultiset.<String[]>of(array);
        Multiset<String[]> expected = HashMultiset.create();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            String query = "";
            Map<String, String[]> fields = new HashMap<>();
            Map<String, String[]> conditions = new HashMap<>();
            String[] languages = new String[0];
            GeoInfo geoInfo = null;
            FacetInfo facetInfo = null;
            HighlightInfo highlightInfo = null;
            String sort = "";
            int startPosition = 0;
            int pageSize = 10;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java

      private void assertStringHash(int expected, String string, Charset charset) {
        if (allBmp(string)) {
          assertHash(expected, murmur3_32().hashString(string, charset));
        }
        assertHash(expected, murmur3_32_fixed().hashString(string, charset));
        assertHash(expected, murmur3_32().newHasher().putString(string, charset).hash());
        assertHash(expected, murmur3_32_fixed().newHasher().putString(string, charset).hash());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

    public class StemmerOverrideItem extends DictionaryItem {
        /** The original input word. */
        private final String input;
    
        /** The original output stem. */
        private final String output;
    
        /** The new input word, if updated. */
        private String newInput;
    
        /** The new output stem, if updated. */
        private String newOutput;
    
        /**
         * Constructs a new stemmer override item.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Strings.java

      public static String nullToEmpty(@Nullable String string) {
        return Platform.nullToEmpty(string);
      }
    
      /**
       * Returns the given string if it is nonempty; {@code null} otherwise.
       *
       * @param string the string to test and possibly return
       * @return {@code string} itself if it is nonempty; {@code null} if it is empty or null
       */
      public static @Nullable String emptyToNull(@Nullable String string) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 27 17:53:41 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java

            private final String name;
    
            public TestCorsHandler(String name) {
                this.name = name;
            }
    
            @Override
            public void process(String origin, ServletRequest request, ServletResponse response) {
                // Test implementation - no operation
            }
    
            public String getName() {
                return name;
            }
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            // Test that getMessage returns the same value consistently
            String message = "Consistent message";
            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            String firstCall = exception.getMessage();
            String secondCall = exception.getMessage();
            String thirdCall = exception.getMessage();
    
            assertEquals(firstCall, secondCall);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.4K bytes
    - Viewed (0)
Back to top