Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,043 for Unregistered (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/plugins/ProjectTheExtensionCrossVersionSpec.groovy

                }
    
                // Error cases
    
                try {
                    the<Unregistered>()
                    throw Exception("UnknownDomainObjectException not thrown")
                } catch(ex: UnknownDomainObjectException) {}
    
                try {
                    the(Unregistered::class)
                    throw Exception("UnknownDomainObjectException not thrown")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 13:25:10 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/utils/utils.cc

                                               const StringSet<>& registered) {
      for (auto& attr : src->getAttrs()) {
        StringRef attr_name = attr.getName().strref();
        // Skip the registered or optional attribute.
        if (registered.contains(attr_name) ||
            GetOptionalAttributes().contains(attr_name))
          continue;
    
        // Unregistered attribute.
        if (GetAllowedAttributes().contains(attr_name)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/component/DefaultComponentTypeRegistryTest.groovy

        def "fails getting registration for unregistered component"() {
            when:
            registry.getComponentRegistration(MyComponentType)
    
            then:
            def e = thrown IllegalArgumentException
            e.message == "Not a registered component type: ${MyComponentType.name}."
        }
    
        def "fails getting type registration for unregistered type"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 03 21:06:10 UTC 2014
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelMapIntegrationTest.groovy

            and:
            output.contains "name: things"
            output.contains "display-name: ModelMap<Thing> 'things'"
            output.contains "to-string: ModelMap<Thing> 'things'"
        }
    
        def "cannot add unregistered type to specialized model map"() {
            buildFile << """
            @Managed interface SampleComponent extends ComponentSpec {}
            interface NonRegisteredComponent extends ComponentSpec {}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    		copyHandlers[pluginType] = handler
    	}
    	return copyHandlers
    }
    
    func (rc *reconciler) reconcile() {
    	// Unregisterations are triggered before registrations
    
    	// Ensure plugins that should be unregistered are unregistered.
    	for _, registeredPlugin := range rc.actualStateOfWorld.GetRegisteredPlugins() {
    		unregisterPlugin := false
    		if !rc.desiredStateOfWorld.PluginExists(registeredPlugin.SocketPath) {
    			unregisterPlugin = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListeners.java

     * Allows the registration of {@link WorkInputListener work input listeners}.
     */
    @ServiceScope(Global.class)
    public interface WorkInputListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(WorkInputListener)}.
         */
        void addListener(WorkInputListener listener);
    
        void removeListener(WorkInputListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/materialize_passthrough_op.mlir

    // RUN: tf-opt -allow-unregistered-dialect -tf-materialize-passthrough-op %s  | FileCheck %s
    
    
    // Check that the MlirPassthroughOp is eliminated and replaced by its attached
    // MLIR module.
    
    // CHECK-LABEL: func @main
    func.func @main(%arg0 : tensor<10xf32>, %arg1 : tensor<10xf32>) -> tensor<10x10xf32> {
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<10xf32>, %[[ARG1:.*]]: tensor<10xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 30 10:34:48 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/mark_functions_noinline.mlir

    // RUN: tf-quant-opt %s -mark-functions-noinline='noinline-functions=noinline0' \
    // RUN:     -allow-unregistered-dialect -mlir-disable-threading \
    // RUN:     -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests that the function is marked tf._noinline = true.
    
    // CHECK-LABEL: @noinline0
    // CHECK-SAME: attributes {{{.*tf._noinline = true.*}}}
    func.func @noinline0() -> (tensor<0xf32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 00:02:46 UTC 2023
    - 841 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/strip_tf_attributes.mlir

    // RUN: tf-opt %s -allow-unregistered-dialect --tf-strip-tf-attributes --split-input-file | FileCheck %s
    
    // CHECK-LABEL: strips_attributes
    // CHECK-NOT: tf
    func.func @strips_attributes(%arg0: tensor<32x28x28x1xf32> {tf._user_specified_name = "x"},
                                 %arg1: tensor<3x3x1x5xf32> {tf._user_specified_name = "w1"},
                                 %arg2: tensor<5xf32> {tf._user_specified_name = "b1"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 25 20:04:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/FileChangeListeners.java

     * child scopes of the user home scope.
     */
    @ServiceScope(Scope.UserHome.class)
    public interface FileChangeListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(FileChangeListener)}.
         */
        void addListener(FileChangeListener listener);
    
        void removeListener(FileChangeListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top