- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 46 for try (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java
validate(form, messages -> {}, this::asIndexHtml); verifyToken(this::asIndexHtml); if (VERSION_13_0.equals(form.targetVersion)) { try { upgradeFrom13_0(); upgradeFrom13_1(); upgradeFrom13_2(); upgradeFrom13_3(); upgradeFrom13_4(); upgradeFrom13_5();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 54K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
if ( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for reading? return true; } return exists(); // try opening and catch sharing violation? } @Override public boolean canWrite () throws SmbException { if ( getType() == TYPE_NAMED_PIPE ) { // try opening the pipe for writing? return true; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
throws CIFSException { try ( SmbTransportImpl trans = getTransport() ) { if ( response != null ) { response.clearReceived(); response.setExtendedSecurity(this.extendedSecurity); } try { if ( params.contains(RequestParam.NO_TIMEOUT) ) { this.expiration = -1;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
assertArgumentNotNull("in", in); assertArgumentNotNull("out", out); final FileInputStream is = InputStreamUtil.create(in); try { final FileOutputStream os = OutputStreamUtil.create(out); try { return copyInternal(is, os); } finally { CloseableUtil.close(os); } } finally {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 52.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
/* * Note the Transport thread isn't running yet so we can * read from the socket here. */ try { this.socket.setSoTimeout(this.transportContext.getConfig().getConnTimeout()); if ( peekKey() == null ) /* try to read header */ throw new IOException("transport closed in negotiate"); } finally {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
dictionaryPath = fessConfig.getIndexDictionaryPrefix() + "/" + path; } else { dictionaryPath = path; } try { source = FileUtil.readUTF8(filePath); try (CurlResponse response = ComponentUtil.getCurlHelper().post("/_configsync/file").param("path", dictionaryPath).body(source).execute()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
request.setAttribute(Constants.SEARCH_LOG_ACCESS_TYPE, Constants.SEARCH_LOG_ACCESS_TYPE_JSON); final JsonRequestParams params = new JsonRequestParams(request, fessConfig); try { response.setContentType("application/x-ndjson; charset=UTF-8"); final long count = searchHelper.scrollSearch(params, doc -> { buf.setLength(0); buf.append('{');
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
.setModelSource(new FileModelSource(pomFile)); DefaultModelProblemCollector problems = new DefaultModelProblemCollector(new DefaultModelBuildingResult()); try { Model model = readFileModel(request, problems); try { if (transformer != null && context != null) { transformer.transform(pomFile, context, model); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 83.6K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
} @Override public Activation transformActivation(Activation target) { stk.push(new ActivationFrame("activation", Optional.of(target))); try { return super.transformActivation(target); } finally { stk.pop(); } } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
// no credentials return !fessConfig.isLdapAuthValidation(); } final Hashtable<String, String> env = createAdminEnv(); try (DirContextHolder holder = getDirContext(() -> env)) { final DirContext context = holder.get(); if (logger.isDebugEnabled()) { logger.debug("Logged in as Bind DN. {}", context);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 65.9K bytes - Viewed (0)