- Sort Score
- Result 10 results
- Languages All
Results 461 - 470 of 1,024 for Exceptions (0.06 sec)
-
GeoInfo.java
L17: L18:import java.util.ArrayList; L19:import java.util.HashMap; L20:import java.util.List; L21:import java.util.Map; L22: L23:import org.codelibs.core.lang.StringUtil; L24:import org.codelibs.core.stream.StreamUtil; L25:import org.codelibs.fess.exception.InvalidQueryException; L26:import org.codelibs.fess.mylasta.direction.FessConfig; L27:import org.codelibs.fess.util.ComponentUtil; L28:import org.lastaflute.core.message.UserMessages; L29:import org.opensearch.index.query.BoolQueryBuilder; L30:import...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 4.7K bytes -
ImmutableRangeMap.java
} L224: Range<K> firstRange = ranges.get(0); L225: Range<K> lastRange = ranges.get(ranges.size() - 1); L226: return Range.create(firstRange.lowerBound, lastRange.upperBound); L227: } L228: L229: /** L230: * Guaranteed to throw an exception and leave the {@code RangeMap} unmodified. L231: * L232: * @throws UnsupportedOperationException always L233: * @deprecated Unsupported operation. L234: */ L235: @Deprecated L236: @Override L237: @DoNotCall("Always throws UnsupportedOperationException")...github.com/google/guava/android/guava/src/com/g...Wed Oct 30 16:15:19 UTC 2024 14.4K bytes -
FessTransformer.java
= getFessConfig().getCrawlerDocumentSiteEncoding(); L94: } else { L95: enc = encoding; L96: } L97: L98: try { L99: url = URLDecoder.decode(url, enc); L100: } catch (final Exception e) {} L101: } L102: L103: return abbreviateSite(url); L104: } L105: L106: default void putResultDataBody(final Map<String, Object> dataMap, final String key, final Object value) { L107: final FessConfig fessConfig = Co...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 9.5K bytes -
ImplementedInvokerAssistant.java
javax.sql.DataSource; L19: L20:import org.dbflute.bhv.core.InvokerAssistant; L21:import org.dbflute.bhv.core.context.ResourceParameter; L22:import org.dbflute.bhv.core.supplement.SequenceCacheHandler; L23:import org.dbflute.bhv.exception.BehaviorExceptionThrower; L24:import org.dbflute.bhv.exception.SQLExceptionHandlerFactory; L25:import org.dbflute.cbean.cipher.GearedCipherManager; L26:import org.dbflute.cbean.sqlclause.SqlClauseCreator; L27:import org.dbflute.dbmeta.DBMetaProvider; L28:import org.dbflute.dbway.DBDef;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 5.2K bytes -
AbstractLoadingCacheTest.java
L28: L29:/** L30: * Unit test for {@link AbstractLoadingCache}. L31: * L32: * @author Charles Fry L33: */ L34:public class AbstractLoadingCacheTest extends TestCase { L35: L36: public void testGetUnchecked_checked() { L37: final Exception cause = new Exception(); L38: final AtomicReference<Object> valueRef = new AtomicReference<>(); L39: LoadingCache<Object, Object> cache = L40: new AbstractLoadingCache<Object, Object>() { L41: @Override L42: public Object get(Object...github.com/google/guava/android/guava-tests/tes...Wed Sep 06 17:04:31 UTC 2023 5K bytes -
Service.java
be called on the {@link Listener}. L283: * L284: * @param from The previous state that is being transitioned from. Failure can occur in any L285: * state with the exception of {@linkplain State#NEW NEW} or {@linkplain State#TERMINATED L286: * TERMINATED}. L287: * @param failure The exception that caused the failure. L288: */ L289: public void failed(State from, Throwable failure) {} L290: } L291:}...github.com/google/guava/guava/src/com/google/co...Tue Apr 04 09:45:04 UTC 2023 12.1K bytes -
AdminDictStemmeroverrideAction.java
org.lastaflute.web.response.HtmlResponse; L42:import org.lastaflute.web.response.render.RenderData; L43:import org.lastaflute.web.ruts.process.ActionRuntime; L44:import org.lastaflute.web.validation.VaErrorHook; L45:import org.lastaflute.web.validation.exception.ValidationErrorException; L46: L47:import jakarta.annotation.Resource; L48: L49:/** L50: * @author shinsuke L51: */ L52:public class AdminDictStemmeroverrideAction extends FessAdminAction { L53: L54: public static final String ROLE = "admin-dict";...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 18.6K bytes -
LdapConfigurationException.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 LdapConfigurationException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public LdapConfigurationException(final String message) { L23: super(message); L24:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 878 bytes -
ResultOffsetExceededException.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 ResultOffsetExceededException extends FessSystemException { L19: private static final long serialVersionUID = 1L; L20: L21: public ResultOffsetExceededException(final String message) { L22: super(message); L23:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 884 bytes -
AdminWebauthAction.java
getWebAuthentication(form).ifPresent(entity -> { L204: try { L205: webAuthenticationService.store(entity); L206: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L207: } catch (final Exception e) { L208: logger.warn("Failed to process a request.", e); L209: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L210: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 15.7K bytes