Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 317 for registry_ (0.29 sec)

  1. build/lib/release.sh

      local -r arch="$1"
      local -r registry="$2"
      local -r version="$3"
      local -r save_dir="${4-}"
      kube::log::status "Building conformance image for arch: ${arch}"
      ARCH="${arch}" REGISTRY="${registry}" VERSION="${version}" \
        make -C test/conformance/image/ build >/dev/null
    
      local conformance_tag
      conformance_tag="${registry}/conformance-${arch}:${version}"
      if [[ -n "${save_dir}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	lockAcquisitionFunc func([]corev1.ResourceQuota) func()
    
    	ignoredResources map[schema.GroupResource]struct{}
    
    	// registry that knows how to measure usage for objects
    	registry quota.Registry
    
    	// TODO these are used together to bucket items by namespace and then batch them up for processing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_dump_tensor_op.cc

        // This is a brief description of the pass.
        return "Add DumpTensor ops after quantizable ops";
      }
    
      void getDependentDialects(DialectRegistry &registry) const override {
        registry.insert<TF::TensorFlowDialect>();
        registry.insert<quant::QuantizationDialect>();
        registry.insert<quantfork::QuantizationForkDialect>();
      }
    
     private:
      void runOnOperation() override;
    
      Option<DebuggerType> debugger_type_{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    		expectErr   string
    	}{
    		{
    			name: "test when ServerList is not specified",
    			testOptions: &EtcdOptions{
    				StorageConfig: storagebackend.Config{
    					Type:   "etcd3",
    					Prefix: "/registry",
    					Transport: storagebackend.TransportConfig{
    						ServerList:    nil,
    						KeyFile:       "/var/run/kubernetes/etcd.key",
    						TrustedCAFile: "/var/run/kubernetes/etcdca.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataSupplierRuleExecutorTest.groovy

            def registry = new DefaultServiceRegistry()
            services.each { name, value ->
                registry.add(value.class, value)
            }
            def instantiator = new ImplicitInputsCapturingInstantiator(registry, TestUtil.instantiatorFactory()) {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/storage_test.go

    	"k8s.io/apimachinery/pkg/types"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/registry/generic"
    	genericregistry "k8s.io/apiserver/pkg/registry/generic/registry"
    	genericregistrytest "k8s.io/apiserver/pkg/registry/generic/testing"
    	"k8s.io/apiserver/pkg/registry/rest"
    	apiserverstorage "k8s.io/apiserver/pkg/storage"
    	storeerr "k8s.io/apiserver/pkg/storage/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

        void withRule(Class<? extends Action<ComponentMetadataContext>> ruleClass, Map<String, Object> services = [:]) {
            def registry = new DefaultServiceRegistry()
            services.each { name, value ->
                registry.add(value.class, value)
            }
            def instantiator = new ImplicitInputsCapturingInstantiator(registry, TestUtil.instantiatorFactory()) {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/VirtualFileSystemServices.java

    import org.gradle.internal.vfs.impl.DefaultSnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.DarwinFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.LinuxFileWatcherRegistryFactory;
    import org.gradle.internal.watch.registry.impl.WindowsFileWatcherRegistryFactory;
    import org.gradle.internal.watch.vfs.BuildLifecycleAwareVirtualFileSystem;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

            }
    
            // Pluggable serialization
            for (ValueSnapshotterSerializerRegistry registry : valueSnapshotterSerializerRegistryList) {
                if (registry.canSerialize(valueClass)) {
                    return gradleSerialization(value, registry.build(valueClass), visitor);
                }
            }
    
            // Fall back to Java serialization
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. cmd/bucket-replication-stats.go

    	// mrf backlog stats
    	mrfStats ReplicationMRFStats
    	// for bucket replication, continue to use existing cache
    	Cache             map[string]*BucketReplicationStats
    	mostRecentStats   BucketStatsMap
    	registry          metrics.Registry
    	sync.RWMutex                 // mutex for Cache
    	mostRecentStatsMu sync.Mutex // mutex for mostRecentStats
    
    	wlock sync.RWMutex // mutex for active workers
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top