Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for Aggregate (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	err := utilerrors.FilterOut(list.ToAggregate(), fns...)
    	if err == nil {
    		return nil
    	}
    	// FilterOut takes an Aggregate and returns an Aggregate
    	return fromAggregate(err.(utilerrors.Aggregate))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/aggregate/controller_test.go

    	defer close(stop)
    	ctrl := NewController(Options{})
    
    	t.Run("AddRegistry before aggregate Run does not run", func(t *testing.T) {
    		ctrl.AddRegistry(runnableRegistry("earlyAdd"))
    		ctrl.AddRegistryAndRun(runnableRegistry("earlyAddAndRun"), stop)
    		expectRunningOrFail(t, ctrl, false)
    	})
    	t.Run("aggregate Run starts all registries", func(t *testing.T) {
    		go ctrl.Run(stop)
    		expectRunningOrFail(t, ctrl, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                            Assert.assertEquals(1, powerize.pow(1, 2));
                        }
                    }
                """
            }
        }
    
        def "can aggregate jacoco execution data from dependent projects"() {
            given:
            file("application/build.gradle") << """
                apply plugin: 'org.gradle.jacoco-report-aggregation'
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/aggregate/controller.go

    }
    
    // AddRegistry adds registries into the aggregated controller.
    // If the aggregated controller is already Running, the given registry will never be started.
    func (c *Controller) AddRegistry(registry serviceregistry.Instance) {
    	c.storeLock.Lock()
    	defer c.storeLock.Unlock()
    	c.addRegistry(registry, nil)
    }
    
    // AddRegistryAndRun adds registries into the aggregated controller and makes sure it is Run.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/fake.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	configaggregate "istio.io/istio/pilot/pkg/config/aggregate"
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry"
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	memregistry "istio.io/istio/pilot/pkg/serviceregistry/memory"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top