- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 682 for caractere (0.08 sec)
-
cmd/globals.go
// this is kept in present form to be compatible with S3 owner ID // requirements - // // ``` // The canonical user ID is the Amazon S3–only concept. // It is 64-character obfuscated version of the account ID. // ``` // http://docs.aws.amazon.com/AmazonS3/latest/dev/example-walkthroughs-managing-access-example4.html
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.request.suggest; import java.io.IOException; import java.lang.Character.UnicodeBlock; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.codelibs.fess.suggest.concurrent.Deferred; import org.codelibs.fess.suggest.constants.FieldNames;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 17.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
/** * A map of field rules. */ protected Map<String, String> fieldRuleMap = new LinkedHashMap<>(); /** a flag to trim a space characters. */ protected boolean trimSpaceEnabled = true; /** * The charset name. */ protected String charsetName = Constants.UTF_8; /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/resources/fess_message_it.properties
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 # ------------------- constraints.CreditCardNumber.message = {item} non è un numero di carta di credito valido.
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/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
assertEquals("", chain.changePasswordCalls.get(0).getKey()); assertEquals("", chain.changePasswordCalls.get(0).getValue()); } // Test changePassword with special characters public void test_changePassword_specialCharacters() { TestAuthenticationChain chain = new TestAuthenticationChain(); chain.changePasswordResult = true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
// Each should be a different instance assertNotSame(provider1, provider2); assertNotSame(provider2, provider3); assertNotSame(provider1, provider3); } // Test with special characters in time adjustment string public void test_specialCharactersInTimeAdjustment() { FessConfig specialConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PhraseQueryCommandTest.java
// Verify query was processed // Note: Field logging behavior depends on implementation } public void test_convertPhraseQuery_withSpecialCharacters() { // Test with special characters in query PhraseQuery.Builder builder = new PhraseQuery.Builder(); builder.add(new Term(Constants.DEFAULT_FIELD, "test@#$")); PhraseQuery phraseQuery = builder.build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt
assertThat(formEncode(255)).isEqualTo("%C3%BF") } @Throws(IOException::class) private fun formEncode(codePoint: Int): String { // Wrap the codepoint with regular printable characters to prevent trimming. val body = FormBody .Builder() .add("a", String(intArrayOf('b'.code, codePoint, 'c'.code), 0, 3)) .build() val buffer = Buffer()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
new LookupTranslator(EntityArrays.HTML40_EXTENDED_UNESCAPE), new NumericEntityUnescaper()); /** * Default character encoding for content extraction. */ protected String encoding = Constants.UTF_8; /** * The preload size for charset detection. */ protected int preloadSizeForCharset = 2048;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java
assertNotNull(settings); } @Test public void testSpecialCharactersInIndexName() { // Test index name with special characters builder.setSettingsIndexName("Test-Index_Name.2024"); assertEquals("test-index_name.2024", builder.settingsIndexName); // Test index name with spaces (should be lowercased)
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 14.4K bytes - Viewed (0)