Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 11 (0.32 sec)

  1. pom.xml

    					<execution>
    						<goals>
    							<goal>format</goal>
    						</goals>
    					</execution>
    				</executions>
    				<configuration>
    					<configFile>https://www.codelibs.org/assets/formatter/eclipse-formatter-1.1.xml</configFile>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.apache.maven.plugins</groupId>
    				<artifactId>maven-gpg-plugin</artifactId>
    				<version>3.2.7</version>
    				<executions>
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Dec 20 04:15:34 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. src/main/assemblies/files/generate-thumbnail

      if [[ -z "${im_cmd}" ]] ; then
        echo "ImageMagick (convert or magick) does not exist."
        exit 1
      fi
      check_command pdftoppm
      check_command unoconv
      tmp_pdf_file=/tmp/thumbnail.$$.pdf
      unoconv -e PageRange=1-1 -o ${tmp_pdf_file} -f pdf "${target_file}"
      if [[ ! -f ${tmp_pdf_file} ]] ; then
        echo "unoconv does not work."
        exit 1
      fi
      tmp_png_prefix=/tmp/thumbnail.png.$$
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

                    + "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\n"
                    + "        xmlns:image=\"http://www.google.com/schemas/sitemap-image/1.1\">\n" + "  <url>\n"
                    + "    <loc>http://www.example.com/sample.html</loc>\n" + "    <image:image>\n"
                    + "      <image:loc>http://www.example.com/image.jpg</image:loc>\n"
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/io/FileUtilTest.java

            // Write 11MB of data
            try (FileOutputStream fos = new FileOutputStream(largeFile)) {
                final byte[] chunk = new byte[1024 * 1024]; // 1MB
                for (int i = 0; i < 11; i++) { // Write 11MB
                    fos.write(chunk);
                }
            }
    
            try {
                FileUtil.readBytes(largeFile);
                fail("Expected IORuntimeException for large file");
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/SuggesterRefactoringTest.java

            final Field field = Suggester.class.getDeclaredField("EXPECTED_INDEX_COUNT");
            field.setAccessible(true);
            final int value = (int) field.get(null);
    
            assertEquals("EXPECTED_INDEX_COUNT should be 1", 1, value);
        }
    
        /**
         * Integration test for complete index lifecycle with refactored methods.
         * Tests that createNextIndex and switchIndex work together correctly.
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

     */
    public class S3ClientTest extends PlainTestCase {
    
        private static final Logger logger = LogManager.getLogger(S3ClientTest.class);
    
        private static final String IMAGE_NAME = "minio/minio:RELEASE.2022-06-02T02-11-04Z";
    
        private static final String SECRET_KEY = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY";
    
        private static final String ACCESS_KEY = "AKIAIOSFODNN7EXAMPLE";
    
        public S3Client s3Client;
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                    storeChildUrls(childUrlSet.stream().filter(rd -> StringUtil.isNotBlank(rd.getUrl())).collect(Collectors.toSet()),
                            urlQueue.getUrl(), urlQueue.getDepth() != null ? urlQueue.getDepth() + 1 : 1);
                } catch (final Throwable t) {
                    if (!ComponentUtil.available()) {
                        throw new ContainerNotAvailableException(t);
                    }
                    throw t;
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                if (logger.isInfoEnabled()) {
                    printProcessingInfo("queries", 1, new SuggestItem[] { item }, parseTime - start, indexTime - parseTime);
                }
                return new SuggestIndexResponse(1, 1, response.getErrors(), System.currentTimeMillis() - start);
            } catch (final Exception e) {
                final String msg = "Failed to index from search word: index=" + index//
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 34.4K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

        /** Property key for SMB1 owner attributes. */
        public static final String SMB_OWNER_ATTRIBUTES = "smb1OwnerAttributes";
    
        static {
            if (Config.getInt("jcifs.smb1.util.loglevel", -1) == -1) {
                if (logger.isTraceEnabled()) {
                    LogStream.setLevel(4);
                } else if (logger.isDebugEnabled()) {
                    LogStream.setLevel(3);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

            defaultSettings.put("onelogin.saml2.sp.single_logout_service.binding", "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect");
            defaultSettings.put("onelogin.saml2.sp.nameidformat", "urn:oasis:names:tc:SAML:1.1:nameid-format:emailAddress");
            defaultSettings.put("onelogin.saml2.sp.x509cert", "");
            defaultSettings.put("onelogin.saml2.sp.privatekey", "");
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
Back to top