Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for Entry (0.18 sec)

  1. dbflute_fess/dfprop/classificationDefinitionMap.dfprop

        #    ; map:{code=0; name=False; alias=Unchecked; comment=means no ; sisterCode=false}
        #}
        # example for table classification
        #; MemberStatus = list:{
        #    ; map:{topComment=status of member from entry to withdrawal; codeType=String}
        #    ; map:{
        #        ; table=MEMBER_STATUS
        #        ; code=MEMBER_STATUS_CODE; name=MEMBER_STATUS_NAME
        #        ; comment=DESCRIPTION; orderBy=DISPLAY_ORDER
        #    }
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

                for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
                    final CrawlingInfoParam crawlingInfoParam = new CrawlingInfoParam();
                    crawlingInfoParam.setCrawlingInfoId(crawlingInfo.getId());
                    crawlingInfoParam.setKey(entry.getKey());
                    crawlingInfoParam.setValue(entry.getValue());
                    crawlingInfoParamList.add(crawlingInfoParam);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
  3. src/main/java/org/codelibs/fess/util/DocMap.java

        }
    
        @Override
        public Collection<Object> values() {
            return parent.values();
        }
    
        @Override
        public Set<java.util.Map.Entry<String, Object>> entrySet() {
            if (parent.containsKey(LANG_KEY)) {
                final List<java.util.Map.Entry<String, Object>> list = new ArrayList<>(parent.entrySet());
                Collections.sort(list, (o1, o2) -> {
                    final String k1 = o1.getKey();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

        public static final String PATH = "testmail.dfmail";
    
        // ===================================================================================
        //                                                                         Entry Point
        //                                                                         ===========
        public static TestmailPostcard droppedInto(Postbox postbox, MPCall<TestmailPostcard> postcardLambda) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                        appendQuery(queryBuf, q);
                    }));
    
            stream(params.getFields()).of(stream -> stream.forEach(entry -> {
                final String key = entry.getKey();
                final String[] values = entry.getValue();
                if (values == null) {
                    // nothing
                } else if (values.length == 1) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java

            if (StringUtil.isNotBlank(logFilePath)) {
                final Path logDirPath = Paths.get(logFilePath);
                try (Stream<Path> stream = Files.list(logDirPath)) {
                    stream.filter(entry -> isLogFilename(entry.getFileName().toString())).sorted().forEach(filePath -> {
                        final Map<String, Object> map = new HashMap<>();
                        final String name = filePath.getFileName().toString();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        //                                                                        ============
        // -----------------------------------------------------
        //                                            Entry Page
        //                                            ----------
    
        // -----------------------------------------------------
        //                                               Details
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                if (StringUtil.isBlank(key)) {
                    return false;
                }
                return pattern.matcher(key).matches();
            }).collect(Collectors.toMap(Entry<String, String>::getKey, Entry<String, String>::getValue));
        }
    
        protected Map<String, String> getEnvMap() {
            return System.getenv();
        }
    
        public String getVersion() {
            return version;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

                    counter++;
                    final Map<String, Object> localDataMap =
                            dataMap.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
                    String processingUrl = urlQueue.poll();
                    processedUrls.add(processingUrl);
                    if (deleteUrlList.contains(processingUrl)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java

        //                                                                        ============
        // -----------------------------------------------------
        //                                            Entry Page
        //                                            ----------
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
Back to top