Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for registry_ (0.37 sec)

  1. pilot/test/xds/fake.go

    	KubernetesVersion string
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    	KubernetesObjectsByCluster map[cluster.ID][]runtime.Object
    	// If provided, these objects will be used directly for the default cluster ("Kubernetes" or DefaultClusterName)
    	KubernetesObjects []runtime.Object
    	// If provided, a service registry with the name of each map key will be created with the given objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

                    allprojects {
                        task thing {
                            def registry = project.services.get(${BuildStateRegistry.name})
                            doLast {
                                def projects = []
                                def builds = []
                                registry.visitBuilds { b ->
                                    builds.add(b.identityPath.path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

            return environment;
        }
    
        @Provides
        CachingServiceLocator createPluginsServiceLocator(ClassLoaderRegistry registry) {
            return CachingServiceLocator.of(
                new DefaultServiceLocator(registry.getPluginsClassLoader())
            );
        }
    
        @Provides
        JdkToolsInitializer createJdkToolsInitializer(ClassLoaderFactory classLoaderFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar.go

    			log.Debugf("Service %s/%s from registry %s ignored as it is already added", s.Attributes.Namespace, s.Hostname, s.Attributes.ServiceRegistry)
    			return
    		}
    		// We do not merge k8s service with any other services from other registries
    		if existing.Attributes.ServiceRegistry == provider.Kubernetes && s.Attributes.ServiceRegistry != provider.Kubernetes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) XdsConnection() *xds.Connection {
    	return &conn.Connection
    }
    
    func (conn *Connection) Proxy() *model.Proxy {
    	return conn.proxy
    }
    
    // Event represents a config or registry event that results in a push.
    type Event struct {
    	// pushRequest PushRequest to use for the push.
    	pushRequest *model.PushRequest
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    		RecordTime: store.clock.Now(),
    	}
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		store.updateCache(add)
    	}
    }
    
    func TestHistogramCacheReadWait(t *testing.T) {
    	registry := k8smetrics.NewKubeRegistry()
    	if err := registry.Register(metrics.WatchCacheReadWait); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	ctx := context.Background()
    	testedMetrics := "apiserver_watch_cache_read_wait_seconds"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

            ProjectInternal projectInternal = (ProjectInternal) project;
            ProjectPublicationRegistry registry = projectInternal.getServices().get(ProjectPublicationRegistry.class);
            extension.getPlugins().all(pluginDeclaration -> registry.registerPublication(projectInternal, new LocalPluginPublication(pluginDeclaration)));
        }
    
        private static void applyDependencies(Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

                        println('onFinished')
                    }
                }
    
                def listener = gradle.sharedServices.registerIfAbsent("listener", ListenerService) { }
                def registry = services.get(BuildEventsListenerRegistry)
                registry.onOperationCompletion(listener)
            """
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            configurationCacheRun()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top