- Sort Score
- Result 10 results
- Languages All
Results 3451 - 3460 of 3,706 for private (0.05 sec)
-
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; /** * Test class for SmbOperationException */ @DisplayName("SmbOperationException Tests") public class SmbOperationExceptionTest { private SmbOperationException exception; @BeforeEach void setUp() { exception = null; } @Test @DisplayName("Should create exception with error code and message")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
api/maven-api-metadata/src/main/mdo/metadata.mdo
</association> </field> </fields> <codeSegments> <codeSegment> <version>1.0.0/1.1.0</version> <code><![CDATA[ private String getSnapshotVersionKey( SnapshotVersion sv ) { return sv.getClassifier() + ":" + sv.getExtension(); } public boolean merge( Metadata sourceMetadata ) { boolean changed = false;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed May 15 17:32:27 UTC 2024 - 15.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java
* The log level can be configured in the Log4j2 configuration file. * </p> * */ public class LogHelperImpl implements LogHelper { /** Logger for this class. */ private static final Logger logger = LogManager.getLogger(LogHelperImpl.class); /** * Creates a new LogHelperImpl instance. */ public LogHelperImpl() { super(); } /*
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt
class CertificatePinnerChainValidationTest { @RegisterExtension var platform = PlatformRule() @RegisterExtension var clientTestRule = OkHttpClientTestRule() @StartStop private val server = MockWebServer() @BeforeEach fun setup() { platform.assumeNotBouncyCastle() } /** * The pinner should pull the root certificate from the trust manager. */ @Test
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 24.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
public static final String DOC_TYPE_NAME = "_doc"; /** OpenSearch client. */ protected final Client client; /** Analyzer settings index name. */ protected final String analyzerSettingsIndexName; private final SuggestSettings settings; /** Analyzer map. */ protected static Map<String, Set<String>> analyzerMap = new ConcurrentHashMap<>(); /** Field analyzer mapping map. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
if (index.startsWith(suggester.getIndex())) { count++; } } assertEquals(1, count); } private SuggestItem[] getItemSet1() { SuggestItem[] queryItems = new SuggestItem[3]; String[][] readings = new String[2][]; readings[0] = new String[] { "kensaku", "fuga" };
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
helm-releases/minio-3.0.0.tgz
replicas. gateway: type: "nas" # currently only "nas" is supported. replicas: 4 ## TLS Settings for MinIO tls: enabled: false ## Create a secret with private.key and public.crt files and pass that here. Ref: https://github.com/minio/minio/tree/master/docs/tls/kubernetes#2-create-kubernetes-secret certSecret: "" publicCrt: public.crt privateKey: private.key ## Trusted Certificates Settings for MinIO. Ref: https://docs.minio.io/docs/how-to-secure-access-to-minio-server-with-tls#install-certificates-...
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 02 01:47:43 UTC 2021 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
} /** * Creates a base FessConfig implementation with common fields */ protected FessConfig.SimpleImpl createBaseFessConfig() { return new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String get(String key) { // Override to return empty string instead of null to avoid NullPointerException
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
android/guava/src/com/google/common/io/LittleEndianDataInputStream.java
* encountered. * * @return byte read from input * @throws IOException if an error is encountered while reading * @throws EOFException if the end of file (EOF) is encountered. */ private byte readAndCheckByte() throws IOException, EOFException { int b1 = in.read(); if (b1 == -1) { throw new EOFException(); } return (byte) b1; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/collection/SLinkedListTest.java
import org.codelibs.core.exception.ClIndexOutOfBoundsException; import org.codelibs.core.io.SerializeUtil; import org.junit.Test; /** * @author higa */ public class SLinkedListTest { private final SLinkedList<String> list = new SLinkedList<String>(); /** * @throws Exception */ @Test public void testGetFirstEntry() throws Exception {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 8.3K bytes - Viewed (0)