- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 489 for problem (0.07 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java
* @param request The model building request that holds further settings, must not be {@code null}. * @param problems The container used to collect problems that were encountered, must not be {@code null}. */ void injectProfile(Model model, Profile profile, ModelBuildingRequest request, ModelProblemCollector problems); /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.md
### Bug or Regression - Bump node-problem-detector version to v0.8.5 to fix OOM detection in with Linux kernels 5.1+ ([#96716](https://github.com/kubernetes/kubernetes/pull/96716), [@tosi3k](https://github.com/tosi3k)) [SIG Cloud Provider, Scalability and Testing]
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0) -
compat/maven-settings-builder/src/test/java/org/apache/maven/settings/validation/DefaultSettingsValidatorTest.java
repo.setUrl("http://xxx.xxx.com"); problems = new SimpleProblemCollector(); validator.validate(model, problems); assertEquals(1, problems.messages.size()); repo.setId("xxx"); problems = new SimpleProblemCollector(); validator.validate(model, problems); assertEquals(0, problems.messages.size()); } @Test void testValidateMirror() throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.20.md
- A bug was fixed in kubelet where exec probe timeouts were not respected. This may result in unexpected behavior since the default timeout (if not specified) is `1s` which may be too small for some exec probes. Ensure that pods relying on this behavior are updated to correctly handle probe timeouts. See [configure probe](https://docs.k8s.io/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes) section of the documentation for more details.
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 19 21:05:45 UTC 2022 - 409K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingEvent.java
private Model model; private final ModelBuildingRequest request; private final ModelProblemCollector problems; DefaultModelBuildingEvent(Model model, ModelBuildingRequest request, ModelProblemCollector problems) { this.model = model; this.request = request; this.problems = problems; } @Override public Model getModel() { return model; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
// but not as a general constant. // Treat this as a variable of the // appropriate type, not a constant, // to get C-style type handling, // avoiding the problem that C permits // uint64(-1) but Go does not. // See issue 26066. n.Kind = "var" default: n.Const = fmt.Sprintf("%f", floats[i]) } case "sconst": if i < len(strs) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java
model.update(mergeDuplicates(model.getDelegate(), request, problems)); } @Override public void injectDefaultValues( org.apache.maven.model.Model model, ModelBuildingRequest request, ModelProblemCollector problems) { model.update(injectDefaultValues(model.getDelegate(), request, problems)); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/ModelValidator.java
* @param request The model building request that holds further settings, must not be {@code null}. * @param problems The container used to collect problems that were encountered, must not be {@code null}. */ default void validateFileModel(Model model, ModelBuildingRequest request, ModelProblemCollector problems) { // do nothing } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingResult.java
private Settings effectiveSettings; private List<SettingsProblem> problems; DefaultSettingsBuildingResult(Settings effectiveSettings, List<SettingsProblem> problems) { this.effectiveSettings = effectiveSettings; this.problems = (problems != null) ? problems : new ArrayList<>(); } @Override public Settings getEffectiveSettings() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderException.java
private final List<BuilderProblem> problems; /** * @param message the message to give * @param e the {@link Exception} */ public SettingsBuilderException(String message, Exception e) { super(message, e); this.problems = List.of(); } public SettingsBuilderException(String message, List<BuilderProblem> problems) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.8K bytes - Viewed (0)