Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 272 for registerKey (0.27 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/problems/ProblemDiagnostics.java

        /**
         * A stack tracing failure associated with the problem.
         * <p>
         * Usually, if the problem was caused by an exception, the failure would correspond to that exception.
         * However, problems that are registered explicitly (e.g. deprecation warnings) will not have an associated exception.
         * In this case, the failure can be synthetic to provide the stack trace for the problem origin.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:13:26 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceRegistryBuilderTest.groovy

                .build()
    
            then:
            def exception = thrown(IllegalArgumentException)
            exception.message.contains("The service '${BuildTreeScopedService.name}' declares service scope 'BuildTree' but is registered in the 'Build' scope. Either update the '@ServiceScope()' annotation on '${BuildTreeScopedService.simpleName}' to include the 'Build' scope or move the service registration to one of the declared scopes.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/plugin/noderesources.go

    	// When kubelet starts, we have two choices:
    	// - Sync immediately, which in practice will delete all ResourceSlices
    	//   because no plugin has registered yet. We could do a DeleteCollection
    	//   to speed this up.
    	// - Wait a bit, then sync. If all plugins have re-registered in the meantime,
    	//   we might not need to change any ResourceSlice.
    	//
    	// For now syncing starts immediately, with no DeleteCollection. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            DefaultServiceRegistration<?, ?> registration = findRegistration(service.getType(), service.getName());
            if (registration == null) {
                // no corresponding service registered
                return null;
            }
            return registration.asSharedResource(() -> {
                // Prevent further changes to registration
                registration.getMaxParallelUsages().finalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

        return absl::OkStatus();
      }
    
      // Collect all the registered attributes.
      llvm::DenseSet<llvm::StringRef> registered_attrs;
      registered_attrs.insert("name");
      registered_attrs.insert("device");
      for (const auto& attr_def : op_reg_data->op_def.attr()) {
        registered_attrs.insert(attr_def.name());
      }
      // Attributes are not in the registered attributes set will be ignored.
      for (auto& attr : inst->getAttrs()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

                //KotlinClassFileDecompiler is registered as application service so it's available for the tests run in parallel as well
                //when the decompiler is registered, for compiled class KtClsFile is created instead of ClsFileImpl
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_graph_optimization_pass.cc

        return "run-tf-graph-optimization";
      }
    
      llvm::StringRef getDescription() const final {
        return "runs passes registered as tensorflow::GraphOptimizationPass";
      }
    
     private:
      void runOnOperation() override {
        // Verify all passes requested were registered/found.
        for (auto pass_it : llvm::enumerate(passes_)) {
          if (pass_it.value() == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfo.java

         * <p>
         * The action will be invoked at-most once during a build.
         * It will only be invoked for the build in which it was registered (i.e. not subsequent builds).
         * Each action provided to each invocation of this message will be notified.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/config/v1alpha1/defaults.go

    // HPAControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    // function to allow consumers of this type to set whatever defaults for their
    // embedded configs. Forcing consumers to use these defaults would be problematic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/ApplicationServiceRegistration.kt

     *
     * The Kotlin core environment shares the application between multiple tests running in parallel. We need to ensure that application
     * services are only registered once, and especially that no races happen. Thread safety is ensured with a lock, while registrations are
     * kept unique by remembering which service registrars have been applied already.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 16 11:53:35 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top