- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 452 for SPECIAL (0.06 sec)
-
src/main/java/jcifs/smb1/netbios/NbtAddress.java
public final class NbtAddress { /* * This is a special name that means all hosts. If you wish to find all hosts * on a network querying a workgroup group name is the preferred method. */ static final String ANY_HOSTS_NAME = "*\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"; /** * This is a special name for querying the master browser that serves the
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
assertEquals("value1", paramMap.get("key1")); assertEquals("value2", paramMap.get("key2")); assertEquals("value3", paramMap.get("key3")); // Test with special characters in keys and values value = "key.with.dots=value\nkey_with_underscores=value with spaces\nkey-with-dashes=value@#$%"; paramMap = ParameterUtil.parse(value); assertEquals(3, paramMap.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 22.6K bytes - Viewed (0) -
cmd/metrics-v3.go
clusterNotificationMG, clusterIAMMG, clusterReplicationMG, clusterConfigMG, ilmMG, scannerMG, auditMG, loggerWebhookMG, } // Bucket metrics are special, they always include the bucket label. These // metrics required a list of buckets to be passed to the loader, and the list // of buckets is not known until the request is made. So we keep a separate
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 02 00:55:27 UTC 2024 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
import java.util.Collections; import java.util.LinkedHashSet; import java.util.List; import java.util.Map; import java.util.Set; /** * A wrapper implementation of Map<String, Object> that provides special handling * for document data. This class wraps an existing map and provides custom behavior * for the entrySet method to ensure language fields appear first in iteration order.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ResultOffsetExceededExceptionTest.java
assertEquals("Second instance", exception2.getMessage()); assertEquals("Third instance", exception3.getMessage()); } public void test_specialCharactersInMessage() { // Test with special characters in message String messageWithSpecialChars = "Error: offset > 1000 && offset < 2000 | \"quotes\" 'single' \n\t tab";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.6K bytes - Viewed (0) -
docs/fr/docs/tutorial/body-multiple-params.md
Cependant, si vous souhaitez qu'il interprête correctement un JSON avec une clé `item` associée au contenu du modèle, comme cela serait le cas si vous déclariez des paramètres body additionnels, vous pouvez utiliser le paramètre spécial `embed` de `Body` : ```Python item: Item = Body(embed=True) ``` Voici un exemple complet : {* ../../docs_src/body_multiple_params/tutorial005_an_py310.py hl[17] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 11:10:17 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
## `PATH` Environment Variable { #path-environment-variable } There is a **special** environment variable called **`PATH`** that is used by the operating systems (Linux, macOS, Windows) to find programs to run.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.1K bytes - Viewed (0) -
docs/metrics/prometheus/grafana/node/minio-node.json
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 04 01:46:49 UTC 2025 - 22.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
FuzzyQueryBuilder fqb = (FuzzyQueryBuilder) result; assertEquals("title", fqb.fieldName()); assertEquals(searchText, fqb.value()); } // Test with special characters in term text public void test_convertFuzzyQuery_withSpecialCharacters() { QueryContext context = new QueryContext("test", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/StringUtilTest.java
void testJoinWithNoElements() { String result = StringUtil.join(","); assertEquals("", result); } @Test @DisplayName("Should handle special characters in delimiter") void testJoinWithSpecialCharDelimiter() { String result = StringUtil.join("\\t", "tab", "separated", "values"); assertEquals("tab\\tseparated\\tvalues", result); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9K bytes - Viewed (0)