Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for visual (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                params.put("Client IP", e.getClientIp());
                params.put("Referer", e.getReferer());
                params.put("Languages", e.getLanguages());
                params.put("Virtual Host", e.getVirtualHost());
                params.put("Roles", e.getRoles() != null ? String.join(" ", e.getRoles()) : StringUtil.EMPTY);
                params.put("User Agent", e.getUserAgent());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/ByteStreams.java

       *       into the other buffer (userspace). Note that if the file is very large, a naive
       *       implementation will effectively put the whole file in memory. On many systems with paging
       *       and virtual memory, this is not a problem - because it is mapped read-only, the kernel
       *       can always page it to disk "for free". However, on systems where killing processes
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jan 17 18:59:58 GMT 2024
    - 29.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            roleTypeList.add("admin");
            dataMap.put("role", roleTypeList);
            final List<String> virtualHostList = new ArrayList<String>();
            virtualHostList.add("site1");
            dataMap.put("virtual_host", virtualHostList);
    
            assertEquals(
                    "87e7e4a2d5e2e24147ffd8820b70877a4cee15abdd48f7702e8233f0d17d7369f6d861124f106b541e6652a3e7a94cd51a332a2500fd065de6920559458cd3de",
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setVirtualHostValue(final String value) {
            setSystemProperty(Constants.VIRTUAL_HOST_VALUE_PROPERTY, value);
            propMap.remove(VIRTUAL_HOST_HEADERS);
        }
    
        default String getVirtualHostValue() {
            return getSystemProperty(Constants.VIRTUAL_HOST_VALUE_PROPERTY, getVirtualHostHeaders());
        }
    
        default void setLoginRequired(final boolean value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/MinimalIterable.java

     * second invocation, so implementors have made various choices, including:
     *
     * <ul>
     *   <li>returning the same iterator again
     *   <li>throwing an exception of some kind
     *   <li>or the usual, <i>robust</i> behavior, which all known {@link Collection} implementations
     *       have, of returning a new, independent iterator
     * </ul>
     *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/timer/SystemMonitorTarget.java

            append(buf, "percent", () -> processProbe.getProcessCpuPercent()).append(',');
            append(buf, "total", () -> processProbe.getProcessCpuTotalTime());
            buf.append("},");
            buf.append("\"virtual_memory\":{");
            append(buf, "total", () -> processProbe.getTotalVirtualMemorySize());
            buf.append('}');
            buf.append("},");
        }
    
        private void appendOsStats(final StringBuilder buf) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

                            copyOp.excludeNull();
                            copyOp.exclude(Stream.concat(Stream.of(Constants.COMMON_CONVERSION_RULE),
                                    Stream.of(Constants.PERMISSIONS, Constants.VIRTUAL_HOSTS)).toArray(n -> new String[n]));
                        });
                        final PermissionHelper permissionHelper = ComponentUtil.getPermissionHelper();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_PERMISSIONS = "{labels.permissions}";
    
        /** The key of the message: Virtual Hosts */
        public static final String LABELS_virtual_hosts = "{labels.virtual_hosts}";
    
        /** The key of the message: Virtual Host */
        public static final String LABELS_virtual_host = "{labels.virtual_host}";
    
        /** The key of the message: Label */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String DEFAULT_LABEL_VALUE_PROPERTY = "label.value";
    
        public static final String DEFAULT_SORT_VALUE_PROPERTY = "sort.value";
    
        public static final String VIRTUAL_HOST_VALUE_PROPERTY = "virtual.host.value";
    
        public static final String LOGIN_REQUIRED_PROPERTY = "login.required";
    
        public static final String RESULT_COLLAPSED_PROPERTY = "result.collapsed";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // content
            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
            defaultDataMap.put(fessConfig.getIndexFieldVirtualHost(),
                    stream(config.getVirtualHosts()).get(stream -> stream.filter(StringUtil::isNotBlank).collect(Collectors.toList())));
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (1)
Back to top