- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 1,024 for Exceptions (0.05 sec)
-
LoginAction.java
org.codelibs.fess.util.ComponentUtil; L27:import org.codelibs.fess.util.RenderDataUtil; L28:import org.dbflute.optional.OptionalEntity; L29:import org.dbflute.optional.OptionalThing; L30:import org.lastaflute.web.Execute; L31:import org.lastaflute.web.login.exception.LoginFailureException; L32:import org.lastaflute.web.response.HtmlResponse; L33:import org.lastaflute.web.validation.VaErrorHook; L34: L35:import jakarta.annotation.Resource; L36:import jakarta.servlet.http.HttpSession; L37: L38:public class LoginAction...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 6.1K bytes -
GsaConfigException.java
"AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.exception; L17: L18:public class GsaConfigException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public GsaConfigException(final String message, final Throwable cause) { L23: super(message,...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 978 bytes -
Invokable.java
L120: @SuppressWarnings("CatchingUnchecked") // sneaky checked exception L121: public final boolean trySetAccessible() { L122: // We can't call accessibleObject.trySetAccessible since that was added in Java 9 and this code L123: // should work on Java 8. So we emulate it this way. L124: try { L125: accessibleObject.setAccessible(true); L126: return true; L127: } catch (Exception e) { // sneaky checked exception L128: return false; L129: } L130: } L131: L132: /** See...github.com/google/guava/guava/src/com/google/co...Thu Dec 14 20:35:03 UTC 2023 19.6K bytes -
AbstractTester.java
Runnable tearDown; L43: L44: // public so that it can be referenced in generated GWT tests. L45: @Override L46: public void setUp() throws Exception { L47: if (setUp != null) { L48: setUp.run(); L49: } L50: } L51: L52: // public so that it can be referenced in generated GWT tests. L53: @Override L54: public void tearDown() throws Exception { L55: if (tearDown != null) { L56: tearDown.run(); L57: } L58: } L59: L60: // public so that it can be referenced in generated GWT...github.com/google/guava/android/guava-testlib/s...Mon Oct 28 21:41:47 UTC 2024 3.4K bytes -
RequestBodyCompression.java
final Moshi moshi = new Moshi.Builder().build(); L48: private final JsonAdapter<Map<String, String>> mapJsonAdapter = moshi.adapter( L49: Types.newParameterizedType(Map.class, String.class, String.class)); L50: L51: public void run() throws Exception { L52: Map<String, String> requestBody = new LinkedHashMap<>(); L53: requestBody.put("longUrl", "https://publicobject.com/2014/12/04/html-formatting-javadocs/"); L54: RequestBody jsonRequestBody = RequestBody.create( L55: mapJson...github.com/square/okhttp/samples/guide/src/main...Sat May 25 18:02:55 UTC 2019 3.8K bytes -
AbstractTester.java
Runnable tearDown; L43: L44: // public so that it can be referenced in generated GWT tests. L45: @Override L46: public void setUp() throws Exception { L47: if (setUp != null) { L48: setUp.run(); L49: } L50: } L51: L52: // public so that it can be referenced in generated GWT tests. L53: @Override L54: public void tearDown() throws Exception { L55: if (tearDown != null) { L56: tearDown.run(); L57: } L58: } L59: L60: // public so that it can be referenced in generated GWT...github.com/google/guava/guava-testlib/src/com/g...Mon Oct 28 21:41:47 UTC 2024 3.4K bytes -
SearchEngineClientException.java
CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.es.client; L17: L18:import org.codelibs.fess.exception.FessSystemException; L19: L20:public class SearchEngineClientException extends FessSystemException { L21: L22: private static final long serialVersionUID = 1L; L23: L24: public SearchEngineClientException(final String message, final Throwable...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1K bytes -
AdminRelatedcontentAction.java
getRelatedContent(form).ifPresent(entity -> { L188: try { L189: relatedContentService.store(entity); L190: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L191: } catch (final Exception e) { L192: logger.warn("Failed to process a request.", e); L193: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L194: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.2K bytes -
AdminBoostdocAction.java
getBoostDocumentRule(form).ifPresent(entity -> { L188: try { L189: boostDocumentRuleService.store(entity); L190: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L191: } catch (final Exception e) { L192: logger.warn("Failed to process a request.", e); L193: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L194: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.1K bytes -
MockWebServer.kt
IOException) { L422: logger.fine("$this connection from ${raw.inetAddress} failed: $e") L423: } catch (e: Exception) { L424: logger.log(Level.SEVERE, "$this connection from ${raw.inetAddress} crashed", e) L425: } L426: } L427: } L428: L429: internal inner class SocketHandler(private val raw: Socket) { L430: private var sequenceNumber = 0 L431: L432: @Throws(Exception::class) L433: fun handle() { L434: if (!processTunnelRequests()) return L435: L436: val socketPolicy...github.com/square/okhttp/mockwebserver/src/main...Sun Mar 31 17:16:15 UTC 2024 37.4K bytes