Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 420 for registry_ (0.14 sec)

  1. pkg/credentialprovider/plugin/plugin.go

    	// The caveat here is we don't know cacheKeyType yet, so if cacheKeyType is registry/global and credentials saved in cache
    	// on per registry/global basis then exec will be called for all requests if requests are made concurrently.
    	// foo.bar.registry
    	// foo.bar.registry/image1
    	// foo.bar.registry/image2
    	res, err, _ := p.group.Do(image, func() (interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        // back to do it properly in the future
        mlir::DialectRegistry registry;
        RegisterAllTensorFlowDialects(registry);
        registry
            .insert<mlir::func::FuncDialect, mlir::stablehlo::StablehloDialect>();
        context.appendDialectRegistry(registry);
      }
    
      absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> module;
      std::unordered_set<std::string> tags;
    
      tensorflow::GraphImportConfig specs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler.go

    		}
    	}
    }
    
    // WithFrameworkOutOfTreeRegistry sets the registry for out-of-tree plugins. Those plugins
    // will be appended to the default registry.
    func WithFrameworkOutOfTreeRegistry(registry frameworkruntime.Registry) Option {
    	return func(o *schedulerOptions) {
    		o.frameworkOutOfTreeRegistry = registry
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

            metadata.visualCppVersion == VersionNumber.parse("14.0")
            metadata.compatibility == LEGACY
        }
    
        def "can determine legacy version of an install from windows registry when command line has no results"() {
            def dir1 = tmpDir.createDir("dir2")
            def dir2 = tmpDir.createDir("dir3")
    
            given:
            windowsRegistryInstall(dir1, "14.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocatorTest.groovy

        }
        final WindowsSdkLocator windowsSdkLocator = new LegacyWindowsSdkLocator(operatingSystem, windowsRegistry)
    
        def "uses highest version SDK found in registry"() {
            def dir1 = sdkDir("sdk1")
            def dir2 = sdkDir("sdk2")
    
            given:
            operatingSystem.findInPath(_) >> null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

      return absl::OkStatus();
    }
    
    tensorflow::Status RunConverter(const PassPipelineCLParser& pass_pipeline) {
      DialectRegistry registry;
      registerAllDialects(registry);
      RegisterAllTensorFlowDialects(registry);
      mhlo::registerAllMhloDialects(registry);
      stablehlo::registerAllDialects(registry);
      registry.insert<mlir::func::FuncDialect, mlir::tf_type::TFTypeDialect,
                      mlir::quant::QuantizationDialect>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy
    import org.gradle.internal.watch.registry.FileWatcherRegistry
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory
    import org.gradle.internal.watch.registry.WatchMode
    import org.gradle.internal.watch.registry.impl.DaemonDocumentationIndex
    import org.gradle.internal.watch.vfs.FileChangeListeners
    import org.gradle.internal.watch.vfs.VfsLogging
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

            DefaultSerializerRegistry registry = new DefaultSerializerRegistry();
            registry.register(ExecuteBuildAction.class, new ExecuteBuildActionSerializer());
            registry.register(BuildModelAction.class, new BuildModelActionSerializer());
            registry.register(ClientProvidedBuildAction.class, new ClientProvidedBuildActionSerializer());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  9. samples/security/spire/spire-quickstart.yaml

              securityContext:
                privileged: true
            # This container runs the CSI Node Driver Registrar which takes care
            # of all the little details required to register a CSI driver with
            # the kubelet.
            - name: node-driver-registrar
              image: registry.k8s.io/sig-storage/csi-node-driver-registrar:v2.4.0
              imagePullPolicy: IfNotPresent
              args: [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  10. cmd/kube-scheduler/app/server.go

    // hence there are no references to it from the kubernetes scheduler code base.
    func WithPlugin(name string, factory runtime.PluginFactory) Option {
    	return func(registry runtime.Registry) error {
    		return registry.Register(name, factory)
    	}
    }
    
    // Setup creates a completed config and a scheduler based on the command args and options
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top