- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for parseByte (0.08 seconds)
-
android/guava/src/com/google/common/primitives/UnsignedBytes.java
* * @throws NumberFormatException if the string does not contain a valid unsigned {@code byte} * value * @throws NullPointerException if {@code string} is null (in contrast to {@link * Byte#parseByte(String)}) * @since 13.0 */ @CanIgnoreReturnValue public static byte parseUnsignedByte(String string) { return parseUnsignedByte(string, 10); } /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 21K bytes - Click Count (0) -
src/main/java/jcifs/smb/SID.java
if (st.countTokens() < 3 || !st.nextToken().equals("S")) { // need S-N-M throw new SmbException("Bad textual SID format: " + textual); } this.revision = Byte.parseByte(st.nextToken()); final String tmp = st.nextToken(); long id = 0; if (tmp.startsWith("0x")) { id = Long.parseLong(tmp.substring(2), 16); } else {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 16K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SID.java
if (st.countTokens() < 3 || !st.nextToken().equals("S")) { // need S-N-M throw new SmbException("Bad textual SID format: " + textual); } this.revision = Byte.parseByte(st.nextToken()); final String tmp = st.nextToken(); long id = 0; if (tmp.startsWith("0x")) { id = Long.parseLong(tmp.substring(2), 16); } else {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/fe.tld
</example> </function> <function> <description> Returns Date from a given value. </description> <name>parseDate</name> <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> <function-signature>java.util.Date parseDate(java.lang.String)</function-signature> <example> ${fe:parseDate(doc.tstamp)} </example> </function> <function>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 18 11:38:54 GMT 2025 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
final Date lastModified = FessFunctions.parseDate(lastModifiedObj.toString()); if (lastModified != null) { return lastModified; } } else if (lastModifiedObj instanceof final String[] lastModifieds && lastModifieds.length > 0) { final Date lastModified = FessFunctions.parseDate(lastModifieds[0]); if (lastModified != null) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* * @param value the date string to parse * @return parsed Date object, or null if parsing fails */ public static Date parseDate(final String value) { return parseDate(value, Constants.DATE_OPTIONAL_TIME); } /** * Parses a date string using the specified format. * * @param value the date string to parseCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.4K bytes - Click Count (1) -
src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js
c.test(a)},errorMessage:"",errorMessageKey:"badCustomVal"}),a.formUtils.addValidator({name:"date",validatorFunction:function(b,c,d){var e=c.valAttr("format")||d.dateFormat||"yyyy-mm-dd",f="false"===c.valAttr("require-leading-zero");return a.formUtils.parseDate(b,e,f)!==!1},errorMessage:"",errorMessageKey:"badDate"}),a.formUtils.addValidator({name:"checkbox_group",validatorFunction:function(b,c,d,e,f){var g=!0,h=c.attr("name"),i=a('input[type=checkbox][name^="'+h+'"]',f),j=i.filter(":checked").length,k...
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 01 05:12:47 GMT 2018 - 32.8K bytes - Click Count (0)