- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 50 for federation (0.07 sec)
-
cmd/config-current.go
globalDomainNames, err)) } } } } // Bucket federation is 'true' only when IAM assets are not namespaced // per tenant and all tenants interested in globally available users // if namespace was requested such as specifying etcdPathPrefix then // we assume that users are interested in global bucket support // but not federation. globalBucketFederation = etcdCfg.PathPrefix == "" && etcdCfg.Enabled
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 28.5K bytes - Viewed (0) -
cmd/globals.go
// Cluster replication manager. globalSiteReplicationSys SiteReplicationSys // Cluster replication resync metrics globalSiteResyncMetrics *siteResyncMetrics // Is set to true when Bucket federation is requested // and is 'true' when etcdConfig.PathPrefix is empty globalBucketFederation bool // Allocated DNS config wrapper over etcd client. globalDNSConfig dns.Store
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1) -
docs/bigdata/README.md
Kubernetes as stateful containers with local storage (JBOD/JBOF) mapped as persistent local volumes. This architecture enables multi-tenant MinIO, allowing isolation of data between customers. MinIO also supports multi-cluster, multi-site federation similar to AWS regions and tiers. Using MinIO Information Lifecycle Management (ILM), you can configure data to be tiered between NVMe based hot storage, and HDD based warm storage. All data is encrypted with per-object key. Access Control and Identity...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 14.7K bytes - Viewed (0) -
docs/ru/docs/project-generation.md
Sebastián RamÃrez <******@****.***> 1722296107 -0500
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
/** * Abstract base class for thumbnail generators. * Provides common functionality for thumbnail generation implementations. */ public abstract class BaseThumbnailGenerator implements ThumbnailGenerator { private static final Logger logger = LogManager.getLogger(BaseThumbnailGenerator.class); /** Map of conditions for thumbnail generation. */ protected final Map<String, String> conditionMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
public void test_generate_withValidThumbnailId() { // Test successful thumbnail generation String thumbnailId = "test-thumbnail-001"; assertTrue(thumbnailGenerator.generate(thumbnailId, tempOutputFile)); assertTrue(tempOutputFile.exists()); } public void test_generate_withNullThumbnailId() { // Test generation with null thumbnail ID assertFalse(thumbnailGenerator.generate(null, tempOutputFile));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
* This implementation is empty as no cleanup is required. */ @Override public void destroy() { } /** * Creates a thumbnail generation task for the specified document. * * @param path the file path or URL of the document * @param docMap the document metadata map containing field values
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
*/ public class GenerateThumbnailJob extends ExecJob { /** Logger for this class. */ static final Logger logger = LogManager.getLogger(GenerateThumbnailJob.class); /** Number of threads to use for thumbnail generation. */ protected int numOfThreads = 1; /** Flag indicating whether to perform cleanup operations. */ protected boolean cleanup = false; /** * Default constructor for the GenerateThumbnailJob.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
protected final List<ThumbnailGenerator> generatorList = new ArrayList<>(); /** * Queue for thumbnail generation tasks containing URL, content, and path tuples. */ protected BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue; /** * Flag indicating whether thumbnail generation is currently in progress. */ protected volatile boolean generating; private Thread thumbnailQueueThread;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
*/ public class CommandGenerator extends BaseThumbnailGenerator { private static final Logger logger = LogManager.getLogger(CommandGenerator.class); /** List of command strings to execute for thumbnail generation. */ protected List<String> commandList; /** Timeout for command execution in milliseconds. */ protected long commandTimeout = 30 * 1000L;// 30sec
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0)