Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Registries (0.25 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/management/internal/autoapply/CompositeAutoAppliedPluginRegistry.java

        private final List<AutoAppliedPluginRegistry> registries;
    
        public CompositeAutoAppliedPluginRegistry(List<AutoAppliedPluginRegistry> registries) {
            this.registries = registries;
        }
    
        @Override
        public PluginRequests getAutoAppliedPlugins(Project target) {
            return registries.stream().map(r -> r.getAutoAppliedPlugins(target))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. tests/fuzz/aggregate_controller_fuzzer.go

    func runDeleteRegistry(f *fuzz.ConsumeFuzzer, c *aggregate.Controller) error {
    	registries := c.GetRegistries()
    	if len(registries) == 0 {
    		return fmt.Errorf("no registries")
    	}
    	index, err := f.GetInt()
    	if err != nil {
    		return err
    	}
    	selectedRegistry := registries[index%len(registries)]
    	c.DeleteRegistry(selectedRegistry.Cluster(), selectedRegistry.Provider())
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 18:40:05 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServiceRegistryFactory.java

                registries.add(gradleServices);
                return gradleServices;
            }
            throw new IllegalArgumentException(String.format("Cannot create services for unknown domain object of type %s.", domainObject.getClass().getSimpleName()));
        }
    
        @Override
        public void close() {
            registries.stop();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 11 09:02:18 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    // Validate validates RuntimeConfig with a list of registries.
    // Usually this list only has one element, the apiserver registry of the process.
    // But in the advanced (and usually not recommended) case of delegated apiservers there can be more.
    // Validate will filter out the known groups of each registry.
    // If anything is left over after that, an error is returned.
    func (s *APIEnablementOptions) Validate(registries ...GroupRegistry) []error {
    	if s == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/util.go

    package bootstrap
    
    import (
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/serviceregistry/provider"
    	"istio.io/istio/pkg/ledger"
    )
    
    func hasKubeRegistry(registries []string) bool {
    	for _, r := range registries {
    		if provider.ID(r) == provider.Kubernetes {
    			return true
    		}
    	}
    	return false
    }
    
    func buildLedger(ca RegistryOptions) ledger.Ledger {
    	var result ledger.Ledger
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-discovery/app/cmd.go

    			InjectionDirectory: "./var/lib/istio/inject",
    		}
    	})
    
    	// Process commandline args.
    	c.PersistentFlags().StringSliceVar(&serverArgs.RegistryOptions.Registries, "registries",
    		[]string{string(provider.Kubernetes)},
    		fmt.Sprintf("Comma separated list of platform service registries to read from (choose one or more from {%s, %s})",
    			provider.Kubernetes, provider.Mock))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationValve.java

     * but we need to allow, external (i.e. non ListenerManager), listeners per build.
     * <p>
     * Furthermore, the actual lifecycle is not something that we currently model with the service registries.
     * The notification listener is effectively of cross build tree scope, which doesn't exist.
     * This is because GradleBuild uses a discrete tree (which is intended to change later).
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/state/DefaultManagedFactoryRegistryTest.groovy

            def registry = new DefaultManagedFactoryRegistry(parent).withFactories(fooFactory2)
    
            expect:
            registry.lookup(fooFactory1.id) == fooFactory2
        }
    
        def "returns null for unknown type in all registries"() {
            def fooFactory = factory(Foo)
            def barFactory = factory(Bar)
            def buzzFactory = factory(Buzz)
            def parent = new DefaultManagedFactoryRegistry().withFactories(fooFactory)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/storage_decorator.go

    }
    
    // NewRawStorage creates the low level kv storage. This is a work-around for current
    // two layer of same storage interface.
    // TODO: Once cacher is enabled on all registries (event registry is special), we will remove this method.
    func NewRawStorage(config *storagebackend.ConfigForResource, newFunc, newListFunc func() runtime.Object, resourcePrefix string) (storage.Interface, factory.DestroyFunc, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/multicluster/meshnetworks.go

    )
    
    // MeshNetworksAnalyzer validates MeshNetworks configuration in multi-cluster.
    type MeshNetworksAnalyzer struct{}
    
    var _ analysis.Analyzer = &MeshNetworksAnalyzer{}
    
    // Service Registries that are known to istio.
    var serviceRegistries = []provider.ID{
    	provider.Mock,
    	provider.Kubernetes,
    	provider.External,
    }
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top