Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for Aggregate (0.17 sec)

  1. api/pom.xml

                    </tag>
                  </tags>
                </configuration>
                <reportSets>
                  <reportSet>
                    <id>aggregate</id>
                    <reports>
                      <report>aggregate</report>
                    </reports>
                    <inherited>false</inherited>
                  </reportSet>
                </reportSets>
              </plugin>
              <plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/servicecontroller.go

    import (
    	"fmt"
    
    	"istio.io/istio/pilot/pkg/serviceregistry/aggregate"
    	kubecontroller "istio.io/istio/pilot/pkg/serviceregistry/kube/controller"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pilot/pkg/serviceregistry/serviceentry"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func (s *Server) ServiceController() *aggregate.Controller {
    	return s.environment.ServiceDiscovery.(*aggregate.Controller)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. prow/config/metrics/metrics.yaml

    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      labels:
        k8s-app: metrics-server
        rbac.authorization.k8s.io/aggregate-to-admin: "true"
        rbac.authorization.k8s.io/aggregate-to-edit: "true"
        rbac.authorization.k8s.io/aggregate-to-view: "true"
      name: system:aggregated-metrics-reader
    rules:
    - apiGroups:
      - metrics.k8s.io
      resources:
      - pods
      - nodes
      verbs:
      - get
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultModelRepositoryHolder.java

                repositories = repositoryFactory.aggregate(session, repositories, repos, true);
                pomRepositories = repositories;
            } else {
                pomRepositories = repositoryFactory.aggregate(session, pomRepositories, repos, true);
                repositories = repositoryFactory.aggregate(session, pomRepositories, externalRepositories, false);
            }
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/fake.go

    	}
    	f := namespace.NewDiscoveryNamespacesFilter(
    		kclient.New[*corev1.Namespace](opts.Client),
    		opts.MeshWatcher,
    		stop,
    	)
    	kubelib.SetObjectFilter(opts.Client, f)
    
    	meshServiceController := aggregate.NewController(aggregate.Options{MeshHolder: opts.MeshWatcher})
    
    	options := Options{
    		DomainSuffix:          domainSuffix,
    		XDSUpdater:            xdsUpdater,
    		Metrics:               &model.Environment{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pilot/pkg/serviceregistry/aggregate/leak_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package aggregate
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 794 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top