- Sort Score
- Result 10 results
- Languages All
Results 1461 - 1470 of 5,086 for Strings (0.05 sec)
-
src/test/java/jcifs/smb/SmbAuthExceptionTest.java
/** * Validate message-only constructor with both null and empty messages. */ @ParameterizedTest @MethodSource("messageProvider") @DisplayName("String ctor: preserves message; default unsuccessful status") void messageConstructor_handlesNullAndEmpty(String msg) { // Act SmbAuthException ex = new SmbAuthException(msg); // Assert assertEquals(msg, ex.getMessage());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
*/ @Required @Size(max = 1000) public String regex; /** * The replacement pattern for matched paths. */ @Size(max = 1000) public String replacement; /** * The processing type for path mapping. */ @Required public String processType; /** * The sort order for this path mapping (0-2147483647). */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketModel.kt
class TestClassTime( val sourceSet: String, val buildTimeMs: Int, ) data class TestCoverageAndBucketSplits( val testCoverageUuid: Int, val buckets: List<FunctionalTestBucket>, ) data class FunctionalTestBucket( val subprojects: SortedSet<String>, val parallelizationMethod: ParallelizationMethod, ) { constructor(subprojectList: List<String>, parallelizationMethod: ParallelizationMethod) : this(
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 3.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
} } } class FunctionalTest( model: CIBuildModel, id: String, name: String, description: String, val testCoverage: TestCoverage, stage: Stage, parallelizationMethod: ParallelizationMethod = ParallelizationMethod.None, subprojects: List<String> = listOf(), extraParameters: String = "", extraBuildSteps: BuildSteps.() -> Unit = {},
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 12 09:12:03 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
} private String modelName; private String featureSetName; private String storeName; private Map<String, Object> params; private List<String> activeFeatures; /** * Constructs a new stored LTR query builder. */ public StoredLtrQueryBuilder() { // do nothing } @Override public String getWriteableName() { return NAME; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/MultiReaderTest.java
} public void testSimple() throws Exception { String testString = "abcdefgh"; CharSource source = newCharSource(testString); Reader joinedReader = CharSource.concat(source, source).openStream(); String expectedString = testString + testString; assertEquals(expectedString, CharStreams.toString(joinedReader)); } private static CharSource newCharSource(String text) { return new CharSource() { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.7K bytes - Viewed (0) -
cmd/etcd.go
} } func saveKeyEtcdWithTTL(ctx context.Context, client *etcd.Client, key string, data []byte, ttl int64) error { timeoutCtx, cancel := context.WithTimeout(ctx, defaultContextTimeout) defer cancel() lease, err := client.Grant(timeoutCtx, ttl) if err != nil { return etcdErrToErr(err, client.Endpoints()) } _, err = client.Put(timeoutCtx, key, string(data), etcd.WithLease(lease.ID)) etcdLogIf(ctx, err)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 2.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/LocalCacheTest.java
private final CacheBuilder<? super String, ? super String> builder; TestStringCacheGenerator(CacheBuilder<? super String, ? super String> builder) { this.builder = builder; } @Override protected Map<String, String> create(Entry<String, String>[] entries) { LocalCache<String, String> map = makeLocalCache(builder); for (Entry<String, String> entry : entries) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 110.5K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type1Message.java
*/ public void setSuppliedDomain(final String suppliedDomain) { this.suppliedDomain = suppliedDomain; } /** * Returns the supplied workstation name. * * @return A <code>String</code> containing the supplied workstation name. */ public String getSuppliedWorkstation() { return this.suppliedWorkstation; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
@Override public String asTableDbName() { return asEsIndexType(); } @Override protected String asEsIndex() { return "fess_config.crawling_info"; } @Override public String asEsIndexType() { return "crawling_info"; } @Override public String asEsSearchType() { return "crawling_info"; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0)