- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 2,264 for Bratch (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/sso/SsoAction.java
activityHelper.login(getUserBean()); userInfoHelper.deleteUserCodeFromCookie(request); return getHtmlResponse(); }); } catch (final LoginFailureException lfe) { if (logger.isDebugEnabled()) { logger.debug("SSO login failure.", lfe); } if (ssoManager.available()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
if (responseData.getCharSet() != null) { is.setEncoding(responseData.getCharSet()); } parser.parse(is); } catch (final Exception e) { throw new CrawlingAccessException("Could not parse " + responseData.getUrl(), e); } final Document document = parser.getDocument();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} catch( ConnectException ce ) { // Try an alternate port if there was an issue communicating to the server // Only set the alternate port to the port property if it was successful int altPort = (port == 0 || port == DEFAULT_PORT) ? 139 : DEFAULT_PORT; negotiate( altPort, resp ); port = altPort; } catch( NoRouteToHostException nr ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
guava/src/com/google/common/net/HostAndPort.java
/** * Split a freeform string into a host and port, without strict validation. * * <p>Note that the host-only formats will leave the port field undefined. You can use {@link * #withDefaultPort(int)} to patch in a default value. * * @param hostPortString the input string to parse. * @return if parsing was successful, a populated HostAndPort object.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 22:02:22 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
logger.debug("Failed to create {} alias for {}", aliasName, createdIndexName); } })); } } catch (final ResourceNotFoundRuntimeException e) { // ignore } catch (final Exception e) { logger.warn("{} is not found.", aliasConfigDirPath, e); } } protected void sendConfigFiles(final String index) {
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/core/io/SerializeUtil.java
try { return ois.readObject(); } finally { CloseableUtil.close(ois); } } catch (final IOException ex) { throw new IORuntimeException(ex); } catch (final ClassNotFoundException ex) { throw new ClassNotFoundRuntimeException(ex); } }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.5K bytes - Viewed (0) -
callbacks.go
return &callback{before: name, processor: p} } func (p *processor) After(name string) *callback { return &callback{after: name, processor: p} } func (p *processor) Match(fc func(*DB) bool) *callback { return &callback{match: fc, processor: p} } func (p *processor) Register(name string, fn func(*DB)) error { return (&callback{processor: p}).Register(name, fn) }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 26 03:33:36 UTC 2024 - 8.6K bytes - Viewed (0) -
ci/official/containers/ml_build/builder.devtoolset/build_devtoolset.sh
for v in "${PYTHON_VERSIONS[@]}"; do ln -s "/usr/local/include/${v}" "/${TARGET}/usr/include/x86_64-linux-gnu/${v}" done # Patch glibc to be compatable with modern clang case "${VERSION}" in devtoolset-9) cd / patch -p0 < /glibc2.17-inline.patch ;;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Tue Sep 24 20:45:58 UTC 2024 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
/** * 初期コンテキストを作成して返します。 * * @return 初期コンテキスト */ public static InitialContext create() { try { return new InitialContext(); } catch (final NamingException ex) { throw new NamingRuntimeException(ex); } } /** * 指定した環境を使用して初期コンテキストを作成して返します。 * * @param env
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/MoreExecutors.java
} } if (f != null) { --active; try { return f.get(); } catch (ExecutionException eex) { ee = eex; } catch (InterruptedException iex) { throw iex; } catch (Exception rex) { // sneaky checked exception ee = new ExecutionException(rex); } } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 44.1K bytes - Viewed (0)