Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,305 for Element (0.12 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/HierarchicalElement.java

    import javax.annotation.Nullable;
    
    /**
     * Represents an element which belongs to some hierarchy.
     *
     * @since 1.0-milestone-5
     */
    public interface HierarchicalElement extends Element {
    
        /**
         * Returns the parent of this element, or {@code null} if there is no parent.
         *
         * @return The parent of this element, or {@code null} if there is no parent.
         * @since 1.0-milestone-5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

    /**
     * Represents an element in a model. Elements are arranged in a hierarchy.
     */
    @Incubating
    public interface ModelElement extends Named {
        /**
         * Returns the name of this element. Each element has a name associated with it, that uniquely identifies the element amongst its siblings.
         * Some element have their name generated or automatically assigned, and for these elements the name may not be human consumable.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingList.java

      @Override
      public int indexOf(@CheckForNull Object element) {
        return delegate().indexOf(element);
      }
    
      @Override
      public int lastIndexOf(@CheckForNull Object element) {
        return delegate().lastIndexOf(element);
      }
    
      @Override
      public ListIterator<E> listIterator() {
        return delegate().listIterator();
      }
    
      @Override
      public ListIterator<E> listIterator(int index) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableSet.java

      // This reference is used both by the custom field serializer, and by the
      // GWT compiler to infer the elements of the lists that needs to be
      // serialized.
      //
      // Although this reference is non-final, it doesn't change after set creation.
      E element;
    
      SingletonImmutableSet(E element) {
        this.element = checkNotNull(element);
      }
    
      @Override
      public int size() {
        return 1;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedSet.java

        public IsolatedSet(ImmutableSet<Isolatable<?>> elements) {
            super(elements);
        }
    
        @Override
        public ValueSnapshot asSnapshot() {
            ImmutableSet.Builder<ValueSnapshot> builder = ImmutableSet.builderWithExpectedSize(elements.size());
            for (Isolatable<?> element : elements) {
                builder.add(element.asSnapshot());
            }
            return new SetValueSnapshot(builder.build());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyExtraInfoSpec.java

    /**
     * Represents a modifiable form of IvyExtraInfo so that "extra" info elements
     * can be configured on an Ivy publication.
     */
    public interface IvyExtraInfoSpec extends IvyExtraInfo {
    
        /**
         * Puts the specified extra element into the list of extra info elements.
         *
         * @param namespace The namespace of the element to add
         * @param name The name of the element to add
         * @param value The value of the element to add
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         */
        @Input
        boolean isEnabled();
    
        /**
         * Sets element for the rule.
         *
         * @param element Element
         */
        void setElement(String element);
    
        /**
         * Gets the element for the rule as defined by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ScopedRuleTest.groovy

            @Mutate
            void connectElementToInput(MutableValue element, Integer input) {
                element.value = input
            }
        }
    
        def "by-type subject bindings are scoped to the scope of an inner rule"() {
            given:
            registry.registerInstance("element", new MutableValue())
                .registerInstance("input", 10)
                .registerInstance("values", "foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/collection_ops_util.h

                     bool keep_slice_shape = false);
    
    // Creates ops that copy the buffer and update an element at the given index.
    // Requires `index` to have tensor<1xi32> type.
    Value SetElement(Value index, Value buffer, Value element, OpBuilder builder,
                     Location loc);
    
    // Creates the buffer for the data structure with given element shape, type and
    // maximum size.
    LogicalResult CreateInitBufferValue(ArrayRef<int64_t> element_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/LinkedHashMultiset.java

     * according to when the first occurrence of the element was added. When the multiset contains
     * multiple instances of an element, those instances are consecutive in the iteration order. If all
     * occurrences of an element are removed, after which that element is added to the multiset, the
     * element will appear at the end of the iteration.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top