Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,001 for registered_ (0.21 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelRegistration.java

        ModelRuleDescriptor getDescriptor();
    
        ModelPath getPath();
    
        /**
         * Actions that need to be registered when the node is registered.
         */
        Multimap<ModelActionRole, ? extends ModelAction> getActions();
    
        /**
         * Returns whether the registered node is hidden.
         */
        boolean isHidden();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/typeregistration/BaseInstanceFactoryTest.groovy

        }
    
        def "fails when an implementation is registered that doesn't extend the base type"() {
            when:
            instanceFactory.register(ModelType.of(ThingSpec), new SimpleModelRuleDescriptor("thing"))
                .withImplementation(ModelType.of(Object))
            then:
            def ex = thrown IllegalArgumentException
            ex.message == "No factory registered to create an instance of implementation class '$Object.name'."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  3. tensorflow/c/eager/gradients.h

    // gradients.
    //
    // `ZerosLike` is not expected to be called and returns a nullptr. The creation
    // of default zeros grads is handled by the `DefaultGradientFunction` registered
    // for each op.
    // TODO(srbs): We need to define `ZerosLike` here to keep the compiler happy.
    // Figure out a way to avoid this.
    // TODO(srbs): Should ZerosLike check-fail instead of returning nullptr?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 26 10:27:05 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

         * @param registrationPoint the place that the listener was registered - used in the operation description / details
         * @param listener the listener
         */
        <T> T decorate(String registrationPoint, Class<T> cls, T listener);
    
        /**
         * Decorates a listener of unknown type.
         * <p>
         * @param registrationPoint the place that the listener was registered - used in the operation description / details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResource.java

        /**
         * Returns the input properties registered when this resource is used as task input.
         * Not typically used directly.
         *
         * @return the input properties registered when this resource is used as task input
         */
        @Nullable
        @Optional
        @Input
        Object getInputProperties();
    
        /**
         * Returns the input files registered when this resource is used as task input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:43:44 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top