Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for Value (0.16 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * comment: The prefix of subject to show test environment or not
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getMailSubjectTestPrefix();
    
        /**
         * Get the value for the key 'mail.return.path'. <br>
         * The value is, e.g. root@localhost <br>
         * comment: The common return path of all mail
    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)
  2. src/test/java/org/codelibs/fess/helper/DocumentHelperTest.java

            String hash = "01010101010101010101010101010101";
            String value = "$H4sIAAAAAAAA_zMwNMALAXC7sg0gAAAA";
            assertEquals(value, documentHelper.encodeSimilarDocHash(hash));
            hash = "00101010010010100100101010001010";
            value = "$H4sIAAAAAAAA_zMwMARDCELQQApMAgAi5-3LIAAAAA";
            assertEquals(value, documentHelper.encodeSimilarDocHash(hash));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                this.label = label;
            }
    
            public String getValue() {
                return value;
            }
    
            public void setValue(final String value) {
                this.value = value;
            }
    
            public String[] getPermissions() {
                return permissions;
            }
    
            public void setPermissions(final String[] permissions) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.7K bytes
    - Viewed (2)
  4. src/main/webapp/js/clipboard.min.js

    iner:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return s("action",t)}},{key:"defaultTarget",value:function(t){var e=s("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return s("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat May 28 04:16:16 GMT 2022
    - 10.5K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            }
    
            if (url.startsWith("file:////")) {
                final String value = decodeUrlAsName(url.substring(9), true);
                return abbreviateSite("\\\\" + value.replace('/', '\\'));
            }
            if (url.startsWith("file:")) {
                final String value = decodeUrlAsName(url.substring(5), true);
                if (value.length() > 2 && value.charAt(2) == ':') {
                    // Windows
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/fe.tld

        <example>
          ${fe:labelexists("value")}
        </example>
      </function>
    
      <function>
        <description>
          Returns a label name.
        </description>
        <name>label</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String label(java.lang.String)</function-signature>
        <example>
          ${fe:label("value")}
        </example>
      </function>
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_ru.properties

    constraints.LuhnCheck.message               = The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed.
    constraints.Mod10Check.message              = The check digit for ${value} is invalid, Modulo 10 checksum failed.
    constraints.Mod11Check.message              = The check digit for ${value} is invalid, Modulo 11 checksum failed.
    constraints.ModCheck.message                = The check digit for ${value} is invalid, ${modType} checksum failed.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

        protected String[] toStringArray(final Object value) {
            if (value instanceof String[]) {
                return (String[]) value;
            } else if (value instanceof List) {
                return ((List<?>) value).stream().map(v -> v.toString()).toArray(n -> new String[n]);
            }
            String str = DfTypeUtil.toString(value);
            if (str == null) {
                return null;
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

        }
    
        @Override
        public Integer getTimeToLive() {
            String value = getHandlerParameterMap().get("time_to_live");
            if (StringUtil.isBlank(value)) {
                value = getHandlerParameterMap().get("timeToLive"); // TODO remove
                if (StringUtil.isBlank(value)) {
                    return null;
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/Config.java

            prp.list( out );
        }
    
        /**
         * Add a property.
         */
    
        public static Object setProperty( String key, String value ) {
            return prp.setProperty( key, value );
        }
    
        /**
         * Retrieve a property as an <code>Object</code>.
         */
    
        public static Object get( String key ) {
            return prp.get( key );
        }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.3K bytes
    - Viewed (0)
Back to top