Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 359 for Aggregate (0.2 sec)

  1. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/aggregate-reports.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 95 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/report-aggregation/src/main/groovy/com.example.report-aggregation.gradle

    }
    
    // Configurations to declare dependencies
    def aggregate = configurations.create('aggregate') {
        visible = false
        canBeResolved = false
        canBeConsumed = false
    }
    
    // Resolvable configuration to resolve the classes of all dependencies
    def classesPath = configurations.create('classesPath') {
        visible = false
        canBeConsumed = false
        extendsFrom(aggregate)
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/kotlin/build-logic/report-aggregation/src/main/kotlin/com.example.report-aggregation.gradle.kts

    }
    
    // Configurations to declare dependencies
    val aggregate by configurations.creating {
        isVisible = false
        isCanBeResolved = false
        isCanBeConsumed = false
    }
    
    // Resolvable configuration to resolve the classes of all dependencies
    val classesPath by configurations.creating {
        isVisible = false
        isCanBeConsumed = false
        extendsFrom(aggregate)
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/errors/errors_test.go

    			aggregate{fmt.Errorf("abc"), fmt.Errorf("ghi")},
    		},
    		{
    			aggregate{aggregate{fmt.Errorf("abc")}},
    			[]Matcher{},
    			aggregate{aggregate{fmt.Errorf("abc")}},
    		},
    		{
    			aggregate{aggregate{fmt.Errorf("abc"), aggregate{fmt.Errorf("def")}}},
    			[]Matcher{},
    			aggregate{aggregate{fmt.Errorf("abc"), aggregate{fmt.Errorf("def")}}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 24 13:16:21 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/errors/errors.go

    		}
    	}
    	return result
    }
    
    // Flatten takes an Aggregate, which may hold other Aggregates in arbitrary
    // nesting, and flattens them all into a single Aggregate, recursively.
    func Flatten(agg Aggregate) Aggregate {
    	result := []error{}
    	if agg == nil {
    		return nil
    	}
    	for _, err := range agg.Errors() {
    		if a, ok := err.(Aggregate); ok {
    			r := Flatten(a)
    			if r != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 29 09:44:02 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-distribution/README.adoc

    <1> Apply the `jacoco-report-aggregation` plugin
    <2> Optional: make JaCoCo aggregate report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. internal/s3select/sql/aggregation.go

    		return e.aggregate.runningSum, err
    
    	case aggFnMin:
    		if !e.aggregate.seen {
    			// No rows were seen by MIN
    			return FromNull(), nil
    		}
    		return e.aggregate.runningMin, nil
    
    	case aggFnMax:
    		if !e.aggregate.seen {
    			// No rows were seen by MAX
    			return FromNull(), nil
    		}
    		return e.aggregate.runningMax, nil
    
    	case aggFnSum:
    		// TODO: check if returning 0 when no rows were seen
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. tests/fuzz/aggregate_controller_fuzzer.go

    // of the aggregate controller. It does so by
    // creating a controller with a pseudo-random
    // Options{} and create pseudo-random service
    // registries and deleting them.
    func FuzzAggregateController(data []byte) int {
    	ops := map[int]string{
    		0: "AddRegistry",
    		1: "DeleteRegistry",
    	}
    	maxOps := 2
    	f := fuzz.NewConsumer(data)
    	opts := aggregate.Options{}
    	err := f.GenerateStruct(&opts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/initialization/GradleApiSpecAggregatorTest.groovy

            def subject = new GradleApiSpecAggregator(classLoader, DirectInstantiator.INSTANCE)
    
            when:
            def aggregate = subject.aggregate()
    
            then:
            aggregate.exportedResourcePrefixes == setOf("META-INF/gradle-plugins")
            aggregate.exportedPackages == setOf("kotlin", "org.gradle", "groovy")
        }
    
        static class SpecProvider1 implements GradleApiSpecProvider {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    <2> Define a report of type `AggregateTestReport` which collects test data from unit test suites
    <3> Optional: make aggregate test report generation part of the 'check' lifecycle phase
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top