Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for withServices (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/ProjectScopeServices.java

                DefaultPluginManager.class,
                get(PluginRegistry.class),
                new PluginInstantiator(
                    instantiatorFactory.injectScheme().withServices(this).instantiator(),
                    pluginScheme.getInstantiationScheme().withServices(this).instantiator()
                ),
                pluginTarget,
                buildOperationRunner,
                userCodeApplicationContext,
                decorator,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

            // TODO - dedupe logic copied from DefaultBuildServicesRegistry
            this.paramsInstantiator = instantiatorFactory.decorateScheme().withServices(services).instantiator();
            this.specInstantiator = instantiatorFactory.decorateLenientScheme().withServices(services).instantiator();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            this.isolatableFactory = isolatableFactory;
            this.leaseRegistry = leaseRegistry;
            this.paramsInstantiator = instantiatorFactory.decorateScheme().withServices(services).instantiator();
            this.specInstantiator = instantiatorFactory.decorateLenientScheme().withServices(services).instantiator();
            this.listener = listener;
            listenerManager.addListener(new ServiceCleanupListener());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    	podID := "pod1"
    	contID := "con1"
    	devices := checkpoint.DevicesPerNUMA{0: []string{"dev1"}, 1: []string{"dev1"}}
    
    	podDevices.insert(podID, contID, resourceName1,
    		devices,
    		newContainerAllocateResponse(
    			withDevices(map[string]string{"/dev/r1dev1": "/dev/r1dev1", "/dev/r1dev2": "/dev/r1dev2"}),
    			withMounts(map[string]string{"/home/r1lib1": "/usr/r1lib1"}),
    		),
    	)
    
    	resContDevices := podDevices.getContainerDevices(podID, contID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry.go

    		}
    	}
    
    	ct := &computedTelemetries{
    		telemetryKey: key,
    		Metrics:      ms,
    		Logging:      ls,
    		Tracing:      ts,
    	}
    
    	matcher := PolicyMatcherForProxy(proxy).WithService(svc)
    	for _, telemetry := range t.NamespaceToTelemetries[namespace] {
    		spec := telemetry.Spec
    		// TODO in many other places, empty selector matches all policy
    		if len(spec.GetSelector().GetMatchLabels()) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top