Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 319 for Aggregate (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    `test` - Task (lifecycle)::
    Depends on: `runTest__Variant__` that most closely matches the build host
    ::
    Aggregate task of the variant that most closely match the build host for testing the component.
    
    `check` - Task (lifecycle)::
    Depends on: `test`
    ::
    Aggregate task that performs verification tasks, such as running the tests.
    Some plugins add their own verification task to `check`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/IntermediateToolingModelProvider.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Fetches models for given projects in an Isolated Project-compatible manner.
     * <p>
     * It should be used by tooling model builders when they need to aggregate models
     * from <b>multiple projects of the same build</b>.
     */
    @NonNullApi
    @ServiceScope(Scope.Build.class)
    public interface IntermediateToolingModelProvider {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/RepositoryFactory.java

        @Nonnull
        RemoteRepository createRemote(@Nonnull String id, @Nonnull String url);
    
        @Nonnull
        RemoteRepository createRemote(@Nonnull Repository repository);
    
        @Nonnull
        List<RemoteRepository> aggregate(
                @Nonnull Session session,
                @Nonnull List<RemoteRepository> dominant,
                @Nonnull List<RemoteRepository> recessive,
                boolean processRecessive);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/build_dashboard_plugin.adoc

    ====
    
    Applying the plugin adds the `buildDashboard` task to your project. The task aggregates the reports for all tasks that implement the link:{groovyDslPath}/org.gradle.api.reporting.Reporting.html[Reporting] interface from _all projects_ in the build. It is typically only applied to the root project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoConfigurationCacheIntegrationTest.groovy

            // run all tests with configuration caching
            file('gradle.properties') << 'org.gradle.configuration-cache=true'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/26922')
        def 'can aggregate with `java-gradle-plugin` subproject'() {
            given:
            file('settings.gradle.kts') << """
                include(":plugin")
                dependencyResolutionManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 16:53:54 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top