- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for delim (0.04 sec)
-
src/test/java/org/codelibs/core/convert/NumberConversionUtilTest.java
final String delim = NumberConversionUtil.findDecimalSeparator(Locale.JAPAN); assertEquals(".", delim); } /** * @throws Exception */ public void testFindFractionDelimeter2() throws Exception { final String delim = NumberConversionUtil.findDecimalSeparator(Locale.FRANCE); assertEquals(",", delim); } /** * @throws Exception
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/Config.java
/** * Retrieve an array of <code>InetAddress</code> created from a property * value containing a <code>delim</code> separated list of host names and/or * ip addresses. * * @param props the properties to search in * @param key the property key to look up * @param delim the delimiter to use for splitting the property value * @param def the default value to return if key is not found
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
return def; } /** * Retrieve an array of <code>InetAddress</code> created from a property * value containting a <code>delim</code> separated list of hostnames and/or * ipaddresses. * * @param key the property key to look up * @param delim the delimiter used to separate addresses in the property value * @param def the default array to return if the property is not found or cannot be parsed
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
* Splits the string by the specified delimiter. * * @param str * the string to split * @param delim * the delimiter to use for splitting * @return an array of split strings */ public static String[] split(final String str, final String delim) { if (isEmpty(str)) { return EMPTY_STRINGS; } final List<String> list = newArrayList();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
apache-maven/src/assembly/maven/bin/mvn.cmd
set JVM_CONFIG_MAVEN_OPTS= for /F "usebackq tokens=* delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do ( set "line=%%a" rem Skip empty lines and full-line comments echo !line! | findstr /b /r /c:"[ ]*#" >nul if errorlevel 1 ( rem Handle end-of-line comments by taking everything before # for /f "tokens=1* delims=#" %%i in ("!line!") do set "line=%%i"
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 24 09:49:07 UTC 2025 - 9.6K bytes - Viewed (3) -
src/main/java/jcifs/util/Encdec.java
* @param dlim the maximum index in the destination array * @return the number of bytes written */ public static int enc_utf8(final String str, final byte[] dst, int di, final int dlim) { final int start = di; int ch; final int strlen = str.length(); for (int i = 0; di < dlim && i < strlen; i++) { ch = str.charAt(i);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Encdec.java
* @param di the starting index in the destination array * @param dlim the maximum index in the destination array * @return the number of bytes written * @throws IOException if an encoding error occurs */ public static int enc_utf8(final String str, final byte[] dst, int di, final int dlim) throws IOException { final int start = di; int ch;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 18.5K bytes - Viewed (0) -
docs/tr/docs/tutorial/path-params.md
Bunlardan birkaçı, bu eğitimin ileriki bölümlerinde irdelenmiştir. ## Sıralama Önem Arz Eder *Yol operasyonları* tasarlarken sabit yol barındıran durumlar ile karşılaşabilirsiniz. Farz edelim ki `/users/me` yolu geçerli kullanıcı hakkında bilgi almak için kullanılıyor olsun.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 10.5K bytes - Viewed (0) -
maven-tests/mvnw.cmd
@IF "%__MVNW_ARG0_NAME__%"=="" (SET __MVNW_ARG0_NAME__=%~nx0) @SET __MVNW_CMD__= @SET __MVNW_ERROR__= @SET __MVNW_PSMODULEP_SAVE=%PSModulePath% @SET PSModulePath= @FOR /F "usebackq tokens=1* delims==" %%A IN (`powershell -noprofile "& {$scriptDir='%~dp0'; $script='%__MVNW_ARG0_NAME__%'; icm -ScriptBlock ([Scriptblock]::Create((Get-Content -Raw '%~f0'))) -NoNewScope}"`) DO @(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 12 12:05:57 UTC 2025 - 6.8K bytes - Viewed (0) -
docs/tr/docs/index.md
* `--reload`: kod değişikliklerinin ardından sunucuyu otomatik olarak yeniden başlatır. Bu parameteyi sadece geliştirme aşamasında kullanmalıyız. </details> ### Şimdi de Kontrol Edelim Tarayıcımızda şu bağlantıyı açalım <a href="http://127.0.0.1:8000/items/5?q=somequery" class="external-link" target="_blank">http://127.0.0.1:8000/items/5?q=somequery</a>. Aşağıdaki gibi bir JSON yanıtıyla karşılaşacağız:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.9K bytes - Viewed (0)