Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 310 for initializer (0.05 sec)

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

        /** Timeout in seconds for process destruction */
        protected int processDestroyTimeout = 10;
    
        /**
         * Default constructor for ProcessHelper.
         * Initializes the process management system with default timeout values.
         */
        public ProcessHelper() {
            // Default constructor
        }
    
        /**
         * Cleanup method called when the bean is destroyed.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

      }
    
      protected void expectUnchanged() {
        expectContents(getOrderedElements());
      }
    
      /**
       * Asserts that the collection under test contains exactly the elements it was initialized with
       * plus the given elements, according to {@link #expectContents(java.util.Collection)}. In other
       * words, for the default {@code expectContents()} implementation, the number of occurrences of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java

        public String versionNo;
    
        /** Search/filter parameter for data configuration description. */
        public String description;
    
        /**
         * Creates a new DataConfigPager with default values.
         * Initializes pagination settings and clears all search parameters.
         */
        public DataConfigPager() {
            // Default constructor with explicit documentation
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/query/QueryProcessor.java

        /**
         * The filter chain that processes queries through all registered filters
         * before executing the appropriate query command.
         */
        protected FilterChain filterChain;
    
        /**
         * Initializes the query processor after construction.
         * This method creates the initial filter chain from the registered filters.
         * Called automatically by the DI container after bean construction.
         */
        @PostConstruct
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/ConnectPlan.kt

    ) : RoutePlanner.Plan,
      ExchangeCodec.Carrier {
      /** True if this connect was canceled; typically because it lost a race. */
      @Volatile private var canceled = false
    
      // These properties are initialized by connect() and never reassigned.
    
      /** The low-level TCP socket. */
      private var rawSocket: JavaNetSocket? = null
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

        private SearchRequestParams params;
    
        private boolean escape = false;
    
        private String sortField;
    
        /**
         * Default constructor for QueryStringBuilder.
         * Initializes a new instance with default settings for escape and sortField.
         */
        public QueryStringBuilder() {
            // Default constructor
        }
    
        /**
         * Quotes a string value if it contains spaces.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

              }
              Unit
            }
        } catch (e: IOException) {
          System.err.println(e)
        }
      }
    }
    
    fun main() {
      // Call this before anything else initialises the JSSE stack.
      WireSharkListenerFactory.register()
    
      val example = WiresharkExample(tlsVersions = listOf(TLS_1_2), launch = CommandLine)
      example.run()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            corsFilter = new CorsFilter();
            corsHandlerFactory = new TestCorsHandlerFactory();
            // Initialize mocks
            mockRequest = new TestHttpServletRequest();
            mockResponse = new TestHttpServletResponse();
            mockFilterChain = new TestFilterChain();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java

        protected void setUpChild() throws Exception {
            // Register other query commands that might be needed
            new TermQueryCommand().register();
            new MatchAllQueryCommand().register();
    
            // Initialize and register BooleanQueryCommand
            booleanQueryCommand = new BooleanQueryCommand();
            booleanQueryCommand.register();
        }
    
        // Test getQueryClassName method
        public void test_getQueryClassName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java

        public HtmlResponse createnew() {
            saveToken();
            return asHtml(path_AdminPathmap_AdminPathmapEditJsp).useForm(CreateForm.class, op -> {
                op.setup(form -> {
                    form.initialize();
                    form.crudMode = CrudMode.CREATE;
                });
            });
        }
    
        /**
         * Displays the form for editing an existing path mapping.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top