Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 270 for values (0.16 sec)

  1. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        }
    
        protected boolean isEmptyArray(final String[] values) {
            if (values == null || values.length == 0) {
                return true;
            }
            return stream(values).get(stream -> stream.allMatch(StringUtil::isBlank));
        }
    
        protected static String[] simplifyArray(final String[] values) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/stream/StreamUtil.java

        }
    
        @SafeVarargs
        public static <T> StreamOf<T> stream(final T... values) {
            return new StreamOf<>(() -> values != null ? Arrays.stream(values) : Collections.<T> emptyList().stream());
        }
    
        public static StreamOf<String> split(final String value, final String regex) {
            return stream(value == null ? null : value.split(regex));
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/curl/CurlResponse.java

            }
            return list.toArray(new String[list.size()]);
        }
    
        public String getHeaderValue(final String name) {
            final String[] values = getHeaderValues(name);
            if (values.length == 0) {
                return null;
            }
            return values[0];
        }
    Java
    - Registered: Thu May 09 15:34:10 GMT 2024
    - Last Modified: Mon Nov 14 21:05:19 GMT 2022
    - 4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                        final String[] values = paramEntry.getValue();
                        if (values == null) {
                            continue;
                        }
                        final String key = paramEntry.getKey();
                        for (final String value : values) {
                            if (append) {
                                locationBuf.append('&');
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/common/help.jsp

    		<pre>Fe?s</pre>
    	</dd>
    	<dt>Range</dt>
    	<dd>
    		Range Queries allow one to match documents whose field(s) values are
    		between the lower and upper bound specified by the Range Query. Range
    		Queries can be inclusive or exclusive of the upper and lower bounds.
    		If you want to find documents whose content_length fields have values
    		between 1000 and 10000, inclusive, you can enter:
    		<pre>content_length:[1000 TO 10000]</pre>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/PythonJob.java

            this.filename = filename;
            return this;
        }
    
        public PythonJob arg(final String value) {
            argList.add(value);
            return this;
        }
    
        public PythonJob args(final String... values) {
            stream(values).of(stream -> stream.forEach(argList::add));
            return this;
        }
    
        @Override
        public String execute() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/misc/DynamicProperties.java

        @Override
        public boolean contains(final Object value) {
            return getProperties().contains(value);
        }
    
        @Override
        public boolean containsKey(final Object key) {
            return getProperties().containsKey(key);
        }
    
        @Override
        public boolean containsValue(final Object value) {
            return getProperties().containsValue(value);
        }
    
        @Override
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/DialectVersion.java

         */
        public static Set<DialectVersion> range ( DialectVersion min, DialectVersion max ) {
            EnumSet<DialectVersion> vers = EnumSet.noneOf(DialectVersion.class);
            for ( DialectVersion ver : values() ) {
    
                if ( min != null && !ver.atLeast(min) ) {
                    continue;
                }
    
                if ( max != null && !ver.atMost(max) ) {
                    continue;
                }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/util/MD4.java

        /**
         * Resets this object disregarding any temporary data present at the
         * time of the invocation of this call.
         */
        public void engineReset () {
            // initial values of MD4 i.e. A, B, C, D
            // as per rfc-1320; they are low-order byte first
            context[0] = 0x67452301;
            context[1] = 0xEFCDAB89;
            context[2] = 0x98BADCFE;
            context[3] = 0x10325476;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/misc/Tuple5.java

         */
        public Tuple5(final T1 value1, final T2 value2, final T3 value3, final T4 value4, final T5 value5) {
            this.value1 = value1;
            this.value2 = value2;
            this.value3 = value3;
            this.value4 = value4;
            this.value5 = value5;
        }
    
        /**
         * 1番目の値を返します。
         *
         * @return 1番目の値
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top