Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 599 for settings1 (0.07 sec)

  1. src/main/java/jcifs/util/AuthenticationRateLimiter.java

        private final AtomicLong totalIpsBlocked = new AtomicLong(0);
    
        /**
         * Create rate limiter with default settings
         */
        public AuthenticationRateLimiter() {
            this(5, 10, 100, Duration.ofMinutes(30), Duration.ofMinutes(5));
        }
    
        /**
         * Create rate limiter with custom settings
         *
         * @param maxAttemptsPerAccount max failed attempts per account before lockout
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. callbacks/preload.go

    	tx := db.Session(&gorm.Session{Context: db.Statement.Context, NewDB: true, SkipHooks: db.Statement.SkipHooks, Initialized: true})
    	db.Statement.Settings.Range(func(k, v interface{}) bool {
    		tx.Statement.Settings.Store(k, v)
    		return true
    	})
    
    	if err := tx.Statement.Parse(dest); err != nil {
    		tx.AddError(err)
    		return tx
    	}
    	tx.Statement.ReflectValue = reflectValue
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

     * queries before they are parsed by the underlying Lucene query parser.
     *
     * <p>The parser supports configuration of default field, analyzer, wildcard settings,
     * and default operator. It also allows adding custom filters to modify query behavior.</p>
     *
     */
    public class QueryParser {
    
        /**
         * Default constructor.
         */
        public QueryParser() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/config/PropertyConfiguration.java

    import java.net.InetAddress;
    import java.net.UnknownHostException;
    import java.util.Properties;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    
    /**
     * Configuration implementation reading the classic jcifs settings from properties
     *
     * @author mbechler
     */
    public final class PropertyConfiguration extends BaseConfiguration implements Configuration {
    
        private boolean useMultiChannelExplicitlySet = false;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/suggest/SuggestForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.suggest;
    
    /**
     * This class is a form for suggest settings.
     */
    public class SuggestForm {
        /**
         * Constructs a new suggest form.
         */
        public SuggestForm() {
            // do nothing
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 862 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing web crawling configurations.
     * Provides CRUD operations for web configuration settings including
     * listing, retrieving, storing, and deleting web crawling configurations.
     */
    public class WebConfigService extends FessAppService {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/config/DelegatingConfigurationTest.java

            // Then
            assertTrue(encryptionEnabled, "Should delegate encryption setting");
            assertFalse(signingPreferred, "Should delegate signing preferred setting");
            assertTrue(signingEnforced, "Should delegate signing enforced setting");
            assertTrue(ipcSigningEnforced, "Should delegate IPC signing enforced setting");
            assertTrue(firstExtendedSecurityCall, "First call should return true");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/SmbConnectionTest.java

            assertTrue(treeConnectCreate >= 0, "TreeConnectAndX.CreateDirectory batch limit should be non-negative");
        }
    
        /**
         * Test that batch limit respects Unicode settings
         */
        @Test
        @DisplayName("Batch limit configuration with Unicode enabled")
        public void testBatchLimitWithUnicodeEnabled() throws CIFSException {
            Properties props = new Properties();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  9. compat/maven-compat/src/main/java/org/apache/maven/repository/MirrorSelector.java

     * under the License.
     */
    package org.apache.maven.repository;
    
    import java.util.List;
    
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.settings.Mirror;
    
    /**
     * Handles the selection of mirrors for repositories.
     *
     */
    @Deprecated
    public interface MirrorSelector {
    
        /**
         * Determines the mirror for the specified repository.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            return url;
        }
    
        /**
         * Extracts and processes the site path from a URL with proper encoding handling.
         * Removes protocol, query parameters, and applies URL decoding based on encoding settings.
         *
         * @param u the URL string to process
         * @param encoding the character encoding to use for URL decoding
         * @return the processed site path, abbreviated if necessary
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
Back to top