- Sort Score
- Num 10 results
- Language All
Results 11 - 18 of 18 for isDigits (0.07 seconds)
-
src/main/java/jcifs/netbios/NameServiceClientImpl.java
if (host == null || host.length() == 0) { return getLocalHost(); } final Name name = new Name(this.transportContext.getConfig(), host, type, scope); if (!Character.isDigit(host.charAt(0))) { return doNameQuery(name, svr); } int IP = 0x00; int hitDots = 0; final char[] data = host.toCharArray();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 38.5K bytes - Click Count (0) -
internal/event/target/postgresql.go
return nil } // normalize the name to letters, digits, _ or $ valid := true cleaned := strings.Map(func(r rune) rune { switch { case unicode.IsLetter(r): return 'a' case unicode.IsDigit(r): return '0' case r == '_', r == '$': return r default: valid = false return -1 } }, name) if valid { // check for simple name or quoted name
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Mar 30 00:56:02 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 13.6K bytes - Click Count (0) -
src/bytes/example_test.go
fmt.Printf("%q\n", word) } mixedText := []byte("abc123def456ghi") fmt.Println("\nSplit on digits:") for word := range bytes.FieldsFuncSeq(mixedText, unicode.IsDigit) { fmt.Printf("%q\n", word) } // Output: // Split on whitespace(similar to FieldsSeq): // "The" // "quick" // "brown" // "fox" // // Split on digits: // "abc"
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon May 12 16:07:54 GMT 2025 - 16.5K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SID.java
String server = authorityServerName; final int dot = server.indexOf('.'); if (dot > 0 && !Character.isDigit(server.charAt(0))) { server = server.substring(0, dot); } policyHandle = new LsaPolicyHandle(handle, "\\\\" + server, 0x00000800);Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 31.5K bytes - Click Count (0) -
configure.py
version = version.split('-')[0] version_segments = version.split('.') # Treat "0.24" as "0.24.0" if len(version_segments) == 2: version_segments.append('0') for seg in version_segments: if not seg.isdigit(): return None version_str = ''.join(['%03d' % int(seg) for seg in version_segments]) return int(version_str) def retrieve_bazel_version(): """Retrieve installed bazel version (or bazelisk).
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Wed Apr 30 15:18:54 GMT 2025 - 48.3K bytes - Click Count (0) -
src/bytes/bytes.go
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Sep 16 16:42:15 GMT 2025 - 35.5K bytes - Click Count (0) -
api/go1.txt
pkg unicode, const UpperLower ideal-char pkg unicode, const Version ideal-string pkg unicode, func Is(*RangeTable, int32) bool pkg unicode, func IsControl(int32) bool pkg unicode, func IsDigit(int32) bool pkg unicode, func IsGraphic(int32) bool pkg unicode, func IsLetter(int32) bool pkg unicode, func IsLower(int32) bool pkg unicode, func IsMark(int32) bool pkg unicode, func IsNumber(int32) bool
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Wed Aug 14 18:58:28 GMT 2013 - 1.7M bytes - Click Count (0)