Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for ParseException (0.19 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/LocaleSafeDecimalFormat.java

    import java.text.DecimalFormatSymbols;
    import java.text.ParseException;
    
    public class LocaleSafeDecimalFormat {
    
        /**
         * Regardless of the default locale, comma ('.') is used as decimal separator
         *
         * @param source
         * @return
         * @throws ParseException
         */
        public BigDecimal parse(String source) throws ParseException {
            DecimalFormatSymbols symbols = new DecimalFormatSymbols();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/HostSpecifierTest.java

      public void testGoodIpAddresses() throws ParseException {
        for (String spec : GOOD_IPS) {
          assertGood(spec);
        }
      }
    
      public void testBadIpAddresses() {
        for (String spec : BAD_IPS) {
          assertBad(spec);
        }
      }
    
      public void testGoodDomains() throws ParseException {
        for (String spec : GOOD_DOMAINS) {
          assertGood(spec);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 18 15:33:20 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.helper;
    
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.Date;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class IntervalControlHelperTest extends UnitFessTestCase {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/HostSpecifier.java

          // fromValid(), we implement this method in terms of that one rather
          // than the reverse.
    
          ParseException parseException = new ParseException("Invalid host specifier: " + specifier, 0);
          parseException.initCause(e);
          throw parseException;
        }
      }
    
      /**
       * Determines whether {@code specifier} represents a valid {@link HostSpecifier} as described in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/HostSpecifier.java

          // fromValid(), we implement this method in terms of that one rather
          // than the reverse.
    
          ParseException parseException = new ParseException("Invalid host specifier: " + specifier, 0);
          parseException.initCause(e);
          throw parseException;
        }
      }
    
      /**
       * Determines whether {@code specifier} represents a valid {@link HostSpecifier} as described in
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ParseRuntimeException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.text.ParseException;
    
    /**
     * 解析できなかった場合にスローされる例外です。
     *
     * @author higa
     */
    public class ParseRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -5237329676597387063L;
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

    import java.util.List;
    
    import javax.annotation.PostConstruct;
    
    import org.apache.lucene.analysis.Analyzer;
    import org.apache.lucene.analysis.core.WhitespaceAnalyzer;
    import org.apache.lucene.queryparser.classic.ParseException;
    import org.apache.lucene.queryparser.classic.QueryParser.Operator;
    import org.apache.lucene.queryparser.ext.ExtendableQueryParser;
    import org.apache.lucene.queryparser.ext.Extensions.Pair;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/QueryParseException.java

     */
    package org.codelibs.fess.exception;
    
    import org.apache.lucene.queryparser.classic.ParseException;
    
    public class QueryParseException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public QueryParseException(final ParseException cause) {
            super(cause);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 931 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/mvnsettings/DefaultMavenSettingsProvider.java

                return StringUtils.isEmpty(localRepository) ? null : localRepository;
            } catch (Exception parseException) {
                throw new CannotLocateLocalMavenRepositoryException("Unable to parse local Maven settings: " + settingsFile.getAbsolutePath(), parseException);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/converter/NumberConverter.java

    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.text.DecimalFormat;
    import java.text.ParseException;
    
    import org.codelibs.core.beans.Converter;
    import org.codelibs.core.exception.ParseRuntimeException;
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * 数値用のコンバータです。
     *
     * @author higa
     */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top