Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 305 for protected (0.04 sec)

  1. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

        abstract Table<String, Integer, Character> makeTable();
    
        @Override
        protected Map<String, Map<Integer, Character>> makePopulatedMap() {
          Table<String, Integer, Character> table = makeTable();
          populateTable(table);
          return table.rowMap();
        }
    
        // `protected` to work around b/320650932 / KT-67447 runtime crash
        protected final void populateTable(Table<String, Integer, Character> table) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

        /** Suffix to append to log file names */
        protected String logSuffix = StringUtil.EMPTY;
    
        /** List of JVM options to apply when executing the job */
        protected List<String> jvmOptions = new ArrayList<>();
    
        /** Lasta environment configuration */
        protected String lastaEnv;
    
        /** Timeout in seconds for job execution (-1 means no timeout) */
        protected int timeout = -1; // sec
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

        public void test_execute_runAll() {
            // Setup test
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
                    return 0;
                }
    
                @Override
                protected void executeCrawler() {
                    // Mock execution
                }
            };
    
            // Mock ComponentUtil
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

        /**
         * The message field.
         */
        protected static final String MESSAGE_FIELD = "message";
    
        /**
         * The result field.
         */
        protected static final String RESULT_FIELD = "result";
    
        private static final String DOC_ID_FIELD = "doc_id";
    
        /**
         * The GET method.
         */
        protected static final String GET = "GET";
    
        /**
         * The POST method.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

        }
    
        /**
         * Create an EditBody DTO from a ProtwordsItem entity.
         *
         * @param entity source entity with protected words data
         * @param dictId identifier of the dictionary
         * @return populated EditBody for API responses
         */
        protected EditBody createEditBody(final ProtwordsItem entity, final String dictId) {
            final EditBody body = new EditBody();
            body.id = entity.getId();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java

    @GwtCompatible
    public abstract class ForwardingSortedMultiset<E extends @Nullable Object>
        extends ForwardingMultiset<E> implements SortedMultiset<E> {
      /** Constructor for use by subclasses. */
      protected ForwardingSortedMultiset() {}
    
      @Override
      protected abstract SortedMultiset<E> delegate();
    
      @Override
      public NavigableSet<E> elementSet() {
        return delegate().elementSet();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/DoubleArrayAsListTest.java

      public static final class DoublesAsListGenerator extends TestDoubleListGenerator {
        @Override
        protected List<Double> create(Double[] elements) {
          return asList(elements);
        }
      }
    
      public static final class DoublesAsListHeadSubListGenerator extends TestDoubleListGenerator {
        @Override
        protected List<Double> create(Double[] elements) {
          Double[] suffix = {Double.MIN_VALUE, Double.MAX_VALUE};
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        /** The separator for text content. */
        protected static final String TEXT_SEP = " ";
    
        /** The suggester instance for handling suggest operations. */
        protected Suggester suggester;
    
        /** The Fess configuration for accessing system settings. */
        protected FessConfig fessConfig;
    
        /** The set of field names for content. */
        protected final Set<String> contentFieldNameSet = new HashSet<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

             */
            protected String highlightParams;
            /**
             * The execution time of the search query.
             */
            protected String execTime;
            /**
             * The page size of the search results.
             */
            protected int pageSize;
            /**
             * The current page number of the search results.
             */
            protected int pageNumber;
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

        @Override
        public String toString() {
          return "IncompatibleKeyType";
        }
      }
    
      protected final boolean supportsPut;
      protected final boolean supportsRemove;
      protected final boolean supportsClear;
      protected final boolean allowsNullKeys;
      protected final boolean allowsNullValues;
      protected final boolean supportsIteratorRemove;
    
      /**
       * Creates a new, empty instance of the class under test.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 43.9K bytes
    - Viewed (0)
Back to top