- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 399 for Problem (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
compat/maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemCollectorTest.java
DefaultProblemCollector collector = new DefaultProblemCollector(null); collector.add(null, "PROBLEM1", -1, -1, null); collector.setSource("SOURCE_PROBLEM2"); collector.add(null, "PROBLEM2", -1, -1, null); collector.setSource("SOURCE_PROBLEM3"); collector.add(null, "PROBLEM3", -1, -1, null); assertEquals("", collector.getProblems().get(0).getSource());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java
return Stream.of(problems).map(String::trim).filter(s -> s.isEmpty() == false).collect(Collectors.joining("\n")); } private String checkNoneExists(String message, Stream<? extends Class<?>> stream) { String problem = stream.map(each -> " * " + each.getName()).sorted().collect(Collectors.joining("\n")); if (problem.isEmpty() == false) { return message + ":\n" + problem;
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 17.6K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java
} writer.println(); for (ModelProblem problem : problems) { writer.print("["); writer.print(problem.getSeverity()); writer.print("] "); writer.print(problem.getMessage()); writer.print(" @ "); writer.println(ModelProblemUtils.formatLocation(problem, modelId)); } return buffer.toString(); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.4K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/tflite-in-play-services.md
**Standalone code to reproduce the issue** Provide a reproducible test case that is the bare minimum necessary to generate the problem. If possible, please share a link to or attach code demonstrating the problem. **Any other info / logs** Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jun 15 03:35:58 GMT 2022 - 880 bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/10_contributor_bug_report.yml
Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive. You can use [the template](https://github.com/gradle/gradle-issue-reproducer) with a Gradle GitHub action set up to showcase your problem. In the rare cases where this is infeasible, we will also accept a detailed set of instructions.Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Sep 09 14:48:49 GMT 2024 - 3K bytes - Click Count (1) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java
if (!modelResult.getProblems().isEmpty()) { List<ModelProblem> problems = modelResult.getProblems(); if (logger.isDebugEnabled()) { String problem = (problems.size() == 1) ? "problem" : "problems"; String problemPredicate = problem + ((problems.size() == 1) ? " was" : " were");
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 17.1K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/50_maintainer_chore.yml
- Deprecation - Refactoring - Other validations: required: true - type: textarea id: description attributes: label: Problem description description: | Please describe the problem as concisely as possible. validations: required: true - type: textarea id: context attributes: label: Context (optional) description: |Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Sep 12 11:52:53 GMT 2023 - 856 bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/30_contributor_regression.yml
Provide a [minimal, self-contained example](https://en.wikipedia.org/wiki/Minimal_reproducible_example) project demonstrating the problem as a GitHub repository or an attached archive. You can use [the template](https://github.com/gradle/gradle-issue-reproducer) with a Gradle GitHub action set up to showcase your problem. In the rare cases where this is infeasible, we will also accept a detailed set of instructions.Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Sep 09 14:48:49 GMT 2024 - 2.7K bytes - Click Count (0) -
.github/ISSUE_TEMPLATE/bug_report.md
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Aug 17 22:53:30 GMT 2020 - 782 bytes - Click Count (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/SettingsBuildingException.java
writer.print(problems.size()); writer.print((problems.size() == 1) ? " problem was " : " problems were "); writer.print("encountered while building the effective settings"); writer.println(); for (SettingsProblem problem : problems) { writer.print("["); writer.print(problem.getSeverity()); writer.print("] "); writer.print(problem.getMessage());Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 2.9K bytes - Click Count (0)