- Sort Score
- Result 10 results
- Languages All
Results 2351 - 2360 of 6,031 for AsString (0.17 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java
extractor.destroy(); super.tearDown(); } public void test_getText() throws Exception { final String testStr = "testdata"; final String content = ATTR_NAME + "," + testStr; final Map<String, String> params = new HashMap<String, String>(); //final ExtractData text = extractor.getText(new ByteArrayInputStream(FileUtils.readFileToByteArray(new File(filePath))), params);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 5.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/Collections2Test.java
return CollectionTestSuiteBuilder.using( new TestStringCollectionGenerator() { @Override public Collection<@Nullable String> create(@Nullable String[] elements) { List<@Nullable String> list = newArrayList(); for (String element : elements) { list.add((element == null) ? null : "q" + element); } return Collections2.transform(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 10:16:44 UTC 2024 - 19.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java
public void setUp() throws Exception { super.setUp(); pathMappingHelper = new PathMappingHelper(); pathMappingHelper.init(); } public void test_setPathMappingList() { final String sessionId = "test"; final List<PathMapping> pathMappingList = new ArrayList<PathMapping>(); assertNull(pathMappingHelper.getPathMappingList(sessionId));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForMapMultimapAsMapImplementsMapTest.java
super(true, true, true); } @Override protected Map<String, Collection<Integer>> makeEmptyMap() { Map<String, Integer> map = Maps.newHashMap(); return Multimaps.forMap(map).asMap(); } @Override protected Map<String, Collection<Integer>> makePopulatedMap() { Map<String, Integer> map = Maps.newHashMap(); map.put("foo", 1); map.put("bar", 2); map.put("cow", 3);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishRelease.kt
package promotion import common.VersionedSettingsBranch import jetbrains.buildServer.configs.kotlin.ParameterDisplay abstract class PublishRelease( prepTask: String, promoteTask: String, requiredConfirmationCode: String, promotedBranch: String, init: PublishRelease.() -> Unit = {} ) : PublishGradleDistributionFullBuild( promotedBranch = promotedBranch, prepTask = prepTask, promoteTask = promoteTask,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 3.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
public class HostIntervalController extends DefaultIntervalController { private final ConcurrentMap<String, AtomicLong> lastTimes = new ConcurrentHashMap<>(); public HostIntervalController() { } public HostIntervalController(final Map<String, Long> params) { super(params); } /* * (non-Javadoc) *
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3K bytes - Viewed (0) -
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) -
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)