Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for registry_ (0.26 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            registry.addProvider(provider)
    
            expect:
            registry.get(Integer).is(registry.get(Integer))
            registry.get(Number).is(registry.get(Number))
    
            and:
            registry.get(String).is(registry.get(String))
        }
    
        def usesProviderDecoratorMethodToDecorateParentServiceInstance() {
            def parent = Mock(ParentServices)
            def registry = new DefaultServiceRegistry(registry(parent))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
            throw new IllegalArgumentException(String.format("Service registry %s cannot be used as a parent for another service registry.", serviceRegistry));
        }
    
        /**
         * Creates a service registry that uses the given providers.
         */
        public static ServiceRegistry create(ServiceRegistrationProvider... providers) {
            DefaultServiceRegistry registry = new DefaultServiceRegistry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/route/route.go

    	// Stores VS hosts that don't correspond to services in the registry
    	// Currently, the only use for this list is to enable VirtualService configuration to affect
    	// traffic to hosts outside of the service registry (e.g. google.com) on port 80
    	nonServiceRegistryHosts := make([]string, 0)
    	// Stores services for this VirtualService that are in the registry (based on hostname)
    	matchingRegistryServices := make([]*model.Service, 0)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    // XDSUpdater is used for direct updates of the xDS model and incremental push.
    // Pilot uses multiple registries - for example each K8S cluster is a registry
    // instance. Each registry is responsible for tracking a set
    // of endpoints associated with mesh services, and calling the EDSUpdate on changes.
    // A registry may group endpoints for a service in smaller subsets - for example by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kubectl support both:
      - kubectl create secret docker-registry <NAME> --from-file=<path/to/.docker/config.json>
      - kubectl create secret docker-registry <NAME> --from-file=.dockerconfigjson=<path/to/.docker/config.json> ([#119589](https://github.com/kubernetes/kubernetes/pull/119589), [@carlory](https://github.com/carlory)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar_test.go

    			},
    		},
    		{
    			name:       "MeshConfig registry only, Sidecar with registry only",
    			meshConfig: meshConfigWithRegistryOnly,
    			sidecar:    configRegistryOnly,
    			outboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_REGISTRY_ONLY,
    			},
    		},
    		{
    			name:       "MeshConfig registry only, Sidecar with allow any",
    			meshConfig: meshConfigWithRegistryOnly,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			want:  nil,
    		},
    		{
    			name:  "proxy with IP not in the registry",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"1.1.1.1"}},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP from the registry, 1 matching WE, but no matching Service",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"4.4.4.41"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    	maxTimeout = 15 * time.Minute
    )
    
    // frameworkImpl is the component responsible for initializing and running scheduler
    // plugins.
    type frameworkImpl struct {
    	registry             Registry
    	snapshotSharedLister framework.SharedLister
    	waitingPods          *waitingPodsMap
    	scorePluginWeight    map[string]int
    	preEnqueuePlugins    []framework.PreEnqueuePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        const std::vector<std::string>& ordered_output_arrays,
        bool experimental_prune_unreachable_nodes_unconditionally,
        const bool disable_vhlo_to_stablehlo) {
      mlir::DialectRegistry registry;
      registry.insert<mlir::arith::ArithDialect, mlir::func::FuncDialect,
                      mlir::quant::QuantizationDialect,
                      mlir::quantfork::QuantizationForkDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // to use for pulling any images in pods that reference this ServiceAccount.
      // Must be set for any cluster configured with private docker registry.
      repeated string imagePullSecrets = 37;
    
      // Specifies the default namespace for the Istio control plane components.
      string istioNamespace = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top