- Sort Score
- Result 10 results
- Languages All
Results 2701 - 2710 of 6,120 for stringy (0.07 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/EncodingHelperTest.java
public void test_normalize() { String enc; enc = "UTF-8"; assertEquals("UTF-8", encodingHelper.normalize(enc)); enc = "Shift_JIS"; assertEquals("Shift_JIS", encodingHelper.normalize(enc)); enc = "S-JIS"; assertEquals("S-JIS", encodingHelper.normalize(enc)); } public void test_normalize_map() { String enc;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Jul 10 20:52:34 UTC 2024 - 6.4K bytes - Viewed (0) -
tests/test_openapi_examples.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 15:57:43 UTC 2024 - 17.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcHandle.java
* proto:ts0.win.net[\pipe\srvsvc] * * If the server is absent it is set to "127.0.0.1" */ protected static DcerpcBinding parseBinding(String str) throws DcerpcException { int state, mark, si; char[] arr = str.toCharArray(); String proto = null, key = null; DcerpcBinding binding = null; state = mark = si = 0; do { char ch = arr[si];
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 8.8K bytes - Viewed (0) -
cmd/metrics-resource.go
} func getResourceKey(name MetricName, labels map[string]string) string { // labels are used to uniquely identify a metric // e.g. reads_per_sec_{drive} inside the map sfx := "" for _, v := range labels { if len(sfx) > 0 { sfx += "_" } sfx += v } return string(name) + "_" + sfx }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 23:30:33 UTC 2024 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/profile/ProfileForm.java
*/ package org.codelibs.fess.app.web.profile; import jakarta.validation.constraints.NotBlank; public class ProfileForm { @NotBlank public String oldPassword; @NotBlank public String newPassword; @NotBlank public String confirmNewPassword; public void clearSecurityInfo() { oldPassword = null; newPassword = null; confirmNewPassword = null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
} } private static NamedObject named(String name) { return new NamedObject(name); } private static class NamedObject { private final Set<String> peerNames = Sets.newHashSet(); private final String name; NamedObject(String name) { this.name = Preconditions.checkNotNull(name); } NamedObject addPeers(String... names) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/PropertiesUtilTest.java
assertThat(properties.getProperty("a"), is("A")); } /** * Test method for * {@link org.codelibs.core.io.PropertiesUtil#store(Properties, File, String, String)} * . * * @throws IOException */ @Test public void testStorePropertiesFileStringString() throws IOException { final Properties outProperties = new Properties();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AccessTokenHelper.java
public class AccessTokenHelper { protected static final String BEARER = "Bearer"; protected Random random = new SecureRandom(); public String generateAccessToken() { return RandomStringUtils.random(ComponentUtil.getFessConfig().getApiAccessTokenLengthAsInteger(), 0, 0, true, true, null, random); } public String getAccessTokenFromRequest(final HttpServletRequest request) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.1K bytes - Viewed (0) -
cmd/erasure-server-pool-rebalance_gen.go
// string "no" o = append(o, 0xa2, 0x6e, 0x6f) o = msgp.AppendUint64(o, z.NumObjects) // string "nv" o = append(o, 0xa2, 0x6e, 0x76) o = msgp.AppendUint64(o, z.NumVersions) // string "bs" o = append(o, 0xa2, 0x62, 0x73) o = msgp.AppendUint64(o, z.Bytes) // string "par" o = append(o, 0xa3, 0x70, 0x61, 0x72) o = msgp.AppendBool(o, z.Participating) // string "inf" o = append(o, 0xa3, 0x69, 0x6e, 0x66)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 21 17:21:35 UTC 2024 - 26.8K bytes - Viewed (0)