Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for protected (0.52 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        protected String version;
    
        /** The major version number. */
        protected int majorVersion;
    
        /** The minor version number. */
        protected int minorVersion;
    
        /** The product version string. */
        protected String productVersion;
    
        /** The end-of-life timestamp for the application. */
        protected long eolTime;
    
        private short systemCpuPercent;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestsForListsInJavaUtil.java

        suite.addTest(testsForVector());
        return suite;
      }
    
      protected Collection<Method> suppressForEmptyList() {
        return emptySet();
      }
    
      protected Collection<Method> suppressForSingletonList() {
        return emptySet();
      }
    
      protected Collection<Method> suppressForArraysAsList() {
        return emptySet();
      }
    
      protected Collection<Method> suppressForArrayList() {
        return emptySet();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 15:04:05 UTC 2025
    - 12K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            protected int size = Constants.DEFAULT_PAGE_SIZE;
            /** Geographic search information */
            protected GeoInfo geoInfo;
            /** Facet configuration for aggregations */
            protected FacetInfo facetInfo;
            /** Highlighting configuration */
            protected HighlightInfo highlightInfo;
            /** Hash of document for similarity search */
            protected String similarDocHash;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

            // Test that inherited methods are accessible
            Method appendMethod = null;
            Method appendTimestampMethod = null;
            Method appendExceptionMethod = null;
    
            // These are protected methods in MonitorTarget
            Method[] methods = MonitorTarget.class.getDeclaredMethods();
            for (Method method : methods) {
                switch (method.getName()) {
                case "append":
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top