- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 19 for GCS (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
// GCS URLs assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket/")); assertTrue(protocolHelper.isValidFileProtocol("gcs://my-bucket/path")); assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket.with.dots/path")); assertTrue(protocolHelper.isValidFileProtocol("gcs://bucket-with-dashes/path"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 35.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
// Various GCS bucket and path formats assertEquals("gcs://bucket/", wizardAction.convertCrawlingPath("gcs://bucket/")); assertEquals("gcs://my-bucket/", wizardAction.convertCrawlingPath("gcs://my-bucket/")); assertEquals("gcs://bucket.with.dots/path", wizardAction.convertCrawlingPath("gcs://bucket.with.dots/path"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java
assertTrue(goAction.isFileSystemPath("gcs://bucket/path/to/file.txt")); assertTrue(goAction.isFileSystemPath("gcs://my-bucket/folder/document.pdf")); assertTrue(goAction.isFileSystemPath("gcs://bucket/")); assertTrue(goAction.isFileSystemPath("gcs://my-bucket-name/deep/nested/path/file.txt")); assertTrue(goAction.isFileSystemPath("gcs://bucket_with_underscores/file")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 8.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* @return true if the URL uses a file path protocol (smb, smb1, file, ftp, s3, gcs) */ public boolean isFilePathProtocol(final String url) { return url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("file:") || url.startsWith("ftp:") || url.startsWith("s3:") || url.startsWith("gcs:"); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** * Storage type for cloud storage (s3, gcs, auto). * Determines which storage client to use. */ @Size(max = 20) public String storageType; /** * Storage region for S3. * AWS region where the S3 bucket is located. */ @Size(max = 100) public String storageRegion; /** * GCS project ID. * Google Cloud project ID for GCS storage.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 15.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/admin/StorageTests.java
import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.response.Response; @Tag("it") @Disabled("Requires storage backend (S3/GCS) to be configured") public class StorageTests extends CrudTestBase { private static final String NAME_PREFIX = "storageTests_"; private static final String API_PATH = "/api/admin/storage";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final String STORAGE_REGION = "storage.region"; /** Storage project ID configuration key (for GCS). */ public static final String STORAGE_PROJECT_ID = "storage.project.id"; /** Storage credentials path configuration key (for GCS). */ public static final String STORAGE_CREDENTIALS_PATH = "storage.credentials.path"; // ============================================================
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 35.8K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.storage_access_key=Access Key labels.storage_secret_key=Secret Key labels.storage_bucket=Bucket labels.storage_type=Type labels.storage_type_auto=Auto labels.storage_type_s3=S3 labels.storage_type_gcs=GCS labels.storage_region=Region labels.storage_project_id=Project ID labels.storage_credentials_path=Credentials Path labels.general_rag=AI Mode labels.rag_llm_name=LLM Provider labels.llm_log_level=Log Level
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/resources/fess_label.properties
labels.storage_access_key=Access Key labels.storage_secret_key=Secret Key labels.storage_bucket=Bucket labels.storage_type=Type labels.storage_type_auto=Auto labels.storage_type_s3=S3 labels.storage_type_gcs=GCS labels.storage_region=Region labels.storage_project_id=Project ID labels.storage_credentials_path=Credentials Path labels.general_rag=AI Mode labels.rag_llm_name=LLM Provider labels.llm_log_level=Log Level
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 48.9K bytes - Click Count (0) -
src/main/resources/fess_config.properties
crawler.crawling.data.encoding=UTF-8 # Supported web protocols for crawling. crawler.web.protocols=http,https # Supported file protocols for crawling. crawler.file.protocols=file,smb,smb1,ftp,storage,s3,gcs # Pattern for environment variable keys in crawling data. crawler.data.env.param.key.pattern=^FESS_ENV_.* # Whether to ignore robots.txt during crawling. crawler.ignore.robots.txt=false
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 59.3K bytes - Click Count (0)