- Sort Score
- Result 10 results
- Languages All
Results 1781 - 1790 of 4,785 for New (0.03 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
public void test_doGet_accessTimeoutTarget() { SmbClient client = new SmbClient() { @Override protected ResponseData getResponseData(final String uri, final boolean includeContent) { try { Thread.sleep(10000); } catch (InterruptedException e) { throw new CrawlingAccessException(e); } return null;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/NamingTest.java
public void testWINSOnly () throws CIFSException, UnknownHostException { Properties prop = new Properties(); prop.setProperty("jcifs.resolveOrder", "WINS"); prop.setProperty("jcifs.netbios.wins", getRequiredProperty("jcifs.netbios.wins")); PropertyConfiguration cfg = new PropertyConfiguration(prop); BaseContext c = new BaseContext(cfg);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 10:48:05 UTC 2020 - 7K bytes - Viewed (0) -
docs/de/docs/advanced/additional-responses.md
"second old key": "second old value", } new_dict = {**old_dict, "new key": "new value"} ``` Hier wird `new_dict` alle Schlüssel-Wert-Paare von `old_dict` plus das neue Schlüssel-Wert-Paar enthalten: ```Python { "old key": "old value", "second old key": "second old value", "new key": "new value", } ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java
return asJson(new ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList())) .total(pager.getAllRecordCount()).status(Status.OK).result()); } // GET /api/admin/boostdoc/setting/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) { return asJson(new ApiConfigResponse()
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
} return asJson(new ApiResult.ApiUpdateResponse().id(id).created(false).status(ApiResult.Status.OK).result()); } protected EditBody createEditBody(final Group entity) { final EditBody body = new EditBody(); copyBeanToBean(entity, body, copyOp -> { copyOp.excludeNull(); });
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5.8K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java
root = Optional.of(new BinaryNode(rng.nextInt(), root, Optional.<BinaryNode>absent())); } return root; } }, ALL_RIGHT { @Override Optional<BinaryNode> createTree(int size, Random rng) { Optional<BinaryNode> root = Optional.absent(); for (int i = 0; i < size; i++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 26 19:18:53 UTC 2019 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsDataConfigCB.java
_specification = new HpSpecification(); } return _specification; } protected void assertQueryPurpose() { } protected void assertAggregationPurpose() { } protected void assertSpecifyPurpose() { } public static class HpSpecification { protected List<String> columnList = new ArrayList<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SambaHelperTest.java
public SambaHelper sambaHelper; @Override public void setUp() throws Exception { super.setUp(); sambaHelper = new SambaHelper(); } public void test_smb_account() throws SmbException { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getSmbAvailableSidTypes() { return "1,2,4:2,5:1"; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jun 27 10:55:43 UTC 2024 - 3.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/CrawlingParameterUtil.java
private static final ThreadLocal<CrawlerContext> ROBOT_CONTEXT_THREAD_LOCAL = new ThreadLocal<>(); private static final ThreadLocal<UrlQueueService<UrlQueue<?>>> URL_QUEUE_SERVICE_THREAD_LOCAL = new ThreadLocal<>(); private static final ThreadLocal<DataService<AccessResult<?>>> DATA_SERVICE_THREAD_LOCAL = new ThreadLocal<>(); private CrawlingParameterUtil() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/ModelUtils.java
PluginContainer childContainer, PluginContainer parentContainer, boolean handleAsInheritance) { throw new UnsupportedOperationException(); } public static List<Plugin> orderAfterMerge( List<Plugin> merged, List<Plugin> highPrioritySource, List<Plugin> lowPrioritySource) { throw new UnsupportedOperationException(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2K bytes - Viewed (0)