Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,479 for projectId (2.65 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java

            } catch (final Exception e) {
                throw new CrawlingAccessException("Failed to create GCS client: projectId=" + projectId, e);
            }
    
            isInit = true;
            if (logger.isInfoEnabled()) {
                logger.info("GCS client initialized successfully: projectId={}, endpoint={}", projectId,
                        endpoint != null ? endpoint : "default");
            }
        }
    
        /**
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java

                    return;
                }
                final String projectId = System.getenv("GCS_PROJECT_ID");
                final String endpoint = System.getenv("GCS_ENDPOINT");
                final String credentialsFile = System.getenv("GCS_CREDENTIALS_FILE");
    
                // Validate projectId before attempting connection
                if (StringUtil.isBlank(projectId)) {
                    throw new IOException("GCS_PROJECT_ID is blank.");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

        /**
         * Creates a new GcsStorageClient instance.
         *
         * @param projectId the GCS project ID
         * @param bucket the bucket name
         * @param endpoint the custom endpoint URL (optional, for fake-gcs-server etc.)
         * @param credentialsPath the path to the credentials JSON file (optional)
         */
        public GcsStorageClient(final String projectId, final String bucket, final String endpoint, final String credentialsPath) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java

        private static final String IMAGE_NAME = "fsouza/fake-gcs-server:latest";
    
        private static final String PROJECT_ID = "test-project";
    
        public GcsClient gcsClient;
    
        private GenericContainer<?> gcsServer;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    
            final int port = 4443;
            logger.info("Creating {}", IMAGE_NAME);
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * Form class for editing protected words dictionary entries in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing protected words entries.
     * Protected words are terms that should not be stemmed or modified during text analysis.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProvider.java

        //                                                                     ===============
        @Override
        protected String getTimeAdjustTimeMillis() {
            return fessConfig.getTimeAdjustTimeMillis();
        }
    
        @Override
        protected Long getTimeAdjustTimeMillisAsLong() {
            return fessConfig.getTimeAdjustTimeMillisAsLong();
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/XmlExtractor.java

            super();
        }
    
        /**
         * Pattern for XML encoding.
         */
        protected Pattern xmlEncodingPattern =
                Pattern.compile("<\\?xml.*encoding\\s*=\\s*['\"]([\\w\\d\\-_]*)['\"]\\s*\\?>", Pattern.MULTILINE | Pattern.CASE_INSENSITIVE);
    
        /**
         * Pattern for XML tags.
         */
        protected Pattern xmlTagPattern = Pattern.compile("<[^>]+>");
    
        /**
         * Returns the encoding pattern.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java

    public class SuggestIndexResponse implements Response {
        /** The number of suggest documents. */
        protected final int numberOfSuggestDocs;
        /** The number of input documents. */
        protected final int numberOfInputDocs;
        /** Flag indicating if there are errors. */
        protected final boolean hasError;
        /** List of errors. */
        protected final List<Throwable> errors = new ArrayList<>();
        /** Time taken for the operation in milliseconds. */
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

    import org.codelibs.fess.dict.DictionaryFile;
    import org.codelibs.fess.dict.DictionaryItem;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Creator for protected words dictionary files.
     * This class manages the creation and registration of protected words dictionary files.
     */
    public class ProtwordsCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class);
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java

        /** The dictionary manager. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        // ===================================================================================
        //                                                                               Hook
        //                                                                              ======
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top