Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 234 for Element3 (0.18 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/ArtifactCollectionCodec.kt

                        is FixedFileArtifactSpec -> artifactSetConverter.asResolvedArtifactSet(element.id, element.variantAttributes, element.capabilities, element.variantDisplayName, element.file)
                        is ResolvedArtifactSet -> element
                        else -> throw IllegalArgumentException("Unexpected element $element in artifact collection")
                    }
                }
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionPropertyInternal.java

         * </p>
         *
         * @param elements The elements to add
         */
        @Incubating
        @SuppressWarnings("unchecked")
        // TODO Use @SafeVarargs and make method final
        void appendAll(T... elements);
    
        /**
         * Adds zero or more elements to the property value.
         *
         * <p>The given iterable will be queried when the value of this property is queried.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/CodeAnalyzer.kt

    }
    
    
    class CodeAnalyzerImpl(
        private val analysisStatementFilter: AnalysisStatementFilter,
        private val statementResolver: StatementResolver
    ) : CodeAnalyzer {
        override fun analyzeStatementsInProgramOrder(
            context: AnalysisContext,
            elements: List<DataStatement>
        ) {
            for (element in elements) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        private void wrapH2InSectionTopic(Document document) {
            Element heading = document.body().select("h2").first();
    
            List<Element> inSection = new ArrayList<>();
            inSection.add(heading);
    
            Element next = heading.nextElementSibling();
            while (true) {
                if (next == null || next.tagName().equals("h2")) {
                    Element section = heading.before("<section class='topic'/>").previousElementSibling();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         * @param provider The provider of an element
         */
        void add(Provider<? extends T> provider);
    
        /**
         * Adds zero or more elements to the property value.
         *
         * @param elements The elements to add
         * @since 4.10
         */
        @SuppressWarnings("unchecked")
        void addAll(T... elements);
    
        /**
         * Adds zero or more elements to the property value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/MoreCollectors.java

      /**
       * A collector that converts a stream of zero or one elements to an {@code Optional}.
       *
       * @throws IllegalArgumentException if the stream consists of two or more elements.
       * @throws NullPointerException if any element in the stream is {@code null}.
       * @return {@code Optional.of(onlyElement)} if the stream has exactly one element (must not be
       *     {@code null}) and returns {@code Optional.empty()} if it has none.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java

      @JsMethod(name = "of")
      static <E> ImmutableSet<E> jsOf(E... elements) {
        return copyOf(elements);
      }
    
      @JsMethod
      public static <E> ImmutableSet<E> copyOf(E[] elements) {
        checkNotNull(elements);
        switch (elements.length) {
          case 0:
            return of();
          case 1:
            return of(elements[0]);
          default:
            return create(elements);
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictContainer.java

        private final Map<K, Collection<? extends T>> elements = new HashMap<>();
        private final Multimap<K, K> targetToSource = LinkedHashMultimap.create();
    
        /**
         * Adds new element and returns a conflict instance if given element is conflicted. Element is conflicted when:
         *  - has more than 1 candidate
         *  - is in conflict with an existing element (via replacedBy relationship)
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/declarationErrors.txt

    Diagnostics from elements:
      for PSI element of type KtClass at (6,1-11)
        ABSTRACT_CLASS_MEMBER_NOT_IMPLEMENTED      text ranges: [(62,69)]
          PSI: KtClass at (6,1-11)
      for PSI element of type KtNamedFunction at (4,3-21)
        ABSTRACT_FUNCTION_IN_NON_ABSTRACT_CLASS      text ranges: [(41,49)]
          PSI: KtNamedFunction at (4,3-21)
      for PSI element of type KtTypeReference at (6,10-11)
        FINAL_SUPERTYPE      text ranges: [(71,72)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 788 bytes
    - Viewed (0)
  10. src/internal/trace/order_test.go

    			t.Fatalf("check %q: did not expect to be able to pop more values a second time", name)
    		}
    	}
    	check("one element", []int{4})
    	check("two elements", []int{64, 12})
    	check("six elements", []int{55, 16423, 2352, 644, 12874, 9372})
    	check("one element again", []int{7})
    	check("two elements again", []int{77, 6336})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1K bytes
    - Viewed (0)
Back to top