Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,200 for registry_ (0.14 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

            when:
            extractor.extract(ParameterizedModel).apply(registry, node())
    
            then:
            registry.realizeNode(ModelPath.path("strings")).promise.canBeViewedAs(new ModelType<List<String>>() {})
            registry.realizeNode(ModelPath.path("superStrings")).promise.canBeViewedAs(new ModelType<List<? super String>>() {})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. samples/bookinfo/README.md

     => [auth] user1/examples-bookinfo-ratings-v-unhealthy:pull,push token for registry-1.docker.io                                                                                                   0.0s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tools/stablehlo_quant_opt.cc

                      mlir::tf_executor::TensorFlowExecutorDialect,
                      mlir::vhlo::VhloDialect>();
      mlir::mhlo::registerAllMhloDialects(registry);
      mlir::func::registerAllExtensions(registry);
      return failed(
          mlir::MlirOptMain(argc, argv, "StableHLO quant Pass Driver\n", registry));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 07:37:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. pkg/registry/networking/rest/storage_settings.go

    	"k8s.io/apiserver/pkg/registry/generic"
    	"k8s.io/apiserver/pkg/registry/rest"
    	genericapiserver "k8s.io/apiserver/pkg/server"
    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/networking"
    	ingressstore "k8s.io/kubernetes/pkg/registry/networking/ingress/storage"
    	ingressclassstore "k8s.io/kubernetes/pkg/registry/networking/ingressclass/storage"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/tf_quant_opt.cc

    int main(int argc, char **argv) {
      tensorflow::InitMlir y(&argc, &argv);
    
      mlir::registerAllPasses();
      mlir::registerTensorFlowPasses();
    
      mlir::DialectRegistry registry;
      registry.insert<mlir::scf::SCFDialect, mlir::TF::TensorFlowDialect,
                      mlir::tf_saved_model::TensorFlowSavedModelDialect,
                      mlir::func::FuncDialect, mlir::shape::ShapeDialect,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 06 18:20:34 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/management/internal/autoapply/DefaultAutoAppliedPluginHandler.java

    public class DefaultAutoAppliedPluginHandler implements AutoAppliedPluginHandler {
    
        private final AutoAppliedPluginRegistry registry;
    
        public DefaultAutoAppliedPluginHandler(AutoAppliedPluginRegistry registry) {
            this.registry = registry;
        }
    
        @Override
        public PluginRequests getAutoAppliedPlugins(PluginRequests initialRequests, Object pluginTarget) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/time/zoneinfo_windows.go

    	}
    	return true, nil
    }
    
    // toEnglishName searches the registry for an English name of a time zone
    // whose zone names are stdname and dstname and returns the English name.
    func toEnglishName(stdname, dstname string) (string, error) {
    	k, err := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones`, registry.ENUMERATE_SUB_KEYS|registry.QUERY_VALUE)
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. pkg/registry/core/serviceaccount/storage/storage.go

    	"k8s.io/apiserver/pkg/registry/generic"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
    	"k8s.io/apiserver/pkg/registry/rest"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/printers"
    	printersinternal "k8s.io/kubernetes/pkg/printers/internalversion"
    	printerstorage "k8s.io/kubernetes/pkg/printers/storage"
    	"k8s.io/kubernetes/pkg/registry/core/serviceaccount"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/registry/core/rest/storage_core.go

    	podtemplatestore "k8s.io/kubernetes/pkg/registry/core/podtemplate/storage"
    	"k8s.io/kubernetes/pkg/registry/core/rangeallocation"
    	controllerstore "k8s.io/kubernetes/pkg/registry/core/replicationcontroller/storage"
    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    	serviceallocator "k8s.io/kubernetes/pkg/registry/core/service/allocator/storage"
    	"k8s.io/kubernetes/pkg/registry/core/service/ipallocator"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

        private static final JavaToolchainDownload DOWNLOAD = JavaToolchainDownload.fromUri(URI.create('https://server/whatever'))
    
        @TempDir
        public File temporaryFolder
    
        def registry = Mock(JavaToolchainResolverRegistryInternal)
        def downloader = Mock(SecureFileDownloader)
        def cache = Mock(DefaultJdkCacheDirectory)
        def archiveFileLock = Mock(FileLock)
        def buildPlatform = Mock(BuildPlatform)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top