Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3111 - 3120 of 5,836 for Public (0.05 sec)

  1. src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java

     *
     * @author higa
     */
    public abstract class DoubleConversionUtil {
    
        /**
         * Do not instantiate.
         */
        protected DoubleConversionUtil() {
        }
    
        /**
         * Converts to {@link Double}.
         *
         * @param o
         *            The object to convert
         * @return The converted {@link Double}
         */
        public static Double toDouble(final Object o) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java

     *             additional data is needed.
     */
    public record RequestTrace(@Nullable String context, @Nullable RequestTrace parent, @Nullable Object data) {
    
        public static final String CONTEXT_PLUGIN = "plugin";
        public static final String CONTEXT_PROJECT = "project";
        public static final String CONTEXT_BOOTSTRAP = "bootstrap";
    
        public RequestTrace(RequestTrace parent, Object data) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/EncodingHelper.java

     */
    public class EncodingHelper {
    
        /** The default encoding to use when no mapping is found */
        protected String defaultEncoding;
    
        /** Map of encoding names to their preferred forms */
        protected Map<String, String> encodingMap = new HashMap<>();
    
        /**
         * Constructs a new EncodingHelper.
         */
        public EncodingHelper() {
            // Default constructor
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Tests for {@code CompactLinkedHashMap}.
     *
     * @author Louis Wasserman
     */
    @NullUnmarked
    public class CompactLinkedHashMapTest extends TestCase {
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTest(
            MapTestSuiteBuilder.using(
                    new TestStringMapGenerator() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java

                @Override
                public int getWeight() {
                    return extractors[0].getWeight();
                }
            };
        }
    
        /**
         * Retrieves all extractors for the specified key.
         * @param key The key associated with the extractors.
         * @return An array of Extractor instances, or an empty array if no extractors are found.
         */
        public Extractor[] getExtractors(final String key) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/SmbWatchHandleTest.java

                @Override
                public List<FileNotifyInformation> watch() throws CIFSException {
                    callCount++;
                    if (callCount == 1) {
                        return Arrays.asList(fileNotifyInfo1);
                    }
                    return Collections.emptyList();
                }
    
                @Override
                public List<FileNotifyInformation> call() throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultUpdateCheckManager extends AbstractLogEnabled implements UpdateCheckManager {
    
        private static final String ERROR_KEY_SUFFIX = ".error";
    
        public DefaultUpdateCheckManager() {}
    
        public DefaultUpdateCheckManager(Logger logger) {
            enableLogging(logger);
        }
    
        public static final String LAST_UPDATE_TAG = ".lastUpdated";
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Apr 22 22:13:51 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/validation/CronExpressionValidator.java

     */
    public class CronExpressionValidator implements ConstraintValidator<CronExpression, String> {
    
        /**
         * Default constructor.
         */
        public CronExpressionValidator() {
            // Empty constructor
        }
    
        @Override
        public void initialize(final CronExpression constraintAnnotation) {
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ResultDataTest.java

    import java.util.function.Function;
    
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.dbflute.utflute.core.PlainTestCase;
    
    public class ResultDataTest extends PlainTestCase {
    
        public void test_setRawData() {
            // ## Arrange ##
            final ResultData resultData = new ResultData();
            final Object rawData = new Object();
    
            // ## Act ##
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

     *
     */
    public class AdminPluginAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminPluginAction() {
            super();
        }
    
        /**
         * Role identifier for plugin administration.
         */
        public static final String ROLE = "admin-plugin";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
Back to top