Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for elementName (0.16 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

            scanner.skip(WHITESPACE_WITH_EOL);
            scanner.mark();
            scanner.find(END_ELEMENT_NAME);
            String elementName = scanner.region().toLowerCase();
            if (isEnd) {
                visitor.onEndHtmlElement(elementName);
            } else {
                visitor.onStartHtmlElement(elementName);
            }
    
            // attributes
            scanner.skip(WHITESPACE_WITH_EOL);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 7.1K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/WtpComponent.java

        }
    
        private void removeConfigurableDataFromXml() {
            Node wbModuleNode = getWbModuleNode(getXml());
            for (String elementName : Arrays.asList("property", "wb-resource", "dependent-module")) {
                for (Node elementNode : XmlPersistableConfigurationObject.getChildren(wbModuleNode, elementName)) {
                    wbModuleNode.remove(elementNode);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyModuleDescriptorSpec.java

            if (elementName == null) {
                throw new InvalidUserDataException("Cannot add an extra info element with null element name");
            }
            if (namespace == null) {
                throw new InvalidUserDataException("Cannot add an extra info element with null namespace");
            }
            extraInfo.add(namespace, elementName, value);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/ScriptBlockBuilder.java

         */
        BuildScriptBuilder.Expression containerElement(@Nullable String comment, String container, String elementName, @Nullable String elementType, Action<? super ScriptBlockBuilder> blockContentsBuilder);
    
        /**
         * Returns a property expression that can be used as a method argument or property assignment value
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 03:37:40 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/MethodOptionElement.java

    public class MethodOptionElement {
    
        private static String assertValidOptionName(Option option, String elementName, Class<?> declaredClass) {
            if (option.option().length() == 0) {
                throw new OptionValidationException(String.format("No option name set on '%s' in class '%s'.", elementName, declaredClass.getName()));
            }
            return option.option();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 11:28:20 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorSpec.java

         */
        IvyExtraInfoSpec getExtraInfo();
    
        /**
         * Adds a new extra info element to the publication
         */
        void extraInfo(String namespace, String elementName, String value);
    
        /**
         * Creates, configures and adds a license to this publication.
         *
         * @since 4.8
         */
        void license(Action<? super IvyModuleDescriptorLicense> action);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/permutation_test.cc

      EXPECT_THAT(permutation_result, ElementsAre(8));
    }
    
    TEST(PermutationTest, PermuteFourElements) {
      const SmallVector<int> arr = {0, 3, 1, 2};
      // Permutation inverse of {0, 3, 1, 2}.
      const SmallVector<int64_t> permutation = {0, 2, 3, 1};
    
      const SmallVector<int> permutation_result = Permute<int>(arr, permutation);
      EXPECT_THAT(permutation_result, ElementsAre(0, 1, 2, 3));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 00:14:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top