- Sort Score
- Num 10 results
- Language All
Results 101 - 110 of 1,291 for results2 (0.07 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/project/ProjectBuildingException.java
if (results == null || results.isEmpty()) { return "Some problems were encountered while processing the POMs"; } long totalProblems = 0; long errorProblems = 0; for (ProjectBuildingResult result : results) { List<ModelProblem> problems = result.getProblems(); totalProblems += problems.size();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Jul 26 19:15:57 GMT 2025 - 6K bytes - Click Count (0) -
docs_src/body_multiple_params/tutorial004_an_py39.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Mar 18 12:29:59 GMT 2023 - 674 bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* ensuring that IDs are generated in a thread-safe manner. * </p> * * <p> * The class also provides methods to get the count of access results for a given session, * to delete all access results for a given session, and to delete all access results. * </p> * * <p> * The class is a singleton, and is injected using the {@link Resource} annotation. * </p> * */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 6.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java
if (exception instanceof ProjectBuildingException projectBuildingException) { List<ProjectBuildingResult> results = projectBuildingException.getResults(); children = new ArrayList<>(); for (ProjectBuildingResult result : results) { ExceptionSummary child = handle(result); if (child != null) { children.add(child); } }
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 10.9K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java
for (ProjectBuildingResult result : results) { if (result.getPomFile().getParentFile().getName().equals("child")) { return result.getProject(); } } return null; } private void assertResultShowNoError(List<ProjectBuildingResult> results) { for (ProjectBuildingResult result : results) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 17.6K bytes - Click Count (0) -
cmd/metacache-set.go
results.lastSkippedEntry = entry.name } continue } if o.Limit > 0 && results.len() >= o.Limit { // We have enough and we have more. // Do not return io.EOF if resCh != nil { resErr = nil select { case resCh <- results: case <-ctx.Done(): } resCh = nil returned = true } continue } results.o = append(results.o, entry)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 30.7K bytes - Click Count (0) -
src/test/java/jcifs/EmptyIteratorTest.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
// Use reflection to set the results field to empty array Field resultsField = Smb2QueryDirectoryResponse.class.getDeclaredField("results"); resultsField.setAccessible(true); FileEntry[] entries = new FileEntry[0]; resultsField.set(response, entries); FileEntry[] results = response.getResults(); assertNotNull(results); assertEquals(0, results.length); }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 23.5K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/ClasspathArtifactResolver.java
throws ArtifactResolutionException { List<ArtifactResult> results = new ArrayList<>(); for (ArtifactRequest request : requests) { ArtifactResult result = new ArtifactResult(request); results.add(result); Artifact artifact = request.getArtifact(); if ("maven-test".equals(artifact.getGroupId())) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.1K bytes - Click Count (0) -
docs_src/query_params_str_validations/tutorial003_py310.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri May 13 23:38:22 GMT 2022 - 290 bytes - Click Count (0)