- Sort Score
- Result 10 results
- Languages All
Results 861 - 870 of 2,083 for instance3 (0.06 sec)
-
buildscripts/upgrade-tests/compose.yml
image: minio/minio:${MINIO_VERSION} command: server http://minio{1...4}/data{1...3} env_file: - ./minio.env expose: - "9000" - "9001" # starts 4 docker containers running minio server instances. # using nginx reverse proxy, load balancing, you can access # it through port 9000. services: minio1: <<: *minio-common hostname: minio1 volumes: - data1-1:/data1 - data1-2:/data2
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/Credentials.java
public interface Credentials { /** * Unwrap credentials to a specific type. * * @param <T> the credential type to unwrap to * @param type the class of the credential type to unwrap to * @return instance for type, null if the type cannot be unwrapped */ <T extends Credentials> T unwrap(Class<T> type); /** * Get the domain of the user account. * @return the domain the user account is in */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsPublisherExtractor.java
/** * Gets a text from . file. * * @author shinsuke * */ public class MsPublisherExtractor extends AbstractExtractor { /** * Creates a new MsPublisherExtractor instance. */ public MsPublisherExtractor() { super(); } /** * Extracts text from the Publisher input stream. * @param in The input stream. * @param params The parameters.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/ICUNormalizer.java
* * <p>This class uses a specified Transliterator to perform text normalization. * The Transliterator is initialized with a given ID during the construction of * the ICUNormalizer instance.</p> * * <p>Example usage:</p> * <pre> * ICUNormalizer normalizer = new ICUNormalizer("Any-Latin; NFD; [:Nonspacing Mark:] Remove; NFC"); * String normalizedText = normalizer.normalize("text to normalize", "field");
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
} return loc; } else { if (!t.isInDomainDfs() || (request instanceof NtTransQuerySecurityDesc) || (request instanceof SmbComClose) || (request instanceof SmbComFindClose2)) { log.trace("Not in DFS"); return loc; } if (log.isDebugEnabled()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java
@DisplayName("Should verify inheritance from ServerMessageBlock2Response") void testInheritance() { // Then assertTrue(response instanceof ServerMessageBlock2Response); assertTrue(response instanceof ServerMessageBlock2); assertTrue(response instanceof CommonServerMessageBlockResponse); } @Test @DisplayName("Should handle multiple read operations")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/BulkBody.java
import java.util.List; import java.util.Map; /** * Request body for bulk document operations containing a list of documents. */ public class BulkBody { /** * Creates a new instance of BulkBody. */ public BulkBody() { // Default constructor } /** * List of documents to be processed in bulk operations. */ public List<Map<String, Object>> documents;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
buildSrc/build.gradle.kts
repositories { mavenCentral() } dependencies { // TODO (https://github.com/square/okhttp/issues/8612) we will need a consistent version // 7.1.0 is used because it avoids this error // Could not create an instance of type aQute.bnd.gradle.BundleTaskExtension. // Cannot change attributes of configuration ':native-image-tests:compileClasspath' after it has been locked for mutation implementation("biz.aQute.bnd:biz.aQute.bnd.gradle:7.1.0")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 13:41:00 UTC 2025 - 1.1K bytes - Viewed (0) -
fess-crawler-lasta/src/main/java/org/codelibs/fess/crawler/container/LastaCrawlerContainer.java
/** * LastaFlute implementation of {@link CrawlerContainer}. * * @author shinsuke * */ public class LastaCrawlerContainer implements CrawlerContainer { /** * Creates a new instance of LastaCrawlerContainer. */ public LastaCrawlerContainer() { initialize(); } @Override public <T> T getComponent(final String name) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 1.4K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/Hasher.java
@CanIgnoreReturnValue <T extends @Nullable Object> Hasher putObject( @ParametricNullness T instance, Funnel<? super T> funnel); /** * Computes a hash code based on the data that have been provided to this hasher. The result is * unspecified if this method is called more than once on the same instance. */ HashCode hash(); /** * {@inheritDoc} *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 5.5K bytes - Viewed (0)