- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 6,573 for tstring (0.68 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/versioning/ManagedVersionMap.java
@Deprecated public class ManagedVersionMap extends HashMap<String, Artifact> { public ManagedVersionMap(Map<String, Artifact> map) { super(); if (map != null) { putAll(map); } } @Override public String toString() { StringBuilder buffer = new StringBuilder("ManagedVersionMap (" + size() + " entries)\n"); Iterator<String> iter = keySet().iterator();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.7K 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 Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeResponseTest.java
} } /** * The {@code toString} method should include the class name and the * representation of the superclass. */ @Test void toStringIncludesClassName() { TransWaitNamedPipeResponse resp = new TransWaitNamedPipeResponse(); String str = resp.toString(); assertNotNull(str, "toString should not return null");Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java
private final String v3Phase; private final String v4Phase; DefaultAlias(String v3Phase, String v4Phase) { this.v3Phase = v3Phase; this.v4Phase = v4Phase; } @Override public String v3Phase() { return v3Phase; } @Override public String v4Phase() { return v4Phase;Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 28 15:21:19 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
*/ @Override protected void addChildUrlFromTagAttribute(final List<String> urlList, final URI uri, final String attrValue, final String encoding) { final String urlValue = attrValue.trim(); String u = null; try { final String resolveTarget = urlValue.startsWith(":") ? uri.getScheme() + urlValue : urlValue;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 54.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
@SerializedName("filename") String filename; @SerializedName("anchors") List<String> anchors; } /** * Reads a JSON file and finds any .adoc files listed that are missing from the given directory. */ private static List<String> findMissingAdocFiles(File jsonFile, String directoryPath) throws IOException { List<String> missingFiles = new ArrayList<>();Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Aug 21 15:38:58 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
notifyChange = new NtTransNotifyChange(mockConfig, fid, completionFilter, watchTree); assertNotNull(notifyChange); // Verify field initialization through toString String str = notifyChange.toString(); assertTrue(str.contains("NtTransNotifyChange")); assertTrue(str.contains("fid=0x" + Hexdump.toHexString(fid, 4)));Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/TreeMultisetTest.java
import com.google.common.collect.testing.Helpers.NullsBeforeB; import com.google.common.collect.testing.NavigableSetTestSuiteBuilder; import com.google.common.collect.testing.TestStringSetGenerator; import com.google.common.collect.testing.features.CollectionFeature; import com.google.common.collect.testing.features.CollectionSize; import com.google.common.collect.testing.google.MultisetFeature;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 13K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
this.terminalWidth = terminalWidth; } private static String chars(char c, int count) { return String.valueOf(c).repeat(Math.max(0, count)); } private void infoLine(char c) { infoMain(chars(c, lineLength)); } private void infoMain(String msg) { logger.info(builder().strong(msg).toString()); } private void init() { if (maxProjectNameLength == 0) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 17.2K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
*/ val taskPathToReports: MapProperty<String, List<File>> /** * Key is the path of the test, value is Test.binaryResultsDir */ val testPathToBinaryResultsDirs: MapProperty<String, File> } private val projectPathToFailedTaskPaths: MutableMap<String, MutableList<String>> = mutableMapOf() privateRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Nov 05 11:43:49 UTC 2025 - 12.5K bytes - Viewed (0)