Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 86 for renderUsing (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

     * with regard to console rendering and effectively emulate.
     *
     * Ideally, we would emit a more concrete model.
     * This would be something like more clearly separating logging output from “user code” from Gradle's “UI” output,
     * and separately observing it from rendering instructions.
     * This may come later.
     *
     * @since 4.7
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationRendererProvider.kt

    }
    
    public typealias KtSymbolDeclarationRendererProvider = KaSymbolDeclarationRendererProvider
    
    /**
     * Provides services for rendering Symbols and Types into the Kotlin strings
     */
    public interface KaSymbolDeclarationRendererMixIn : KaSessionMixIn {
        /**
         * Render symbol into the representable Kotlin string
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top