Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 112 for unindent (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 7K bytes
    - Click Count (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java

            // Test indentation methods don't throw exceptions
            context.indent();
            context.indent();
            context.info("Indented message");
    
            context.unindent();
            context.unindent();
            context.unindent(); // Should not go below 0
            context.info("Unindented message");
        }
    
        @Test
        @DisplayName("should handle icon rendering based on terminal capabilities")
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Jul 15 09:35:08 GMT 2025
    - 3.3K bytes
    - Click Count (0)
  3. 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();
        }
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 7.1K bytes
    - Click Count (0)
  4. 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--;
            }
        }
    
        /**
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java

                            pomMap.put(pomPath, upgradedDocument);
                        } finally {
                            context.unindent();
                        }
                        context.success("Model upgrade completed");
                        modifiedPoms.add(pomPath);
                    } else {
                        // Treat invalid upgrades (including downgrades) as errors, not warnings
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 16.6K bytes
    - Click Count (0)
  6. 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.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 22.2K bytes
    - Click Count (0)
  7. 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.
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 27.6K bytes
    - Click Count (0)
  8. 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) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 37K bytes
    - Click Count (0)
  9. helm/minio/templates/deployment.yaml

                {{- tpl . $ | nindent 8 }}
              {{- else }}
                {{- toYaml . | nindent 8 }}
              {{- end }}
            {{- end }}
          {{- with .Values.nodeSelector }}
          nodeSelector: {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- include "minio.imagePullSecrets" . | indent 6 }}
          {{- with .Values.affinity }}
          affinity: {{- toYaml . | nindent 8 }}
          {{- end }}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Oct 10 15:48:31 GMT 2024
    - 8.6K bytes
    - Click Count (0)
  10. helm/minio/templates/statefulset.yaml

                {{- tpl . $ | nindent 8 }}
              {{- else }}
                {{- toYaml . | nindent 8 }}
              {{- end }}
            {{- end }}
          {{- with .Values.nodeSelector }}
          nodeSelector: {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- include "minio.imagePullSecrets" . | indent 6 }}
          {{- with .Values.affinity }}
          affinity: {{- toYaml . | nindent 8 }}
          {{- end }}
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Oct 11 12:21:05 GMT 2024
    - 10.4K bytes
    - Click Count (0)
Back to Top