Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,272 for Reports (0.22 sec)

  1. pkg/config/analysis/analyzers/schema/validation_test.go

    			},
    		}
    		a.Analyze(ctx)
    		g.Expect(ctx.Reports).To(BeEmpty())
    	})
    
    	t.Run("SingleError", func(t *testing.T) {
    		g := NewWithT(t)
    
    		ctx := &fixtures.Context{
    			Resources: []*resource.Instance{
    				{
    					Message: m2,
    					Origin:  fakeOrigin{},
    				},
    			},
    		}
    		a.Analyze(ctx)
    		g.Expect(ctx.Reports).To(HaveLen(1))
    		g.Expect(ctx.Reports[0].Type).To(Equal(msg.SchemaValidationError))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/termlist.go

    	}
    	return buf.String()
    }
    
    // isEmpty reports whether the termlist xl represents the empty set of types.
    func (xl termlist) isEmpty() bool {
    	// If there's a non-nil term, the entire list is not empty.
    	// If the termlist is in normal form, this requires at most
    	// one iteration.
    	for _, x := range xl {
    		if x != nil {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:29:30 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/files/copy/kotlin/build.gradle.kts

    tasks.register<Copy>("copyReportsForArchiving") {
        from(layout.buildDirectory.file("reports/my-report.pdf"), layout.projectDirectory.file("src/docs/manual.pdf"))
        into(layout.buildDirectory.dir("toArchive"))
    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register<Copy>("copyPdfReportsForArchiving") {
        from(layout.buildDirectory.dir("reports"))
        include("*.pdf")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            aggregatedTestResults.assertTestClassesExecuted('application.AdderTest', 'direct.MultiplierTest')
        }
    
        def 'test verification failure prevents creation of aggregated report'() {
            given:file("application/build.gradle") << """
                apply plugin: 'org.gradle.test-report-aggregation'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/api.go

    }
    
    // IsType reports whether the corresponding expression specifies a type.
    func (tv TypeAndValue) IsType() bool {
    	return tv.mode == typexpr
    }
    
    // IsBuiltin reports whether the corresponding expression denotes
    // a (possibly parenthesized) built-in function.
    func (tv TypeAndValue) IsBuiltin() bool {
    	return tv.mode == builtin
    }
    
    // IsValue reports whether the corresponding expression is a value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiAggregateReportTask.kt

        abstract val reports: ConfigurableFileCollection
    
        @get:OutputFile
        abstract val htmlReportFile: RegularFileProperty
    
        @get:Inject
        abstract val workerExecutor: WorkerExecutor
    
        @TaskAction
        fun generateReport() = workerExecutor.noIsolation().submit(IncubatingApiReportAggregationWorkAction::class) {
            reports.from(******@****.***s)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 09:32:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/files/copy/groovy/build.gradle

    tasks.register('copyReportsForArchiving', Copy) {
        from layout.buildDirectory.file("reports/my-report.pdf"), layout.projectDirectory.file("src/docs/manual.pdf")
        into layout.buildDirectory.dir("toArchive")
    }
    // end::copy-multiple-files-example[]
    
    // tag::copy-multiple-files-with-flat-filter-example[]
    tasks.register('copyPdfReportsForArchiving', Copy) {
        from layout.buildDirectory.dir("reports")
        include "*.pdf"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/BuildDashboardGeneratorSpec.groovy

            generator.render([mockReport('\u03b1\u03b2', tmpDir.createFile('report.html'))], outputFile)
    
            then:
            outputHtml.select('h1').text() == 'Build reports'
            with outputHtml.select('ul li'), {
                size() == 1
                select('a[href=report.html]').text() == '\u03b1\u03b2'
            }
        }
    
        void 'report css is set up'() {
            when:
            generator.render([], outputFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

            }
        }
    
        /**
         * Configures the reports to be generated by this task.
         */
        @Override
        @SuppressWarnings("rawtypes")
        public PmdReports reports(@DelegatesTo(value = PmdReports.class, strategy = Closure.DELEGATE_FIRST) Closure closure) {
            return reports(new ClosureBackedAction<>(closure));
        }
    
        /**
         * Configures the reports to be generated by this task.
         *
         * @since 3.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/resource/BrokenTextResourceIntegrationTest.groovy

    task text(type: TextTask)
    """
        }
    
        def "reports read of missing text file"() {
            given:
            buildFile << """
                text.text = resources.text.fromFile('no-such-file')
    """
    
            expect:
            fails("text")
    
            def file = file('no-such-file')
            failure.assertHasCause("Could not read '${file}' as it does not exist.")
        }
    
        def "reports read of missing archive"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top