- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 395 for BASIC (0.01 sec)
-
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
import java.util.Map; import org.codelibs.fess.opensearch.user.exentity.User; import org.codelibs.fess.unit.UnitFessTestCase; public class AuthenticationChainTest extends UnitFessTestCase { // Test basic update operation public void test_update_normalUser() { TestAuthenticationChain chain = new TestAuthenticationChain(); User user = createTestUser("testuser", "Test User"); chain.update(user);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
docs/recipes.md
Use `Response.challenges()` to get the schemes and realms of any authentication challenges. When fulfilling a `Basic` challenge, use `Credentials.basic(username, password)` to encode the request header. === ":material-language-kotlin: Kotlin" ```kotlin private val client = OkHttpClient.Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/JAASAuthenticatorTest.java
// In test environments, getSubject() may return null if JAAS is not configured // This is acceptable behavior - the test should focus on the cloning logic // Clone and verify basic fields copied JAASAuthenticator copy = (JAASAuthenticator) orig.clone(); assertEquals(orig.getUsername(), copy.getUsername()); assertEquals(orig.getUserDomain(), copy.getUserDomain());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.9K bytes - Viewed (0) -
apache-maven/pom.xml
<version>${slf4jVersion}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-connector-basic</artifactId> </dependency> <dependency> <groupId>org.apache.maven.resolver</groupId> <artifactId>maven-resolver-transport-file</artifactId> </dependency>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Sep 06 21:30:13 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsJobLog.java
sourceMap.put(field, value); } // =================================================================================== // Basic Override // ============== @Override protected String doBuildColumnString(String dm) { StringBuilder sb = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java
// Test that the exception has the correct serialVersionUID field ScriptEngineException exception = new ScriptEngineException("Serialization test"); // Verify the exception can be created and basic properties work assertNotNull(exception); assertEquals("Serialization test", exception.getMessage()); } public void test_stackTrace() { // Test that stack trace is properly maintained
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacMacTest.java
assertEquals(32, derivedKey256.length); } /** * Test method for {@link jcifs.pac.PacMac#expandNFold(byte[], int)}. */ @Test void testExpandNFold() { // Test basic functionality byte[] data = { 1, 2, 3 }; int outlen = 5; byte[] expanded = PacMac.expandNFold(data, outlen); assertNotNull(expanded); assertEquals(outlen, expanded.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java
import org.dbflute.s2dao.metadata.TnBeanMetaDataFactory; import org.dbflute.twowaysql.factory.SqlAnalyzerFactory; /** * Implementation of DBFlute's InvokerAssistant interface for OpenSearch integration. * This class provides basic scaffolding for DBFlute behavior invoker assistance, * primarily returning null implementations as placeholders for OpenSearch-specific functionality. * */ public class ImplementedInvokerAssistant implements InvokerAssistant {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
public void tearDown() throws Exception { if (originalFessConfig != null) { ComponentUtil.setFessConfig(originalFessConfig); } super.tearDown(); } // Test basic initialization public void test_hookInitialization() { assertNotNull(apiFailureHook); } // Test API result status codes public void test_apiResultStatusCodes() { // Test OK status
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
okhttp-logging-interceptor/api/logging-interceptor.api
} public final class okhttp3/logging/HttpLoggingInterceptor$Companion { } public final class okhttp3/logging/HttpLoggingInterceptor$Level : java/lang/Enum { public static final field BASIC Lokhttp3/logging/HttpLoggingInterceptor$Level; public static final field BODY Lokhttp3/logging/HttpLoggingInterceptor$Level; public static final field HEADERS Lokhttp3/logging/HttpLoggingInterceptor$Level;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Apr 06 09:14:38 UTC 2024 - 4.5K bytes - Viewed (0)