Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 184 for Rendering (0.15 sec)

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

            } catch (Exception e) {
                String valueClass = value != null ? String.valueOf(value.getClass()) : "null";
                LOGGER.warn("Rendering of the property '{}' with value type '{}' failed with exception", name, valueClass, e);
                strValue = valueClass + " [Rendering failed]";
            }
            getTextOutput().formatln("%s: %s", name, strValue);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 24 15:02:02 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/c/experimental/ops/gen/README.md

    the language generators; it digests the Op registry and API definitions to build
    the model and provides utilities for the language generators.
    
    The *View* and rendering classes map the language-independent Model classes
    (`OpSpec`, `ArgSpec`, `AttrSpec`, etc.) to language-specific `SourceCode`. The
    framework does not impose any design on the language-specific generators, but
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 21 18:51:25 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top