Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for Registries (0.32 sec)

  1. 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)
  2. pilot/test/xds/fake.go

    			if opts.DisableSecretAuthorization {
    				DisableAuthorizationForSecret(defaultKubeClient.Kube().(*fake.Clientset))
    			}
    			defaultKubeController = k8s
    		} else {
    			client.RunAndWait(stop)
    		}
    		registries = append(registries, k8s)
    		mc.Add(k8sCluster, client, stop)
    	}
    
    	stop := test.NewStop(t)
    	ingr := ingress.NewController(defaultKubeClient, mesh.NewFixedWatcher(m), kube.Options{
    		DomainSuffix: "cluster.local",
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. 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)
  4. pkg/registry/core/rest/storage_core.go

    	}
    
    	if len(storage) > 0 {
    		apiGroupInfo.VersionedResourcesStorageMap["v1"] = storage
    	}
    
    	return apiGroupInfo, nil
    }
    
    func (c *Config) newServiceIPAllocators() (registries rangeRegistries, primaryClusterIPAllocator ipallocator.Interface, clusterIPAllocators map[api.IPFamily]ipallocator.Interface, nodePortAllocator *portallocator.PortAllocator, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/internal/PluginUseServices.java

            }
    
            @Provides
            AutoAppliedPluginHandler createAutoAppliedPluginHandler(List<AutoAppliedPluginRegistry> registries) {
                return new DefaultAutoAppliedPluginHandler(new CompositeAutoAppliedPluginRegistry(registries));
            }
    
            @Provides
            SoftwareTypeRegistry createSoftwareTypeRegistry(PluginScheme pluginScheme) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pilot/pkg/bootstrap/servicecontroller.go

    		s.environment.Watcher,
    		serviceentry.WithClusterID(s.clusterID),
    	)
    	serviceControllers.AddRegistry(s.serviceEntryController)
    
    	registered := sets.New[provider.ID]()
    	for _, r := range args.RegistryOptions.Registries {
    		serviceRegistry := provider.ID(r)
    		if registered.Contains(serviceRegistry) {
    			log.Warnf("%s registry specified multiple times.", r)
    			continue
    		}
    		registered.Insert(serviceRegistry)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/fake.go

    	Gateways  []model.NetworkGateway
    
    	// If provided, this mesh config will be used
    	MeshConfig      *meshconfig.MeshConfig
    	NetworksWatcher mesh.NetworksWatcher
    
    	// Additional service registries to use. A ServiceEntry and memory registry will always be created.
    	ServiceRegistries []serviceregistry.Instance
    
    	// Base ConfigController to use. If not set, a in-memory store will be used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

            ServiceRegistryBuilder builder = ServiceRegistryBuilder.builder().displayName("Global services");
            // Should reuse `GlobalScopeServices` here, however this requires a bunch of stuff in order to discover the plugin service registries
            // For now, re-implement the discovery here
            builder.provider(new ServiceRegistrationProvider() {
                @SuppressWarnings("unused")
                void configure(ServiceRegistration registration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top