Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 478 for registry_ (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top