Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 359 for Aggregate (0.48 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	// Output granularity
    	"functions": helpText(
    		"Aggregate at the function level.",
    		"Ignores the filename where the function was defined."),
    	"filefunctions": helpText(
    		"Aggregate at the function level.",
    		"Takes into account the filename where the function was defined."),
    	"files": "Aggregate at the file level.",
    	"lines": "Aggregate at the source code line level.",
    	"addresses": helpText(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestListener.java

         */
        void beforeSuite(TestDescriptor suite);
    
        /**
         * Called after a test suite is finished.
         * @param suite The suite whose tests have finished being executed.
         * @param result The aggregate result for the suite.
         */
        void afterSuite(TestDescriptor suite, TestResult result);
    
        /**
         * Called before an atomic test is started.
         * @param testDescriptor The test which is about to be executed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/internal/coverage/cformat/format.go

    	var totalStmts, coveredStmts uint64
    	for _, importpath := range pkgs {
    		p := fm.pm[importpath]
    		if !aggregate {
    			totalStmts, coveredStmts = 0, 0
    		}
    		for unit, count := range p.unitTable {
    			nx := uint64(unit.NxStmts)
    			totalStmts += nx
    			if count != 0 {
    				coveredStmts += nx
    			}
    		}
    		if !aggregate {
    			if _, err := fmt.Fprintf(w, "\t%s\t\t", importpath); err != nil {
    				return err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/expand_calls.go

    }
    
    func expandCalls(f *Func) {
    	// Convert each aggregate arg to a call into "dismantle aggregate, store/pass parts"
    	// Convert each aggregate result from a call into "assemble aggregate from parts"
    	// Convert each multivalue exit into "dismantle aggregate, store/return parts"
    	// Convert incoming aggregate arg into assembly of parts.
    	// Feed modified AST to decompose.
    
    	sp, _ := f.spSb()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  5. operator/pkg/util/progress/progress.go

    // This aims to provide information about the install of multiple components in parallel, while working
    // around the limitations of the pb library, which will only support single lines. To do this, we aggregate
    // the current components into a single line, and as components complete there final state is persisted to a new line.
    type Log struct {
    	components map[string]*ManifestLog
    	bar        *pb.ProgressBar
    	template   string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    // using given clock and aggregates the duration using given aggregate function
    type durationTracker struct {
    	clock             clock.Clock
    	latency           time.Duration
    	mu                sync.Mutex
    	aggregateFunction func(time.Duration, time.Duration) time.Duration
    }
    
    // Track measures time spent in given function and aggregates measured
    // duration using aggregateFunction
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/match/matchers.go

    var Any Matcher = func(_ echo.Instance) bool {
    	return true
    }
    
    // And is an aggregate Matcher that requires all matches return true.
    func And(ms ...Matcher) Matcher {
    	return func(i echo.Instance) bool {
    		for _, m := range ms {
    			if m != nil && !m(i) {
    				return false
    			}
    		}
    		return true
    	}
    }
    
    // Or is an aggregate Matcher that requires at least one matches return true.
    func Or(ms ...Matcher) Matcher {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    			ObjectMeta: metav1.ObjectMeta{Name: "edit", Labels: map[string]string{"rbac.authorization.k8s.io/aggregate-to-admin": "true"}},
    			AggregationRule: &rbacv1.AggregationRule{
    				ClusterRoleSelectors: []metav1.LabelSelector{
    					{MatchLabels: map[string]string{"rbac.authorization.k8s.io/aggregate-to-edit": "true"}},
    				},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            def aggregatedTestResults = new HtmlTestExecutionResult(testDirectory, 'build/reports/tests/unit-test/aggregated-results')
            aggregatedTestResults.assertTestClassesExecuted('application.AdderTest', 'direct.MultiplierTest', 'transitive.PowerizeTest')
        }
    
        def 'can aggregate tests from root project when subproject does not have tests'() {
            given:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    	"istio.io/istio/pilot/pkg/keycertbundle"
    	"istio.io/istio/pilot/pkg/leaderelection"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/server"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/serviceregistry/serviceentry"
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/config/schema/collection"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top