- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 1,622 for Contains (0.04 sec)
-
src/main/java/jcifs/smb/Kerb5Authenticator.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.CIFSException; import jcifs.spnego.NegTokenInit; /** * Base kerberos authenticator * * Uses a subject that contains kerberos credentials for use in GSSAPI context establishment. * * Be advised that short/NetBIOS name usage is not supported with this authenticator. Always specify full FQDNs.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvRequestResumeKeyResponse.java
/** * SMB2 SRV_REQUEST_RESUME_KEY response data structure. This structure contains a resume key * that can be used for server-side copy operations. * * @author mbechler * */ public class SrvRequestResumeKeyResponse implements Decodable { /** * Constructs a new SrvRequestResumeKeyResponse. * This response contains the resume key used for server-side copy operations. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http/CancelTest.kt
if (cancelMode == CANCEL) { assertThat(events).contains("Canceled") } else { assertThat(events).doesNotContain("Canceled") } assertThat(events).contains("ResponseFailed") assertThat(events).contains("ConnectionReleased") val call2 = client.newCall(Request(server.url("/"))) call2.execute().use {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
} // Test toString method public void test_toString() { String result = charMappingFile.toString(); assertTrue(result.contains("MappingFile")); assertTrue(result.contains("path=" + testFile.getAbsolutePath())); assertTrue(result.contains("id=test_id")); } // Test get method with empty file public void test_get_emptyFile() throws Exception { writeTestFile("");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlResponseTest.java
} catch (CurlException e) { assertTrue(e.getMessage().contains("Failed to access the content")); // The cause should be another CurlException from getContentAsStream() assertTrue(e.getCause() instanceof CurlException); CurlException innerException = (CurlException) e.getCause(); assertTrue(innerException.getMessage().contains("The content does not exist"));
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
return size() - index; } @Override public ImmutableList<E> reverse() { return forwardList; } @Override public boolean contains(@Nullable Object object) { return forwardList.contains(object); } @Override public int indexOf(@Nullable Object object) { int index = forwardList.lastIndexOf(object);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
String toStringResult = exception.toString(); assertNotNull(toStringResult); assertTrue(toStringResult.contains("JobNotFoundException")); assertTrue(toStringResult.contains(message)); } public void test_constructorWithScheduledJob_specialCharacters() { // Test with scheduled job that has special characters in toString
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
final String result = getAsQuery(conditions); assertTrue(result.contains("search term")); assertTrue(result.contains("\"exact phrase\"")); assertTrue(result.contains("(word1 OR word2)")); assertTrue(result.contains("NOT exclude")); assertTrue(result.contains("filetype:\"pdf\"")); assertTrue(result.contains("site:example.com")); } public void test_builderChaining() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/JobHelperTest.java
assertNotNull(jobLog.getLastUpdated()); } catch (Exception e) { // Expected in test environment due to missing client assertTrue(e.getMessage().contains("client")); } } public void test_monitorTarget_expired_withEndTime() { JobLog jobLog = new JobLog(); jobLog.setId("test-log-2"); jobLog.setJobName("Test Job 2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java
parentBuilder) { List<TestSuite> derivedSuites = new ArrayList<>(super.createDerivedSuites(parentBuilder)); if (!parentBuilder.getFeatures().contains(SUBSET_VIEW)) { // Other combinations are inherited from SortedSetTestSuiteBuilder. derivedSuites.add(createSubsetSuite(parentBuilder, Bound.NO_BOUND, Bound.INCLUSIVE));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.2K bytes - Viewed (0)