Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,938 for rreturn (0.6 sec)

  1. src/main/java/org/codelibs/fess/util/JvmUtil.java

                    return s;
                }
                final int v = Integer.parseInt(matcher.group(1));
                if ("-".equals(matcher.group(2))) {
                    if (version >= v) {
                        return matcher.group(3);
                    }
                } else if (v == version) {
                    return matcher.group(3);
                }
                return null;
            }).filter(s -> s != null).toArray(n -> new String[n]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/GenericsUtil.java

            if (type instanceof Class) {
                return clazz.isAssignableFrom((Class<?>) type);
            }
            if (type instanceof ParameterizedType) {
                final ParameterizedType parameterizedType = ParameterizedType.class.cast(type);
                return isTypeOf(parameterizedType.getRawType(), clazz);
            }
            return false;
        }
    
        /**
         * Returns the raw class of the specified type.
         * <ul>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/LongMath.java

            case 0:
              return (k == 0) ? 1 : 0;
            case 1:
              return 1;
            case -1:
              return ((k & 1) == 0) ? 1 : -1;
            case 2:
              return (k < Long.SIZE) ? 1L << k : 0;
            case -2:
              if (k < Long.SIZE) {
                return ((k & 1) == 0) ? 1L << k : -(1L << k);
              } else {
                return 0;
              }
            default:
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Floats.java

        @Override
        protected Float doForward(String value) {
          return Float.valueOf(value);
        }
    
        @Override
        protected String doBackward(Float value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Floats.stringConverter()";
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

         *
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Displays the file authentication list with pagination.
         *
         * @param pageNumber the page number
         * @param form the search form
         * @return HTML response for the list page
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

            this.targetField = targetField;
        }
    
        /**
         * Returns the target class.
         *
         * @return the target class
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the target field.
         *
         * @return the target field
         */
        public Field getTargetField() {
            return targetField;
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

        }
    
        /**
         * Returns the target class.
         *
         * @return the target class
         */
        public Class<?> getTargetClass() {
            return targetClass;
        }
    
        /**
         * Returns the target method.
         *
         * @return the target method
         */
        public Method getTargetMethod() {
            return targetMethod;
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/text/DecimalFormatSymbolsUtil.java

         */
        protected DecimalFormatSymbolsUtil() {
        }
    
        /**
         * Returns {@link DecimalFormatSymbols}.
         *
         * @return {@link DecimalFormatSymbols}
         */
        public static DecimalFormatSymbols getDecimalFormatSymbols() {
            return getDecimalFormatSymbols(LocaleUtil.getDefault());
        }
    
        /**
         * Returns {@link DecimalFormatSymbols}.
         *
         * @param locale
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Platform.java

      static MapMaker tryWeakKeys(MapMaker mapMaker) {
        return mapMaker.weakKeys();
      }
    
      static <E extends Enum<E>> Class<E> getDeclaringClassOrObjectForJ2cl(E e) {
        return e.getDeclaringClass();
      }
    
      static int reduceIterationsIfGwt(int iterations) {
        return iterations;
      }
    
      static int reduceExponentIfGwt(int exponent) {
        return exponent;
      }
    
      private Platform() {}
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Doubles.java

        protected Double doForward(String value) {
          return Double.valueOf(value);
        }
    
        @Override
        protected String doBackward(Double value) {
          return value.toString();
        }
    
        @Override
        public String toString() {
          return "Doubles.stringConverter()";
        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.7K bytes
    - Viewed (0)
Back to top