Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 477 for values (0.31 sec)

  1. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

                                if (classAttr != null) {
                                    final String value = classAttr.getNodeValue();
                                    if (StringUtil.isNotBlank(value)) {
                                        final String[] values = value.split("\\.");
                                        nameSet.add(values[values.length - 1]);
                                    }
                                }
                            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                    if (cookieKey.equals(cookie.getName())) {
                        final String value = cookie.getValue();
                        if (logger.isDebugEnabled()) {
                            logger.debug("{}:{}", cookieKey, value);
                        }
                        if (StringUtil.isNotEmpty(value)) {
                            parseRoleSet(value, encryptedCookieValue, roleSet);
                        }
                    }
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsDataConfigCA.java

        public void setAvailable_PercentileRanks(double[] values) {
            setAvailable_PercentileRanks(values, null);
        }
    
        public void setAvailable_PercentileRanks(double[] values, ConditionOptionCall<PercentileRanksAggregationBuilder> opLambda) {
            setAvailable_PercentileRanks("available", values, opLambda);
        }
    
        public void setAvailable_PercentileRanks(String name, double[] values,
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 88.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

            item.put("url", artifact.getUrl());
            return item;
        }
    
        private Artifact getArtifactFromInstallForm(final InstallForm form) {
            final String[] values = form.id.split(":");
            return ComponentUtil.getPluginHelper().getArtifact(values[0], values[1]);
        }
    
        public static void installArtifact(final Artifact artifact) {
            new Thread(() -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/DocMap.java

        }
    
        @Override
        public boolean containsValue(final Object value) {
            return parent.containsValue(value);
        }
    
        @Override
        public Object get(final Object key) {
            return parent.get(key);
        }
    
        @Override
        public Object put(final String key, final Object value) {
            return parent.put(key, value);
        }
    
        @Override
        public Object remove(final Object key) {
    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)
  6. src/packaging/common/packaging.properties

    # like in rpm/packaging.properties and deb/packaging.properties.
    
    # Environment file
    packaging.env.file=
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    # Specifies the maximum file descriptor number
    packaging.os.max.open.files=65535
    
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 797 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsClickLogCA.java

        public void setOrder_PercentileRanks(double[] values) {
            setOrder_PercentileRanks(values, null);
        }
    
        public void setOrder_PercentileRanks(double[] values, ConditionOptionCall<PercentileRanksAggregationBuilder> opLambda) {
            setOrder_PercentileRanks("order", values, opLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 45.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                    texts[i] = fragments[i].string();
                }
                final String value = StringUtils.join(texts, ELLIPSIS);
                if (StringUtil.isNotBlank(value) && !ComponentUtil.getFessConfig().endsWithFullstop(value)) {
                    return value + ELLIPSIS;
                }
                return value;
            }
            return null;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsCrawlingInfoParamCA.java

            setCreatedTime_PercentileRanks(values, null);
        }
    
        public void setCreatedTime_PercentileRanks(double[] values, ConditionOptionCall<PercentileRanksAggregationBuilder> opLambda) {
            setCreatedTime_PercentileRanks("createdTime", values, opLambda);
        }
    
        public void setCreatedTime_PercentileRanks(String name, double[] values,
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                        if (contentMap.containsKey("value")) {
                            final String[] values = DocumentUtil.getValue(contentMap, "value", String[].class);
                            if (values != null) {
                                for (final String value : values) {
                                    processGroup(user, groupList, roleList, value);
                                    if (!groupList.contains(value) && !roleList.contains(value)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
Back to top