Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 420 for registry_ (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/os/user/lookup_windows.go

    }
    
    // findHomeDirInRegistry finds the user home path based on the uid.
    func findHomeDirInRegistry(uid string) (dir string, e error) {
    	k, e := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\`+uid, registry.QUERY_VALUE)
    	if e != nil {
    		return "", e
    	}
    	defer k.Close()
    	dir, _, e = k.GetStringValue("ProfileImagePath")
    	if e != nil {
    		return "", e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProjectStateRegistry.java

            DefaultBuildProjectRegistry registry = projectsByBuild.get(build.getBuildIdentifier());
            if (registry != null) {
                for (ProjectStateImpl project : registry.projectsByPath.values()) {
                    projectsById.remove(project.identifier);
                    projectsByPath.remove(project.identityPath);
                }
                CompositeStoppable.stoppable(registry.projectsByPath.values()).stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21K 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