- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 1,024 for Exceptions (0.06 sec)
-
AdminGroupAction.java
L193: getGroup(form).ifPresent(entity -> { L194: try { L195: groupService.store(entity); L196: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L197: } catch (final Exception e) { L198: logger.warn("Failed to add {}", entity, e); L199: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L200: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13.2K bytes -
AdminPathmapAction.java
getPathMapping(form).ifPresent(entity -> { L189: try { L190: pathMappingService.store(entity); L191: saveInfo(messages -> messages.addSuccessCrudCreateCrudTable(GLOBAL)); L192: } catch (final Exception e) { L193: logger.warn("Failed to process a request.", e); L194: throwValidationError(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, buildThrowableMessage(e)), L195: this::asEditHtml);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 13K bytes -
GenerateThumbnailJob.java
L26:import org.apache.logging.log4j.LogManager; L27:import org.apache.logging.log4j.Logger; L28:import org.codelibs.core.lang.StringUtil; L29:import org.codelibs.core.timer.TimeoutTask; L30:import org.codelibs.fess.Constants; L31:import org.codelibs.fess.exception.JobProcessingException; L32:import org.codelibs.fess.exec.ThumbnailGenerator; L33:import org.codelibs.fess.helper.ProcessHelper; L34:import org.codelibs.fess.mylasta.direction.FessConfig; L35:import org.codelibs.fess.util.ComponentUtil; L36:import...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 10.6K bytes -
SuggestJob.java
L26:import org.apache.logging.log4j.LogManager; L27:import org.apache.logging.log4j.Logger; L28:import org.codelibs.core.lang.StringUtil; L29:import org.codelibs.core.timer.TimeoutTask; L30:import org.codelibs.fess.Constants; L31:import org.codelibs.fess.exception.JobProcessingException; L32:import org.codelibs.fess.exec.SuggestCreator; L33:import org.codelibs.fess.helper.ProcessHelper; L34:import org.codelibs.fess.mylasta.direction.FessConfig; L35:import org.codelibs.fess.util.ComponentUtil; L36:import o...github.com/codelibs/fess/src/main/java/org/code...Sun Jun 23 04:13:47 UTC 2024 10K bytes -
FessSystemException.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 FessSystemException extends RuntimeException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public FessSystemException(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 1.2K bytes -
SearchLogBhv.java
org.apache.logging.log4j.Logger; L29:import org.codelibs.core.misc.Pair; L30:import org.codelibs.fess.es.log.bsbhv.BsSearchLogBhv; L31:import org.codelibs.fess.es.log.exentity.SearchLog; L32:import org.codelibs.fess.util.ComponentUtil; L33:import org.dbflute.exception.IllegalBehaviorStateException; L34:import org.dbflute.util.DfTypeUtil; L35: L36:/** L37: * @author FreeGen L38: */ L39:public class SearchLogBhv extends BsSearchLogBhv { L40: private static final Logger logger = LogManager.getLogger(SearchLogBhv.class);...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.8K bytes -
FluentIterableTest.java
dSkipAll() throws Exception { L636: Collection<String> set = Sets.newLinkedHashSet(); L637: Collections.addAll(set, "a", "b", "c"); L638: FluentIterable<String> tail = FluentIterable.from(set).skip(2); L639: set.remove("a"); L640: set.remove("b"); L641: assertFalse(tail.iterator().hasNext()); L642: } L643: L644: public void testSkip_structurallyModifiedSkipAllList() throws Exception { L645: List<String> list = Lists.newArrayList("a", "b", "c"); L646: FluentIterable<String>...github.com/google/guava/android/guava-tests/tes...Wed Oct 30 16:15:19 UTC 2024 30.4K bytes -
InvalidQueryException.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:import org.codelibs.fess.mylasta.action.FessMessages; L19:import org.lastaflute.web.validation.VaMessenger; L20: L21:public class InvalidQueryException extends FessSystemException { L22: L23: private static final long serialVersionUID...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.4K bytes -
SsoMessageException.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:import org.codelibs.fess.mylasta.action.FessMessages; L19:import org.lastaflute.web.validation.VaMessenger; L20: L21:public class SsoMessageException extends FessSystemException { L22: L23: private static final long serialVersionUID...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.4K bytes -
MoreFilesTest.java
static Path root() { L68: return FS.getRootDirectories().iterator().next(); L69: } L70: L71: private Path tempDir; L72: L73: @Override L74: protected void setUp() throws Exception { L75: tempDir = Files.createTempDirectory("MoreFilesTest"); L76: } L77: L78: @Override L79: protected void tearDown() throws Exception { L80: if (tempDir != null) { L81: // delete tempDir and its contents L82: Files.walkFileTree( L83: tempDir, L84: new SimpleFileVisitor<Path>()...github.com/google/guava/android/guava-tests/tes...Thu Oct 31 16:07:00 UTC 2024 26.5K bytes