Search Options

Results per page
Sort
Preferred Languages
Advance

Results 581 - 590 of 1,205 for Exceptions (0.05 sec)

  1. ClUnsupportedOperationException.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.core.exception; L17: L18:/** L19: * {@link UnsupportedOperationException}をラップする例外です。 L20: * L21: * @author wyukawa L22: */ L23:public class ClUnsupportedOperationException extends UnsupportedOperationException { L24: L25: private static final long serialVersionUID...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      1.8K bytes
  2. ParseRuntimeException.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.core.exception; L17: L18:import static org.codelibs.core.collection.ArrayUtil.asArray; L19: L20:import java.text.ParseException; L21: L22:/** L23: * 解析できなかった場合にスローされる例外です。 L24: * L25: * @author higa L26: */ L27:public class ParseRuntimeException extends ClRuntimeException...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      1.5K bytes
  3. 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
  4. PurgeDocJob.java

    QueryBuilder queryBuilder = QueryBuilders.rangeQuery(fessConfig.getIndexFieldExpires()).to("now"); L38: try { L39: searchEngineClient.deleteByQuery(fessConfig.getIndexDocumentUpdateIndex(), queryBuilder); L40: L41: } catch (final Exception e) { L42: logger.error("Could not delete expired documents: {}", queryBuilder, e); L43: resultBuf.append(e.getMessage()).append("\n"); L44: } L45: L46: return resultBuf.toString(); L47: } L48: L49:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.8K bytes
  5. SambaHelper.java

    SID sid) { L61: final int type = sid.getType(); L62: if (logger.isDebugEnabled()) { L63: try { L64: logger.debug("Processing SID: {} {} {}", type, sid, sid.toDisplayString()); L65: } catch (final Exception e) { L66: // ignore L67: } L68: } L69: final Integer id = fessConfig.getAvailableSmbSidType(type); L70: if (id != null) { L71: return createSearchRole(id, sid.getAccountName()); L72: ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Jun 27 10:58:21 UTC 2024
      3.3K bytes
  6. IOIntegrationTest.java

    extends CurlRequest { L43: L44: MockCurlRequest(Curl.Method method, String url) { L45: super(method, url); L46: } L47: L48: @Override L49: public void connect(Consumer<HttpURLConnection> actionListener, Consumer<Exception> exceptionListener) { L50: try { L51: actionListener.accept(new MockHttpURLConnection(new URL(url))); L52: } catch (MalformedURLException e) { L53: exceptionListener.accept(e); L54: }...
    github.com/codelibs/curl4j/src/test/java/org/co...
    Mon Nov 14 21:05:19 UTC 2022
      3.4K bytes
  7. EmptyArgumentException.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.core.exception; L17: L18:/** L19: * 空の場合にスローされる例外です。 L20: * L21: * @author higa L22: */ L23:public class EmptyArgumentException extends ClIllegalArgumentException { L24: L25: private static final long serialVersionUID = 4625805280526951642L; L26: L27: /**...
    github.com/codelibs/corelib/src/main/java/org/c...
    Thu Mar 07 01:59:08 UTC 2024
      1.8K bytes
  8. AbstractPackageSanityTests.java

    explicit {@code testSerializable()} test in the corresponding {@code CTest} class, and {@code L185: * C} will be excluded from automated serialization test performed by this method. L186: */ L187: @Test L188: public void testSerializable() throws Exception { L189: // TODO: when we use @BeforeClass, we can pay the cost of class path scanning only once. L190: for (Class<?> classToTest : L191: findClassesToTest(loadClassesInPackage(), SERIALIZABLE_TEST_METHOD_NAMES)) { L192: if (Ser...
    github.com/google/guava/android/guava-testlib/s...
    Thu Oct 17 19:43:49 UTC 2024
      17.9K bytes
  9. MoreObjectsTest.java

    erException.class, () -> MoreObjects.firstNonNull(null, null)); L46: } L47: L48: // ToStringHelper's tests are in ToStringHelperTest L49: L50: @J2ktIncompatible L51: @GwtIncompatible("NullPointerTester") L52: public void testNulls() throws Exception { L53: NullPointerTester tester = new NullPointerTester(); L54: tester.ignore(MoreObjects.class.getMethod("firstNonNull", Object.class, Object.class)); L55: tester.testAllPublicStaticMethods(MoreObjects.class); L56: tester.testAllPub...
    github.com/google/guava/android/guava-tests/tes...
    Tue Sep 17 18:14:12 UTC 2024
      2.1K bytes
  10. MoreObjectsTest.java

    erException.class, () -> MoreObjects.firstNonNull(null, null)); L46: } L47: L48: // ToStringHelper's tests are in ToStringHelperTest L49: L50: @J2ktIncompatible L51: @GwtIncompatible("NullPointerTester") L52: public void testNulls() throws Exception { L53: NullPointerTester tester = new NullPointerTester(); L54: tester.ignore(MoreObjects.class.getMethod("firstNonNull", Object.class, Object.class)); L55: tester.testAllPublicStaticMethods(MoreObjects.class); L56: tester.testAllPub...
    github.com/google/guava/guava-tests/test/com/go...
    Tue Sep 17 18:14:12 UTC 2024
      2.1K bytes
Back to top