Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,125 for catanh (0.04 sec)

  1. src/main/java/org/codelibs/core/timer/TimeoutManager.java

    1. final String value = System.getProperty("corelib.timeout_task.num_of_threads");
    2. if (StringUtil.isNotBlank(value)) {
    3. try {
    4. nThreads = Integer.parseInt(value);
    5. } catch (final NumberFormatException e) {
    6. logger.warn("Failed to parse " + value, e);
    7. }
    8. }
    9. if (nThreads < 1) {
    10. nThreads = 1;
    11. }
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/WatchTest.java

    1. cr.createNewFile();
    2. assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
    3. }
    4. }
    5. catch ( TimeoutException e ) {
    6. log.info("Timeout waiting", e);
    7. fail("Did not recieve notification");
    8. }
    9. }
    10.  
    11.  
    12. @Test
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PluginHelper.java

    1. }
    2. } catch (final Exception e) {
    3. throw new PluginException("Failed to install the artifact " + artifact.getName(), e);
    4. }
    5. } else {
    6. try (final InputStream in = new FileInputStream(url)) {
    7. CopyUtil.copy(in, ResourceUtil.getPluginPath(fileName).toFile());
    8. } catch (final Exception e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 01:47:10 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

    1. resultData.setData(data.getBytes(Constants.UTF_8_CHARSET));
    2. }
    3. resultData.setEncoding(charsetName);
    4.  
    5. return resultData;
    6. } catch (final CrawlerSystemException e) {
    7. throw e;
    8. } catch (final Exception e) {
    9. throw new CrawlerSystemException("Could not store data.", e);
    10. }
    11. }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java

    1. if (propertyType == java.util.Date.class) {
    2. try {
    3. return TimestampConversionUtil.toDate(arg);
    4. } catch (final ParseRuntimeException ex) {
    5. try {
    6. return DateConversionUtil.toDate(arg);
    7. } catch (final ParseRuntimeException ex2) {
    8. return TimeConversionUtil.toDate(arg);
    9. }
    10. }
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

    1. }
    2. } catch (XMLStreamException | IOException e) {
    3. throw new PlexusConfigurationException(e.getMessage(), e);
    4. }
    5. }
    6.  
    7. private static BufferedInputStream reset(StreamSupplier inputSupplier, BufferedInputStream bis) throws IOException {
    8. try {
    9. bis.reset();
    10. return bis;
    11. } catch (IOException e) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

    1. }
    2. void connect0() throws SmbException {
    3. try {
    4. connect();
    5. } catch( UnknownHostException uhe ) {
    6. throw new SmbException( "Failed to connect to server", uhe );
    7. } catch( SmbException se ) {
    8. throw se;
    9. } catch( IOException ioe ) {
    10. throw new SmbException( "Failed to connect to server", ioe );
    11. }
    12. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

    1. return file;
    2. }
    3. }
    4. } catch (final Exception e) {
    5. logger.warn("Failed to load {}", fileMap, e);
    6. }
    7. return null;
    8. }).filter(file -> file != null).toArray(n -> new DictionaryFile<?>[n]);
    9. } catch (final IOException e) {
    10. throw new DictionaryException("Failed to access dictionaries", e);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

    1. this.response.getResumeKey(),
    2. this.response.getLastName(),
    3. th.getConfig().getListCount(),
    4. th.getConfig().getListSize() - FIND_OVERHEAD);
    5. }
    6. catch ( SmbException e ) {
    7. if ( this.response != null && this.response.isReceived() && e.getNtStatus() == NtStatus.NT_STATUS_NO_SUCH_FILE ) {
    8. doClose();
    9. return null;
    10. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

    1. } catch (final Exception e1) {
    2. log(logHelper, LogType.CRAWLING_EXCETPION, crawlerContext, urlQueue, e1);
    3. }
    4. if (noWaitOnFolder) {
    5. continue;
    6. }
    7. } catch (final CrawlingAccessException e) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top