Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,125 for catanh (0.05 sec)

  1. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

    1. } catch (IOException e) {
    2. throw new IORuntimeException(e);
    3. }
    4. } else if (url.contains("plugin/repo2")) {
    5. try (InputStream is = ResourceUtil.getResourceAsStream(url)) {
    6. return new String(InputStreamUtil.getBytes(is), Constants.UTF_8);
    7. } catch (IOException e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 12:38:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/FileEntryAdapterIterator.java

    1. }
    2. catch ( MalformedURLException e ) {
    3. log.error("Failed to create child URL", e);
    4. continue;
    5. }
    6. }
    7.  
    8. try ( SmbResource r = adapt(fe) ) {
    9. if ( this.filter.accept(r) ) {
    10. return r;
    11. }
    12. }
    13. catch ( MalformedURLException e ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

    1. return extractData.getContent();
    2. } catch (final IOException e) {
    3. throw new ExtractException("Could not open " + outputFile.getAbsolutePath(), e);
    4. }
    5. }
    6. try {
    7. return new String(FileUtil.readBytes(outputFile), outputEncoding);
    8. } catch (final UnsupportedEncodingException e) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

    1. if (VERBOSE) {
    2. System.out.println("Check " + reloadableFile.getAbsolutePath() + " (interval: " + reloadInterval + "ms)");
    3. }
    4. }
    5. } catch (final Exception e) {
    6. throw new IllegalArgumentException("Could not access " + monitoringFilePath, e);
    7. }
    8. }
    9.  
    10. }
    11.  
    12. @Override
    13. public Tokenizer create() {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/KerberosTest.java

    1. try ( SmbResource r = f.resolve("test") ) {
    2. r.exists();
    3. }
    4. }
    5. catch ( SmbUnsupportedOperationException e ) {
    6. Assume.assumeTrue("Using short names", false);
    7. }
    8. catch ( SmbException e ) {
    9. if ( ! ( e.getCause() instanceof GSSException ) ) {
    10. throw e;
    11. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 11.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk9Platform.kt

    1. // be used. Observed if you didn't specify SSLParameters.setApplicationProtocols
    2. when (val protocol = sslSocket.applicationProtocol) {
    3. null, "" -> null
    4. else -> protocol
    5. }
    6. } catch (e: UnsupportedOperationException) {
    7. // https://docs.oracle.com/javase/9/docs/api/javax/net/ssl/SSLSocket.html#getApplicationProtocol--
    8. null
    9. }
    10. }
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

    1. writer.write(metadata);
    2. }
    3. });
    4. } catch (final SsoMessageException e) {
    5. throw e;
    6. } catch (final Exception e) {
    7. throw new SsoMessageException(
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/Closer.java

    1. * // do stuff
    2. * } catch (Throwable e) {
    3. * // ensure that any checked exception types other than IOException that could be thrown are
    4. * // provided here, e.g. throw closer.rethrow(e, CheckedException.class);
    5. * throw closer.rethrow(e);
    6. * } finally {
    7. * closer.close();
    8. * }
    9. * }</pre>
    10. *
    11. * <p>Note that this try-catch-finally block is not equivalent to a try-catch-finally block using
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/HeldCertificateTest.kt

    1. |
    2. """.trimMargin()
    3. try {
    4. decode(certificatePem)
    5. fail<Any>()
    6. } catch (expected: IllegalArgumentException) {
    7. assertThat(expected.message).isEqualTo("string does not include a private key")
    8. }
    9. try {
    10. decode(pkcs8Pem)
    11. fail<Any>()
    12. } catch (expected: IllegalArgumentException) {
    13. assertThat(expected.message).isEqualTo("string does not include a certificate")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

    1. return new SuggestItem(wordsList.toArray(new String[wordsList.size()]), readingList.toArray(new String[readingList.size()][]),
    2. fields, 0, score, -1, tags, roles, langs, SuggestItem.Kind.QUERY);
    3. } catch (final IOException e) {
    4. throw new SuggesterException("Failed to SuggestItem from search words.", e);
    5. }
    6. }
    7.  
    8. @Override
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top