- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for IsDigit (0.06 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
} } private static Item parseItem(boolean isDigit, String buf) { return parseItem(false, isDigit, buf); } private static Item parseItem(boolean isCombination, boolean isDigit, String buf) { if (isCombination) { return new CombinationItem(buf.replace("-", "")); } else if (isDigit) { buf = stripLeadingZeroes(buf);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 26K bytes - Viewed (0) -
src/main/java/jcifs/netbios/UniAddress.java
public static boolean isDotQuadIP ( String hostname ) { if ( Character.isDigit(hostname.charAt(0)) ) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = hostname.length(); data = hostname.toCharArray(); while ( i < len && Character.isDigit(data[ i++ ]) ) { if ( i == len && dots == 3 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/UniAddress.java
static boolean isDotQuadIP( String hostname ) { if( Character.isDigit( hostname.charAt( 0 ))) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = hostname.length(); data = hostname.toCharArray(); while( i < len && Character.isDigit( data[i++] )) { if( i == len && dots == 3 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 16.2K bytes - Viewed (0) -
src/cmd/asm/internal/lex/tokenizer.go
return true case '\u2215': // Represents the slash in runtime/debug.setGCPercent. U+2215 '∕' division slash return true } // Digits are OK only after the first character. return i > 0 && unicode.IsDigit(ch) } func (t *Tokenizer) Text() string { switch t.tok { case LSH: return "<<" case RSH: return ">>" case ARR: return "->" case ROT: return "@>" } return t.s.TokenText()
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 04 20:35:21 UTC 2022 - 3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
throw new IOException("no lmhosts alternate includes loaded"); } } else if ( Character.isDigit(line.charAt(0)) ) { char[] data = line.toCharArray(); int ip, i, j; Name name; NbtAddress addr; char c; c = '.';
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Lmhosts.java
alt--; throw new IOException( "no lmhosts alternate includes loaded" ); } } else if( Character.isDigit( line.charAt( 0 ))) { char[] data = line.toCharArray(); int ip, i, j; Name name; NbtAddress addr; char c;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 30.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/PipeTest.java
String server = handle.getServerWithDfs(); int dot = server.indexOf('.'); if ( dot > 0 && Character.isDigit(server.charAt(0)) == false ) server = server.substring(0, dot); try ( LsaPolicyHandle policyHandle = new LsaPolicyHandle(handle, "\\\\" + server, 0x00000800) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
this.calledName = this.hostName.name; if ( Character.isDigit(this.calledName.charAt(0)) ) { int i, len, dots; char[] data; i = dots = 0; /* quick IP address validation */ len = this.calledName.length(); data = this.calledName.toCharArray(); while ( i < len && Character.isDigit(data[ i++ ]) ) { if ( i == len && dots == 3 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
src/bytes/bytes_test.go
{"", isValidRune, -1, -1}, {"abc", isDigit, -1, -1}, {"0123", isDigit, 0, 3}, {"a1b", isDigit, 1, 1}, {space, isSpace, 0, len(space) - 3}, // last rune in space is 3 bytes {"\u0e50\u0e5212hello34\u0e50\u0e51", isDigit, 0, 18}, {"\u2C6F\u2C6F\u2C6F\u2C6FABCDhelloEF\u2C6F\u2C6FGH\u2C6F\u2C6F", isUpper, 0, 34}, {"12\u0e50\u0e52hello34\u0e50\u0e51", not(isDigit), 8, 12}, // tests of invalid UTF-8
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 19 19:09:04 UTC 2024 - 61.2K bytes - Viewed (0)