Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 774 for registerKey (0.32 sec)

  1. internal/event/target/postgresql_test.go

    	"testing"
    )
    
    // TestPostgreSQLRegistration checks if postgres driver
    // is registered and fails otherwise.
    func TestPostgreSQLRegistration(t *testing.T) {
    	var found bool
    	for _, drv := range sql.Drivers() {
    		if drv == "postgres" {
    			found = true
    			break
    		}
    	}
    	if !found {
    		t.Fatal("postgres driver not registered")
    	}
    }
    
    func TestPsqlTableNameValidation(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 17:51:07 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cc

      addTypes<TFTensorType, TFAllocatorType>();
    
      addOperations<
    #define GET_OP_LIST
    #include "tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.cpp.inc"
          >();
    }
    
    /// Parse a type registered to this dialect.
    Type FallbackDialect::parseType(DialectAsmParser &parser) const {
      StringRef keyword;
      if (parser.parseKeyword(&keyword)) return Type();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

      // Adds a `QuantizationResult` to the report.
      void AddQuantizationResult(
          ::stablehlo::quantization::QuantizationResult&& result);
    
      // Returns `QuantizationResults` that are registered in this report.
      const ::stablehlo::quantization::QuantizationResults& GetQuantizationResults()
          const {
        return quantization_results_;
      }
    
      // Returns a human-readable string representation of this report.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.h

      Operation *materializeConstant(OpBuilder &builder, Attribute value, Type type,
                                     Location loc) override;
    
      // Parse a type registered to this dialect.
      Type parseType(DialectAsmParser &parser) const override;
    
      // Prints a type registered to this dialect.
      void printType(Type ty, DialectAsmPrinter &os) const override;
    };
    
    }  // namespace TFR
    }  // namespace mlir
    
    #define GET_OP_CLASSES
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Sep 01 14:00:36 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticProjectStructureProvider.kt

     * of the pre-registered modules are by definition not part of the *static* module structure.
     */
    public abstract class KtStaticProjectStructureProvider : ProjectStructureProvider() {
        /**
         * All [KtModule]s registered with the project structure provider, excluding [KtNotUnderContentRootModule]s and the built-ins module.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jul 31 15:58:00 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/software/publish/src/integTest/groovy/org/gradle/api/tasks/UploadTaskIntegrationTest.groovy

    /**
     This test exists to ensure that the {@code @Deprecated} {@link Upload} task can still be registered
     and its properties accessed for backwards compatibility; but that it throws an exception upon usage.
     */
    class UploadTaskIntegrationTest extends AbstractIntegrationSpec {
        def "deprecated Upload task class can be registered and properties accessed, but fails at execution time"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
         * the actions to carry any shared mutable state across projects and can be safely executed in parallel.
         */
        @Nullable
        ProjectEvaluationListener isolateFor(Gradle owner);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            registration(registry)
    
            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.")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			},
    			maxSeats:                  10,
    			initialSeatsExpected:      1,
    			finalSeatsExpected:        0,
    			additionalLatencyExpected: 0,
    		},
    		{
    			name:       "request verb is create, watches registered",
    			requestURI: "http://server/apis/foo.bar/v1/foos",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "create",
    				APIGroup: "foo.bar",
    				Resource: "foos",
    			},
    			watchCount:                29,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            failure.assertHasCause("Type 'org.gradle.test.SoftwareTypeImplPlugin' is registered as a software type plugin but does not expose a software type.")
        }
    
        def 'sensible error when a software type plugin is registered that exposes multiple software types'() {
            given:
            withSoftwareTypePluginThatExposesMultipleSoftwareTypes().prepareToExecute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top