- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 314 for Bharat (0.07 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
} private static boolean isLastSpaceChar(final StringBuilder buf) { if (buf.length() == 0) { return false; } return buf.charAt(buf.length() - 1) == ' '; } private static boolean removeLastDuplication(final StringBuilder buf, final int size, final boolean isSpace, final Set<String> termCache) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 7.9K bytes - Viewed (0) -
cmd/update.go
} return "" } defer helmInfoFile.Close() scanner := bufio.NewScanner(helmInfoFile) for scanner.Scan() { if strings.Contains(scanner.Text(), "chart=") { helmChartVersion := strings.TrimPrefix(scanner.Text(), "chart=") // remove quotes from the chart version return strings.Trim(helmChartVersion, `"`) } } return "" } // IsSourceBuild - returns if this binary is a non-official build from
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 18.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
protected String generateId(final String urlId) { final StringBuilder encodedBuf = new StringBuilder(urlId.length() + 100); for (int i = 0; i < urlId.length(); i++) { final char c = urlId.charAt(i); if (c >= 'a' && c <= 'z' // || c >= 'A' && c <= 'Z' // || c >= '0' && c <= '9' // || c == '.' // || c == '-' //
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
public String getReadString() { return str.substring(0, colno - 1); } private int read() { if (colno >= str.length()) { return -1; } return str.charAt(colno++); } private void initVal() { sval = null; } private boolean processEOF() { if (peekc < 0) { ttype = TT_EOF; return true;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.6K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashCode.java
string); byte[] bytes = new byte[string.length() / 2]; for (int i = 0; i < string.length(); i += 2) { int ch1 = decode(string.charAt(i)) << 4; int ch2 = decode(string.charAt(i + 1)); bytes[i / 2] = (byte) (ch1 + ch2); } return fromBytesNoCopy(bytes); } private static int decode(char ch) { if (ch >= '0' && ch <= '9') {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 19:54:59 UTC 2024 - 12.6K bytes - Viewed (0) -
manifests/charts/UPDATING-CHARTS.md
necessarily mean a PR to add a value will be accepted. The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use. For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used to allow arbitrary customizations. - Avoid exposing a single subkey of a multi-value field if it would be more flexible to expose the entire field as arbitrary...
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 15 16:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListenerTest.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/AbstractNonStreamingHashFunctionTest.java
Hasher h2 = new NonStreamingVersion().newHasher(); String s = new String(chars); // this is the correct implementation of the spec for (int i = 0; i < s.length(); i++) { h1.putChar(s.charAt(i)); } h2.putUnencodedChars(s); assertEquals(h1.hash(), h2.hash()); } static class StreamingVersion extends AbstractHashFunction { @Override public int bits() { return 32;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/message/MessageFormatter.java
if (resourceBundle == null) { return null; } final int length = messageCode.length(); if (length > CODE_NUMBER_LENGTH) { final String key = messageCode.charAt(0) + messageCode.substring(length - CODE_NUMBER_LENGTH); final String pattern = ResourceBundleUtil.getString(resourceBundle, key); if (pattern != null) { return pattern; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.6K bytes - Viewed (0) -
guava/src/com/google/common/escape/CharEscaperBuilder.java
* array directly, saving a method call. */ @Override public String escape(String s) { int slen = s.length(); for (int index = 0; index < slen; index++) { char c = s.charAt(index); if (c < replacements.length && replacements[c] != null) { return escapeSlow(s, index); } } return s; } @Override @CheckForNull
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 4K bytes - Viewed (0)