Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 389 for settings1 (0.04 sec)

  1. src/main/resources/fess_env_crawler.properties

    #                                                      Mail
    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = false
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = 
    
    # The common return path of all mail
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_env_thumbnail.properties

    #                                                      Mail
    #                                                     ------
    # Does it send mock mail? (true: no send actually, logging only)
    mail.send.mock = false
    
    # SMTP server settings for main: host:port
    mail.smtp.server.main.host.and.port = localhost:25
    
    # The prefix of subject to show test environment or not
    mail.subject.test.prefix = 
    
    # The common return path of all mail
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Feb 12 13:38:57 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            private MockSuggestIndexer indexer = new MockSuggestIndexer();
            private MockSuggestSettings settings = new MockSuggestSettings();
    
            public MockSuggestIndexer indexer() {
                return indexer;
            }
    
            public MockSuggestSettings settings() {
                return settings;
            }
    
            public void refresh() {
                // Mock implementation
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/webauth/SearchForm.java

     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching web authentication settings.
         */
        public String id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 944 bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

        // Read & write a full request to confirm settings are accepted.
        server.enqueue(
          MockResponse
            .Builder()
            .settings(settings)
            .build(),
        )
        val call = client.newCall(Request(server.url("/")))
        val response = call.execute()
        assertThat(response.body.string()).isEqualTo("")
        server.enqueue(
          MockResponse(body = "ABC"),
        )
        server.enqueue(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 73.4K bytes
    - Viewed (0)
  6. src/packaging/common/packaging.properties

    # Common properties for building ZIP,GZ,RPM and DEB packages
    #
    # Properties defined here can be overridden with specific settings,
    # like in rpm/packaging.properties and deb/packaging.properties.
    
    # Environment file
    packaging.env.file=
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Default values for min/max heap memory allocated to fess java process
    packaging.fess.heap.min=256m
    packaging.fess.heap.max=1g
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 797 bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

            curtainBeforeHook = new FessCurtainBeforeHook();
            // Store original timezone settings
            originalTimeZone = TimeZone.getDefault();
            originalProvider = getDBFluteSystemTimeZoneProvider();
        }
    
        @Override
        public void tearDown() throws Exception {
            // Restore original timezone settings
            TimeZone.setDefault(originalTimeZone);
            if (originalProvider != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/fileauth/SearchForm.java

     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching file authentication settings.
         */
        public String id;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 947 bytes
    - Viewed (0)
  9. src/main/config/eclipse/formatter/java.xml

    <setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
    <setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
    <setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
    <setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
    <setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Sep 17 06:39:42 UTC 2017
    - 30.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        /**
         * Configuration settings for the Fess application.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Retrieves a paginated list of file authentication configurations.
         *
         * @param fileAuthenticationPager the pager containing pagination settings and search criteria
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top