Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 997 for registerKey (0.17 sec)

  1. tensorflow/compiler/mlir/tfr/utils/utils.cc

    }
    
    LogicalResult CopyAllowedUnregisteredAttrs(Operation* src, CallOp dst,
                                               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.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/DefaultCollectionEventRegisterSpec.groovy

        }
    
        def "actions do nothing when none registered"() {
            expect:
            r.fireObjectAdded("a")
            r.fireObjectRemoved("a")
        }
    
        def "nothing subscribed when no actions registered"() {
            expect:
            !r.isSubscribed(null)
            !r.isSubscribed(CharSequence)
            !r.isSubscribed(String)
        }
    
        def "actions are invoked in order registered"() {
            def action1 = Mock(Action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 16 06:16:46 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/NetbiosAddress.java

     * ---------------------------------------------
     * JMORRIS2        &lt;00&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;00&gt;  GROUP       Registered
     * JMORRIS2        &lt;03&gt;  UNIQUE      Registered
     * JMORRIS2        &lt;20&gt;  UNIQUE      Registered
     * BILLING-NY      &lt;1E&gt;  GROUP       Registered
     * JMORRIS         &lt;03&gt;  UNIQUE      Registered
     * 
     * MAC Address = 00-B0-34-21-FA-3B
     * </pre>
     * 
     * </blockquote>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/transform/TransformOutputs.java

     *
     * <p>
     *     The registered output {@link File}s will appear in the transformed variant in the order they were registered.
     * </p>
     *
     * @since 5.3
     */
    @HasInternalProtocol
    public interface TransformOutputs {
        /**
         * Registers an output directory.
         *
         * <p>
         *     For an <strong>absolute path</strong>, the location is registered as an output directory of the {@link TransformAction}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 05 15:49:03 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/component/DefaultComponentTypeRegistry.java

            ComponentTypeRegistration registration = componentRegistrations.get(componentType);
            if (registration == null) {
                throw new IllegalArgumentException(String.format("Not a registered component type: %s.", componentType.getName()));
            }
            return registration;
        }
    
        private static class DefaultComponentTypeRegistration implements ComponentTypeRegistration {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionContainerTest.groovy

            e.message == "Cannot add extension with name 'foo', as there is an extension already registered with that name."
    
            when:
            container.foo = 'other'
    
            then:
            IllegalArgumentException e2 = thrown()
            e2.message == "There's an extension registered with name 'foo'. You should not reassign it via a property setter."
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/plugins/ExtraPropertiesExtension.java

         * </pre>
         *
         * @param name The name of the property to check for
         * @return {@code true} if a property has been registered with this name, otherwise {@code false}.
         */
        boolean has(String name);
    
        /**
         * Returns the value for the registered property with the given name.
         *
         * When using an extra properties extension from Groovy, you can also get properties via Groovy's property syntax.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:35:02 UTC 2017
    - 6.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

            when:
            buildFile << """
                notifier.notify {
                    println "failure is null: \${it.failure == null}"
                }
                // user logic registered _after_ listener registered
                gradle.projectsEvaluated {
                    println "projects evaluated"
                }
            """
    
            run()
    
            then:
            output.contains("projects evaluated")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. src/encoding/gob/example_interface_test.go

    	// 10
    	// 15
    }
    
    // interfaceEncode encodes the interface value into the encoder.
    func interfaceEncode(enc *gob.Encoder, p Pythagoras) {
    	// The encode will fail unless the concrete type has been
    	// registered. We registered it in the calling function.
    
    	// Pass pointer to interface so Encode sees (and hence sends) a value of
    	// interface type. If we passed p directly it would see the concrete type instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultPolymorphicNamedEntityInstantiatorTest.groovy

        class Base {
            String value
        }
    
        class TestType extends Base {}
    
        class AnotherTestType extends Base {}
    
        def "trying to create an entity for which there is no factory registered results in an exception"() {
            given:
            instantiator.registerFactory(TestType, {})
    
            when:
            instantiator.create("foo", Integer)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top