Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,125 for catanh (0.05 sec)

  1. src/main/java/jcifs/smb1/http/Handler.java

    1. } catch (Exception ex) { }
    2. if (handlerClass == null) {
    3. handlerClass = ClassLoader.getSystemClassLoader(
    4. ).loadClass(className);
    5. }
    6. handler = (URLStreamHandler) handlerClass.newInstance();
    7. } catch (Exception ex) { }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

    1. if (StringUtils.isEmpty(nonce) || !nonce.equals(stateData.getNonce())) {
    2. throw new SsoLoginException("could not validate nonce");
    3. }
    4. } catch (final SsoLoginException e) {
    5. throw e;
    6. } catch (final Exception e) {
    7. throw new SsoLoginException("could not validate nonce", e);
    8. }
    9. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/JobHelper.java

    1. if (!Constants.T.equals(scheduledJob.getAvailable())) {
    2. logger.info("Inactive Job {}:{}", id, scheduledJob.getName());
    3. try {
    4. unregister(scheduledJob);
    5. } catch (final Exception e) {
    6. if (logger.isDebugEnabled()) {
    7. logger.debug("Failed to delete Job {}", scheduledJob, e);
    8. }
    9. }
    10. return;
    11. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/MapPutIfAbsentTester.java

    1. v0(),
    2. getMap().putIfAbsent(k0(), v0()));
    3. } catch (UnsupportedOperationException tolerated) {
    4. }
    5. expectUnchanged();
    6. }
    7.  
    8. @MapFeature.Require(absent = SUPPORTS_PUT)
    9. @CollectionSize.Require(absent = ZERO)
    10. public void testPutIfAbsent_unsupportedPresentDifferentValue() {
    11. try {
    12. getMap().putIfAbsent(k0(), v3());
    13. } catch (UnsupportedOperationException tolerated) {
    14. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 20:00:30 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

    1. Thread.sleep(10000);
    2. } catch (InterruptedException e) {
    3. throw new CrawlingAccessException(e);
    4. }
    5. return null;
    6. }
    7. };
    8. client.setAccessTimeout(1);
    9. try {
    10. client.doGet("http://localhost/");
    11. fail();
    12. } catch (CrawlingAccessException e) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultTransformerContextBuilder.java

    1. new DefaultModelBuildingRequest(request).setModelSource(source);
    2. return defaultModelBuilder.readRawModel(gaBuildingRequest, problems);
    3. } catch (ModelBuildingException e) {
    4. // gathered with problem collector
    5. }
    6. }
    7. return null;
    8. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 9.1K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/core/io/WriterUtil.java

    1. assertArgumentNotNull("os", os);
    2. assertArgumentNotEmpty("encoding", encoding);
    3.  
    4. try {
    5. return new OutputStreamWriter(os, encoding);
    6. } catch (final IOException e) {
    7. throw new IORuntimeException(e);
    8. }
    9. }
    10.  
    11. /**
    12. * プラットフォームデフォルトエンコーディングでファイルへ出力する{@link Writer}を作成します。
    13. *
    14. * @param file
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumenter.java

    1. expressionDocumentation.putAll(doco);
    2. }
    3. } catch (IOException e) {
    4. throw new ExpressionDocumentationException(
    5. "Failed to read documentation for expression root: " + root, e);
    6. } catch (XmlPullParserException e) {
    7. throw new ExpressionDocumentationException(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListenerTest.java

    1. });
    2. }
    3.  
    4. // start all threads at once
    5. try {
    6. startLatch.await();
    7. } catch (InterruptedException e) {
    8. e.printStackTrace();
    9. }
    10.  
    11. // wait for all thread to end
    12. try {
    13. endLatch.await();
    14. } catch (InterruptedException e) {
    15. e.printStackTrace();
    16. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

    1. public void start() {
    2. try {
    3. server.start();
    4. } catch (final Exception e) {
    5. throw new CrawlerSystemException(e);
    6. }
    7. }
    8.  
    9. public void stop() {
    10. try {
    11. server.stop();
    12. server.join();
    13. } catch (final Exception e) {
    14. throw new CrawlerSystemException(e);
    15. }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top