Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for regenerate (0.18 sec)

  1. pom.xml

    					</webResources>
    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-dependency-plugin</artifactId>
    				<executions>
    					<execution>
    						<id>unpack-provided</id>
    						<phase>generate-resources</phase>
    						<goals>
    							<goal>unpack-dependencies</goal>
    						</goals>
    						<configuration>
    							<includeScope>provided</includeScope>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                            logger.debug("Interupted task.", e);
                        }
                    } catch (final Exception e) {
                        if (generating) {
                            logger.warn("Failed to generate thumbnail.", e);
                        }
                    }
                }
                if (!taskList.isEmpty()) {
                    storeQueue(taskList);
                }
            }, "ThumbnailGenerator");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/main/config/openapi/openapi-user.yaml

              schema:
                type: array
                items:
                  type: string
                example: [label]
            - name: field
              in: query
              description: Field name to generate suggest words
              required: false
              style: form
              explode: true
              schema:
                type: array
                items:
                  type: string
                example: [python]
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

            }
    
            final TimeoutTask timeoutTask = createTimeoutTask();
            try {
                executeThumbnailGenerator();
            } catch (final Exception e) {
                logger.warn("Failed to generate thumbnails.", e);
                resultBuf.append(e.getMessage()).append("\n");
            } finally {
                if (timeoutTask != null && !timeoutTask.isCanceled()) {
                    timeoutTask.cancel();
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals("", systemHelper.abbreviateLongText(""));
            assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4000).collect(Collectors.joining())).length());
            assertEquals(4000, systemHelper.abbreviateLongText(Stream.generate(() -> "a").limit(4001).collect(Collectors.joining())).length());
        }
    
        public void test_getLanguageItems() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
Back to top