Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 310 for initializer (0.05 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        /**
         * Default constructor for RankFusionProcessor.
         * Initializes the processor with default values. The actual initialization
         * is performed by the init() method which is called after construction.
         */
        public RankFusionProcessor() {
            // Default constructor - initialization is done in init() method
        }
    
        /**
         * Initializes the rank fusion processor after construction.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      private val messageBuffer = Buffer()
    
      /** The [Buffer] of [sink]. Write to this and then flush/emit [sink]. */
      private val sinkBuffer: Buffer = sink.buffer
      private var writerClosed = false
    
      /** Lazily initialized on first use. */
      private var messageDeflater: MessageDeflater? = null
    
      // Masks are only a concern for client writers.
      private val maskKey: ByteArray? = if (isClient) ByteArray(4) else null
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java

            propFile.deleteOnExit();
            try (FileOutputStream fos = new FileOutputStream(propFile)) {
                fos.write("fess.version=1.0.0".getBytes());
            }
    
            // Initialize SystemHelper
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                protected void parseProjectProperties(final java.nio.file.Path propPath) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

        private static class TestFessConfig extends FessConfig.SimpleImpl {
            private static final long serialVersionUID = 1L;
    
            public TestFessConfig() {
                super();
                // Initialize the properties to avoid NullPointerException
                try {
                    java.lang.reflect.Field propField = org.lastaflute.core.direction.ObjectiveConfig.class.getDeclaredField("prop");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                crawlingConfigHelperField.setAccessible(true);
                crawlingConfigHelperField.set(null, null);
            } catch (Exception e) {
                // Ignore
            }
    
            // Initialize test helpers
            systemHelper = new TestSystemHelper();
            indexingHelper = new TestIndexingHelper();
            crawlingInfoHelper = new TestCrawlingInfoHelper();
            searchLogHelper = new TestSearchLogHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

        /**
         * Fess configuration settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor for RequestHeaderService.
         * Initializes the service with dependency injection.
         */
        public RequestHeaderService() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

        /**
         * Default constructor for ProtocolHelper.
         * Initializes the helper with empty protocol arrays that will be populated during init().
         */
        public ProtocolHelper() {
            // Default constructor
        }
    
        /**
         * Initializes the protocol helper by loading configured protocols from FessConfig
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

        /**
         * Default constructor for UriTypeValidator.
         */
        public UriTypeValidator() {
            // Default constructor
        }
    
        private String[] protocols;
    
        @Override
        public void initialize(final UriType uriType) {
            protocols = switch (uriType.protocolType()) {
            case WEB -> ComponentUtil.getProtocolHelper().getWebProtocols();
            case FILE -> ComponentUtil.getProtocolHelper().getFileProtocols();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

       * relevant suffix was found.
       */
      private static final int NO_SUFFIX_FOUND = -1;
    
      /**
       * Value of {@link #publicSuffixIndexCache} or {@link #registrySuffixIndexCache} which indicates
       * that they were not initialized yet.
       */
      private static final int SUFFIX_NOT_INITIALIZED = -2;
    
      /**
       * Maximum parts (labels) in a domain name. This value arises from the 255-octet limit described
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

     */
    public class DefaultCorsHandler extends CorsHandler {
    
        /**
         * Creates a new instance of DefaultCorsHandler.
         * This constructor initializes the default CORS handler for applying
         * standard CORS headers based on application configuration.
         */
        public DefaultCorsHandler() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top