Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 162 for Aggregate (0.17 sec)

  1. src/debug/dwarf/unit.go

    // Each unit has its own abbreviation table and address size.
    
    type unit struct {
    	base   Offset // byte offset of header within the aggregate info
    	off    Offset // byte offset of data within the aggregate info
    	data   []byte
    	atable abbrevTable
    	asize  int
    	vers   int
    	utype  uint8 // DWARF 5 unit type
    	is64   bool  // True for 64-bit DWARF format
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 17:14:08 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/test_report_aggregation_plugin.adoc

    // limitations under the License.
    
    [[test_report_aggregation_plugin]]
    = The Test Report Aggregation Plugin
    
    The Test Report Aggregation plugin (plugin id: `test-report-aggregation`) provides tasks and configurations used to aggregate the results of multiple link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] task invocations (potentially spanning multiple Gradle projects) into a single HTML report.
    
    [[sec:test_report_aggregation_usage]]
    == Usage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    )
    
    const (
    	testSecretNameSpace = "istio-system"
    	DomainSuffix        = "fake_domain"
    )
    
    func newMockserviceController() *aggregate.Controller {
    	return aggregate.NewController(aggregate.Options{})
    }
    
    func createMultiClusterSecret(k8s kube.Client, sname, cname string) error {
    	data := map[string][]byte{}
    	secret := v1.Secret{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      sname,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    namespace detail {
    
    // This template defines an aggregate analysis base class, which analyzes a
    // module but the analysis info is stored per function.
    template <typename InfoT>
    class PerFunctionAggregateAnalysis {
     public:
      using Info = InfoT;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. subprojects/internal-build-reports/build.gradle.kts

    plugins {
        id("gradlebuild.incubation-report-aggregation")
    }
    
    description = "The project to aggregate incubation reports from all subprojects"
    
    dependencies {
        reports(platform(project(":distributions-full")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 11:30:50 UTC 2022
    - 218 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/jacoco_report_aggregation_plugin.adoc

    // limitations under the License.
    
    [[jacoco_report_aggregation_plugin]]
    = The JaCoCo Report Aggregation Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. build-logic/buildquality/src/main/kotlin/gradlebuild.incubation-report-aggregation.gradle.kts

    plugins {
        id("base")
    }
    
    val reports by configurations.creating {
        isVisible = false
        isCanBeResolved = false
        isCanBeConsumed = false
        description = "Dependencies to aggregate reports from"
    }
    
    val allIncubationReports = tasks.register<IncubatingApiAggregateReportTask>("allIncubationReports") {
        group = "verification"
        reports.from(resolver("txt"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. test/fixedbugs/notinheap3.go

    func f() {
    	// Test direct writes
    	v1.x = nil        // no barrier
    	v2.x = nil        // ERROR "write barrier"
    	v1.s = []nih(nil) // no barrier
    	v2.s = []ih(nil)  // ERROR "write barrier"
    }
    
    func g() {
    	// Test aggregate writes
    	v1 = t1{x: nil} // no barrier
    	v2 = t2{x: nil} // ERROR "write barrier"
    }
    
    func h() {
    	// Test copies and appends.
    	copy(v1s, v1s[1:])      // no barrier
    	copy(v2s, v2s[1:])      // ERROR "write barrier"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authorization/union/union.go

    // subauthorizer returns a NoOpinion, then the union authorizer moves onto the
    // next authorizer or, if the subauthorizer was the last authorizer, returns
    // NoOpinion as the aggregate decision. I.e. union authorizer creates an
    // aggregate decision and supports short-circuit allows and denies from
    // subauthorizers.
    package union
    
    import (
    	"context"
    	"strings"
    
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 28 20:27:28 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  10. platforms/software/reporting/src/main/java/org/gradle/api/reporting/GenerateBuildDashboard.java

        }
    
        /**
         * Configures which reports are to be aggregated in the build dashboard report generated by this task.
         *
         * <pre>
         * buildDashboard {
         *   aggregate codenarcMain, checkstyleMain
         * }
         * </pre>
         *
         * @param reportings an array of {@link Reporting} instances that are to be aggregated
         */
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:30:12 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top