Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for quotas (0.04 sec)

  1. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Text with comma gets quoted, but parse preserves quotes
            input = "with,comma";
            escaped = KuromojiCSVUtil.quoteEscape(input); // "with,comma"
            parsed = KuromojiCSVUtil.parse(escaped);
            assertEquals(1, parsed.length);
            assertEquals("\"" + input + "\"", parsed[0]); // Quotes are preserved
    
            // Text with quotes gets escaped quotes, but escaped quotes don't get unquoted
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

            // Default constructor
        }
    
        /**
         * Quotes a string value if it contains spaces.
         * Multi-word values are wrapped in double quotes with internal quotes replaced by spaces.
         *
         * @param value the string value to quote
         * @return the quoted string if it contains spaces, otherwise the original value
         */
        protected String quote(final String value) {
            if (value.split("\\s").length > 1) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartBody.kt

         * with Chrome's behavior (which also experimentally seems to match what IE does), but if you
         * actually want to have a good chance of things working, please avoid double-quotes, newlines,
         * percent signs, and the like in your field names.
         */
        internal fun StringBuilder.appendQuotedString(key: String) {
          append('"')
          for (i in 0 until key.length) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                return "^" + Pattern.quote(s.substring(1, s.length() - 1)) + "$";
            }
            if (s.startsWith("^")) {
                return "^" + Pattern.quote(s.substring(1));
            }
            if (s.endsWith("$")) {
                return Pattern.quote(s.substring(0, s.length() - 1)) + "$";
            }
            return Pattern.quote(s);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

            }
    
            /**
             * Overrides the field query creation to handle quoted queries specially.
             * For quoted queries on the default field, creates a phrase query instead of a term query.
             *
             * @param field the field to query
             * @param queryText the query text
             * @param quoted whether the query is quoted
             * @return the created Query object
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            Map<String, String> params = new HashMap<>();
            params.put("quotes", "text with \"quotes\"");
            params.put("backslash", "text\\with\\backslash");
            activityHelper.print("test", OptionalThing.empty(), params);
            String result = localLogMsg.get();
            assertTrue(result.contains("\\\"quotes\\\""));
            assertTrue(result.contains("text\\\\with\\\\backslash"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

            discloser.setSubject("Test \"Subject\" with 'quotes'");
            discloser.setPlainText("Test content with\nnewlines and\ttabs");
    
            String result = notificationHelper.toSlackMessage(discloser);
    
            assertNotNull(result);
            assertTrue(result.contains("Test"));
            assertTrue(result.contains("Subject"));
            assertTrue(result.contains("quotes"));
            assertTrue(result.contains("content"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/timer/MonitorTargetTest.java

        public void test_append_stringWithSpecialChars() {
            StringBuilder buf = new StringBuilder();
            Supplier<Object> supplier = () -> "test \"quotes\" and \n newline";
    
            monitorTarget.append(buf, "specialKey", supplier);
            assertEquals("\"specialKey\":\"test \\\"quotes\\\" and \\n newline\"", buf.toString());
        }
    
        // Test append method with String containing backslash
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_es.properties

    labels.depth=Profundidad
    labels.excludedPaths=Rutas a excluir del rastreo
    labels.excludedUrls=URLs a excluir del rastreo
    labels.excludedDocPaths=Rutas a excluir de la búsqueda
    labels.excludedDocUrls=URLs a excluir de la búsqueda
    labels.hostname=Nombre de host
    labels.id=ID
    labels.includedPaths=Rutas a incluir en el rastreo
    labels.includedUrls=URLs a incluir en el rastreo
    labels.includedDocPaths=Rutas a incluir en la búsqueda
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

        public void test_command_string_edge_cases() throws Exception {
            // Test with commands containing special characters
            final List<String> specialCommands = Arrays.asList("echo \"test with quotes\"", "echo 'test with single quotes'",
                    "echo test with spaces", "echo test&with&ampersand", "echo test|with|pipe");
    
            generator.setCommandList(specialCommands);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
Back to top