Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 318 for registry_ (0.14 sec)

  1. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

                def location = locationFor(it)
                new JvmToolchainMetadata(detector.getMetadata(location), location)
            }
    
            def registry = Stub(JavaInstallationRegistry)
            registry.toolchains() >> installations
            registry
        }
    
        private static def versionRange(int begin, int end) {
            return (begin..end).collect { it.toString() }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

                classpath = classpath.plus(registry.getModule("gradle-daemon-main").getImplementationClasspath());
                searchClassPath = registry.getAdditionalClassPath().getAsFiles();
            } else {
                // When running from a Gradle distro, only need the daemon main jar. The daemon can find everything from there.
                classpath = registry.getModule("gradle-daemon-main").getImplementationClasspath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/controlplane/instance_test.go

    	appsrest "k8s.io/kubernetes/pkg/registry/apps/rest"
    	batchrest "k8s.io/kubernetes/pkg/registry/batch/rest"
    	certificatesrest "k8s.io/kubernetes/pkg/registry/certificates/rest"
    	corerest "k8s.io/kubernetes/pkg/registry/core/rest"
    	discoveryrest "k8s.io/kubernetes/pkg/registry/discovery/rest"
    	networkingrest "k8s.io/kubernetes/pkg/registry/networking/rest"
    	noderest "k8s.io/kubernetes/pkg/registry/node/rest"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

    import static org.gradle.model.internal.type.ModelTypes.modelMap
    import static org.gradle.util.internal.CollectionUtils.single
    
    class NativeComponentModelPluginTest extends AbstractProjectBuilderSpec {
        def registry
    
        def setup() {
            registry = project.modelRegistry
            project.pluginManager.apply(NativeComponentModelPlugin)
        }
    
        def "can apply plugin by id"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

    static void RegisterMlirInputDialects(mlir::DialectRegistry& registry) {
      // TODO(b/259459405): Remove support for stablehlo as an input.
      registry
          .insert<mlir::arith::ArithDialect, mlir::func::FuncDialect,
                  mlir::TF::TensorFlowDialect, mlir::stablehlo::StablehloDialect,
                  mlir::quant::QuantizationDialect>();
      mlir::func::registerAllExtensions(registry);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. pkg/dns/client/dns_test.go

    				Ips:      []string{"2001:db8:0:0:0:ff00:42:8329"},
    				Registry: "External",
    			},
    			"dual.localhost": {
    				Ips:      []string{"2.2.2.2", "2001:db8:0:0:0:ff00:42:8329"},
    				Registry: "External",
    			},
    			"ipv4.localhost": {
    				Ips:      []string{"2.2.2.2"},
    				Registry: "External",
    			},
    			"*.b.wildcard": {
    				Ips:      []string{"11.11.11.11"},
    				Registry: "External",
    			},
    			"*.wildcard": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. pkg/dns/proto/nds.pb.go

    	// The name of the service registry containing the service (e.g. 'Kubernetes').
    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    	// The k8s namespace for the service. Only applies when registry=`Kubernetes`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds_sh_test.go

    	// Set up a cluster registry for network 1 with 1 instance for the service 'service5'
    	// Network has 1 gateway
    	initRegistry(s, 1, []string{"159.122.219.1"}, 1)
    	// Set up a cluster registry for network 2 with 2 instances for the service 'service5'
    	// Network has 1 gateway
    	initRegistry(s, 2, []string{"159.122.219.2"}, 2)
    	// Set up a cluster registry for network 3 with 3 instances for the service 'service5'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.launcher.daemon.context.DaemonContext;
    import org.gradle.launcher.daemon.logging.DaemonMessages;
    import org.gradle.launcher.daemon.registry.DaemonRegistry;
    import org.gradle.launcher.daemon.server.api.DaemonStateControl;
    import org.gradle.launcher.daemon.server.exec.DaemonCommandExecuter;
    import org.gradle.launcher.daemon.server.expiry.DaemonExpirationListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. pkg/controller/resourcequota/resource_quota_monitor.go

    	// maintains list of evaluators
    	registry quota.Registry
    
    	updateFilter UpdateFilter
    }
    
    // NewMonitor creates a new instance of a QuotaMonitor
    func NewMonitor(informersStarted <-chan struct{}, informerFactory informerfactory.InformerFactory, ignoredResources map[schema.GroupResource]struct{}, resyncPeriod controller.ResyncPeriodFunc, replenishmentFunc ReplenishmentFunc, registry quota.Registry, updateFilter UpdateFilter) *QuotaMonitor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top