Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 208 for initiatives (0.04 sec)

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

         */
        protected Map<String, String> cookieNameMap;
    
        /**
         * A list of default roles.
         */
        protected final List<String> defaultRoleList = new ArrayList<>();
    
        /**
         * Initializes the RoleQueryHelper.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

        private Timer destoryTimer;
    
        /**
         * Default constructor for CommandGenerator.
         */
        public CommandGenerator() {
            super();
        }
    
        /**
         * Initializes the command generator after construction.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                            /* Create SMB signature digest if necessary
                             * Only the first SMB_COM_SESSION_SETUP_ANX with non-null or
                             * blank password initializes signing.
                             */
                            if (transport.isSignatureSetupRequired(auth)) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                throw new GsaConfigException("Failed to parse XML file.", e);
            }
        }
    
        /**
         * SAX event handler called at the beginning of document parsing.
         * Initializes internal data structures for processing the GSA configuration.
         *
         * @throws SAXException if a SAX error occurs during initialization
         */
        @Override
        public void startDocument() throws SAXException {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  5. cmd/xl-storage-format_test.go

    		if got := isXLMetaErasureInfoValid(tt.data, tt.parity); got != tt.want {
    			t.Errorf("Test %d: Expected %v but received %v -> %#v", tt.name, got, tt.want, tt)
    		}
    	}
    }
    
    // newTestXLMetaV1 - initializes new xlMetaV1Object, adds version, allocates a fresh erasure info and metadata.
    func newTestXLMetaV1() xlMetaV1Object {
    	xlMeta := xlMetaV1Object{}
    	xlMeta.Version = xlMetaVersion101
    	xlMeta.Format = xlMetaFormat
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        /** Logger for search logs. */
        protected Logger searchLogLogger = null;
    
        /** ObjectMapper for JSON processing. */
        protected ObjectMapper objectMapper = new ObjectMapper();
    
        /**
         * Initializes the SearchLogHelper.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

        /**
         * Synchronized list of active crawlers.
         */
        protected final List<Crawler> crawlerList = Collections.synchronizedList(new ArrayList<>());
    
        /**
         * Initiates crawling for specified web and file configurations.
         *
         * @param sessionId The session ID for this crawling operation
         * @param webConfigIdList List of web configuration IDs to crawl, null for all
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/CrawlJob.java

         * Used for performance analysis and debugging of the crawler process.
         */
        protected int hotThreadInterval = -1;
    
        /**
         * Default constructor for CrawlJob.
         * Initializes the job with default settings.
         */
        public CrawlJob() {
            super();
        }
    
        /**
         * Sets the namespace for the crawling session.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java

        private Smb2QueryInfoResponse response;
    
        @BeforeEach
        void setUp() {
            mockConfig = mock(Configuration.class);
        }
    
        @Test
        @DisplayName("Test constructor initializes with config and info type/class")
        void testConstructor() {
            byte infoType = Smb2Constants.SMB2_0_INFO_FILE;
            byte infoClass = FileInformation.FILE_INTERNAL_INFO;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SID.java

                return new SID[0];
            }
    
            return tc.getSIDResolver().getGroupMemberSids(tc, authorityServerName, getDomainSid(), getRid(), flags);
        }
    
        /**
         * Initializes the context and server for this SID for deferred resolution.
         *
         * @param context the CIFS context to use
         * @param server the server name for SID resolution
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top