- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 301 for Bharot (0.06 sec)
-
guava/src/com/google/common/collect/ImmutableListMultimap.java
* * <pre>{@code * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP = * Stream.of("banana", "apple", "carrot", "asparagus", "cherry") * .collect(toImmutableListMultimap(str -> str.charAt(0), str -> str.substring(1))); * * // is equivalent to * * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP = * new ImmutableListMultimap.Builder<Character, String>()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 16 20:20:32 UTC 2024 - 19K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/ArrayBasedCharEscaper.java
*/ @Override public final String escape(String s) { checkNotNull(s); // GWT specific check (do not optimize). for (int i = 0; i < s.length(); i++) { char c = s.charAt(i); if ((c < replacementsLength && replacements[c] != null) || c > safeMax || c < safeMin) { return escapeSlow(s, i); } } return s; } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/webapp/css/font-awesome.min.css
te:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Dec 14 21:22:25 UTC 2019 - 55.8K bytes - Viewed (1) -
android/guava/src/com/google/common/collect/ImmutableListMultimap.java
* * <pre>{@code * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP = * Stream.of("banana", "apple", "carrot", "asparagus", "cherry") * .collect(toImmutableListMultimap(str -> str.charAt(0), str -> str.substring(1))); * * // is equivalent to * * static final Multimap<Character, String> FIRST_LETTER_MULTIMAP = * new ImmutableListMultimap.Builder<Character, String>()
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* * @return guessed name */ @Override public String firstCalledName () { 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();
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/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
} private int parseResponseCode() throws IOException { try { String response = connection.getHeaderField(0); int index = response.indexOf(' '); while (response.charAt(index) == ' ') index++; return Integer.parseInt(response.substring(index, index + 3)); } catch (Exception ex) { throw new IOException(ex.getMessage()); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 20.4K bytes - Viewed (0) -
src/main/java/jcifs/util/Encdec.java
public static int enc_utf8 ( String str, byte[] dst, int di, int dlim ) { int start = di, ch; int strlen = str.length(); for ( int i = 0; di < dlim && i < strlen; i++ ) { ch = str.charAt(i); if ( ( ch >= 0x0001 ) && ( ch <= 0x007F ) ) { dst[ di++ ] = (byte) ch; } else if ( ch > 0x07FF ) { if ( ( dlim - di ) < 3 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
boolean singleQuote = false; boolean doubleQuote = false; char prevChar = ' '; for (int i = 0; i < cmd.length(); i++) { final char c = cmd.charAt(i); if (c == ' ' && !singleQuote && !doubleQuote && buf.length() > 0) { cmdList.add(getCommandValue(buf.toString(), params)); buf.delete(0, buf.length());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
throws UnknownHostException { if( host == null || host.length() == 0 ) { return getLocalHost(); } if( !Character.isDigit( host.charAt(0) )) { return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr ); } else { int IP = 0x00; int hitDots = 0; char[] data = host.toCharArray();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 30.1K bytes - Viewed (0)