- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for unindent (0.05 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/StrategyOrchestrator.java
context.indent(); context.info("Processed: " + result.processedPoms().size() + " POMs"); context.success("Modified: " + result.modifiedPoms().size() + " POMs"); context.unindent(); } else { context.info("Strategy completed (no changes needed)"); context.indent(); context.info("Processed: " + result.processedPoms().size() + " POMs");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeStrategy.java
context.info(getDescription() + " Summary:"); context.indent(); context.info(result.modifiedCount() + " POM(s) modified"); context.info(result.unmodifiedCount() + " POM(s) needed no changes"); if (result.errorCount() > 0) { context.info(result.errorCount() + " POM(s) had errors"); } context.unindent(); } /**
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 7.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/UpgradeContext.java
} /** * Increases the indentation level for nested logging. */ public void indent() { indentLevel++; } /** * Decreases the indentation level for nested logging. */ public void unindent() { if (indentLevel > 0) { indentLevel--; } } /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 4.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 16.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
context.failure("Failed to fix Maven 4 compatibility issues" + ": " + e.getMessage()); errorPoms.add(pomPath); } finally { context.unindent(); } } return new UpgradeResult(processedPoms, modifiedPoms, errorPoms); } /** * Fixes unsupported combine.children attribute values.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 22.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategy.java
} catch (Exception e) { context.failure("Failed to apply inference optimizations" + ": " + e.getMessage()); errorPoms.add(pomPath); } finally { context.unindent(); } } return new UpgradeResult(processedPoms, modifiedPoms, errorPoms); } /** * Applies limited parent-related inference optimizations for Maven 4.0.0+ models.
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 27.6K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
} catch (Exception e) { context.failure("Failed to upgrade plugins: " + e.getMessage()); errorPoms.add(pomPath); } finally { context.unindent(); } } // Clean up temp directory cleanupTempDirectory(tempDir); } catch (Exception e) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 37K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
// last ANSI escape code is reset: no next color nextColor = ""; } } // effective line, with indent and reset if end is colored line = indent + line + ("".equals(nextColor) ? "" : ANSI_RESET); if ((i == lines.length - 1) && (showErrors || (summary.getException() instanceof InternalErrorException))) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
- kubelet: the `--image-credential-provider-config` file was loaded with strict deserialization, which failed if the config file contained duplicate or unknown fields. This protected against accidentally running with malformed config files, unindented files, or typos in field names, and it prevented unexpected behavior. ([#128062](https://github.com/kubernetes/kubernetes/pull/128062), [@aramase](https://github.com/aramase)) [SIG Auth and Node]
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 16 18:27:41 UTC 2025 - 448.1K bytes - Viewed (0) -
docs/en/docs/release-notes.md
### Docs * ✏️ Fix validation parameter name in docs, from `regex` to `pattern`. PR [#10085](https://github.com/tiangolo/fastapi/pull/10085) by [@pablodorrio](https://github.com/pablodorrio). * ✏️ Fix indent format in `docs/en/docs/deployment/server-workers.md`. PR [#10066](https://github.com/tiangolo/fastapi/pull/10066) by [@tamtam-fitness](https://github.com/tamtam-fitness).
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 19:06:15 UTC 2025 - 586.7K bytes - Viewed (0)