Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 164 for Rendering (0.17 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/DependencyReportRenderer.java

     */
    package org.gradle.api.tasks.diagnostics.internal;
    
    /**
     * Renders the model of a project dependency report.
     */
    public interface DependencyReportRenderer extends ReportRenderer {
    
        /**
         * Starts rendering the given configuration.
         *
         * @param configuration The configuration.
         */
        void startConfiguration(ConfigurationDetails configuration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. operator/pkg/metrics/monitoring.go

    		"manifest_patch_error_total",
    		"Number of times K8S patch overlays failed",
    	)
    
    	// ManifestRenderErrorTotal counts errors occurred while rendering manifest.
    	ManifestRenderErrorTotal = monitoring.NewSum(
    		"manifest_render_error_total",
    		"Number of times error occurred during rendering output manifest",
    	)
    
    	// LegacyPathTranslationTotal counts the translations from legacy API to new one.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 7K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/PropertyReportTaskTest.groovy

            when:
            task.action()
    
            then:
            1 * renderer.addProperty('group', '')
            1 * renderer.addProperty('version', 'unspecified')
        }
    
        def "uses placeholder for rendering 'properties' property"() {
            when:
            task.action()
    
            then:
            1 * renderer.addProperty('properties', '{...}')
        }
    
        def "can show a single property"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskTest.groovy

            then:
            reportModel.configurations.size() == 2
            reportModel.configurations[0].name == conf1.name
            reportModel.configurations[1].name == conf2.name
        }
    
        def "rendering can be limited to specific configurations"() {
            given:
            project.configurations.create("a")
            def bConf = project.configurations.create("b")
            task.configurations = [bConf] as Set
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 12 17:41:29 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/PropertyReportTask.java

        }
    
        @Override
        protected void generateReportFor(ProjectDetails project, PropertyReportModel model) {
            for (PropertyWarning warning : model.warnings) {
                getLogger().warn(
                    "Rendering of the property '{}' with value type '{}' failed with exception",
                    warning.name, warning.valueClass, warning.exception
                );
            }
            for (Pair<String, String> entry : model.properties) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/Console.java

        StyledLabel getStatusBar();
    
        /**
         * Flushes any pending updates. Updates may or may not be buffered, and this method should be called to finish rendering and pending updates, such as updating the status bar.
         */
        void flush();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultNodeValidator.java

                .forEach(problem -> {
                    // Because our deprecation warning system doesn't support multiline strings (bummer!) both in rendering
                    // **and** testing (no way to capture multiline deprecation warnings), we have to resort to removing details
                    // and rendering
                    String warning = convertToSingleLine(renderMinimalInformationAbout(problem, false, false));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 04 07:42:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtAbstractFirDiagnostic.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.diagnostics.KtDiagnostic
    import org.jetbrains.kotlin.diagnostics.KtPsiDiagnostic
    import org.jetbrains.kotlin.diagnostics.rendering.RootDiagnosticRendererFactory
    
    internal abstract class KaAbstractFirDiagnostic<PSI : PsiElement>(
        private val firDiagnostic: KtPsiDiagnostic,
        override val token: KaLifetimeToken,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/RenderableOutputEvent.java

        }
    
        /**
         * Renders this event to the given output. The output's style will be set to {@link
         * StyledTextOutput.Style#Normal}. The style will be reset after the rendering is complete, so
         * there is no need for this method to clean up the style.
         *
         * @param output The output to render to.
         */
        public abstract void render(StyledTextOutput output);
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging-api/src/main/java/org/gradle/api/logging/configuration/WarningMode.java

     *
     * @since 4.5
     */
    public enum WarningMode {
        /**
         * Show all warnings.
         */
        All(true),
    
        /**
         * Display a summary at the end of the build instead of rendering all warnings into the console output.
         */
        Summary(false),
    
        /**
         * No deprecation warnings at all.
         */
        None(false),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top