Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for Aggregate (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - matchLabels:
            rbac.authorization.k8s.io/aggregate-to-edit: "true"
      apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRole
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
          rbac.authorization.k8s.io/aggregate-to-admin: "true"
        name: edit
      rules: null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top