Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for targetRole (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsBadWordCA.java

        public void setTargetRole_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setTargetRole_Terms("targetRole", opLambda, null);
        }
    
        public void setTargetRole_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsBadWordCA> aggsLambda) {
            setTargetRole_Terms("targetRole", opLambda, aggsLambda);
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 46.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/BadWordDbm.java

                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnTargetRole = cci("targetRole", "targetRole", null, null, String.class, "targetRole", null, false,
                false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 27 07:01:25 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            try {
                Path targetFile = tempDir.resolve("target.tmp");
                Files.createFile(targetFile);
    
                // First delete succeeds
                assertTrue(Files.deleteIfExists(targetFile));
    
                // Second delete returns false (file already gone)
                assertFalse(Files.deleteIfExists(targetFile));
            } finally {
                deleteDirectory(tempDir.toFile());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 20.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

            final File baseDir = new File(getServletContext().getRealPath("/"));
            final File targetFile = new File(getServletContext().getRealPath(fileName));
            final List<File> fileList = getAccessibleFileList(baseDir);
            for (final File file : fileList) {
                if (targetFile.equals(file)) {
                    return OptionalEntity.of(targetFile);
                }
            }
            return OptionalEntity.empty();
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 23 23:57:26 GMT 2026
    - 20.1K bytes
    - Click Count (0)
Back to Top