- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 2,308 for instants (0.08 seconds)
-
docs/site-replication/run-replication-with-checksum-header.sh
echo -n "Setup certs for MinIO instances ..." wget -O certgen https://github.com/minio/certgen/releases/latest/download/certgen-linux-amd64 && chmod +x certgen ./certgen --host localhost mkdir -p /tmp/certs mv public.crt /tmp/certs || sudo mv public.crt /tmp/certs mv private.key /tmp/certs || sudo mv private.key /tmp/certs echo "done" # Start MinIO instances echo -n "Starting MinIO instances ..."
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Jan 20 14:49:07 GMT 2025 - 11.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
import org.codelibs.fess.dict.DictionaryItem; import jakarta.annotation.PostConstruct; /** * A dictionary creator for synonym files. * This class is responsible for creating {@link SynonymFile} instances * from files that match the pattern "synonym.*\\.txt". */ public class SynonymCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(SynonymCreator.class); /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
return getTraverser(url, null, rootDir); } /** * Returns an array of {@link Traverser} instances that handle collections of classes or resources based on the specified root package. * * @param rootPackage * The root package. * @return An array of {@link Traverser} instances that handle collections of resources based on the specified root package. */
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 18.6K bytes - Click Count (0) -
docs/orchestration/docker-compose/README.md
With Compose, you use a Compose file to configure MinIO services. Then, using a single command, you can create and launch all the Distributed MinIO instances from your configuration. Distributed MinIO instances will be deployed in multiple containers on the same host. This is a great way to set up development, testing, and staging environments, based on Distributed MinIO. ## 1. Prerequisites
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Oct 15 17:29:55 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/Maps.java
import java.util.WeakHashMap; import java.util.concurrent.ConcurrentHashMap; /** * Utility class for easily creating and setting values in {@link Map} instances. * <p> * By statically importing this class, you can easily initialize {@literal Map} instances as follows: * </p> * * <pre> * import static org.codelibs.core.collection.Maps.*; * * Map<String, Integer> map = map("a", 1).$("b", 2).$("c", 3).$();Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 7.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 09:24:04 GMT 2025 - 12.6K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerStatusTest.java
public void test_memoryReferenceEquality() { // Enum instances are singletons CrawlerStatus status1 = CrawlerStatus.INITIALIZING; CrawlerStatus status2 = CrawlerStatus.INITIALIZING; // Should be the same instance assertSame(status1, status2); assertTrue(status1 == status2); // valueOf should return the same instance
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Wed Sep 03 14:42:53 GMT 2025 - 15.8K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java
if (logger.isInfoEnabled()) { logger.info("Invalid charsetName: " + charsetName + ". Changed to " + Constants.UTF_8, e); } charsetName = Constants.UTF_8_CHARSET.name(); resultData.setData(data.getBytes(Constants.UTF_8_CHARSET)); } resultData.setEncoding(charsetName); } /** * Returns the result data header.
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 13.1K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNTCreateAndXTest.java
@Mock Configuration mockConfig; @Mock ServerMessageBlock mockAndX; @Mock CIFSContext mockContext; /** * Helper that creates a request instance with the supplied flags. * The other arguments are simple constants. */ private SmbComNTCreateAndX createRequest(int flags, int createOptions) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.6K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/DiscreteDomain.java
*/ public static DiscreteDomain<Integer> integers() { return IntegerDomain.INSTANCE; } private static final class IntegerDomain extends DiscreteDomain<Integer> implements Serializable { private static final IntegerDomain INSTANCE = new IntegerDomain(); IntegerDomain() { super(true); } @Override
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 10.4K bytes - Click Count (0)