Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,812 for getNames (0.22 sec)

  1. guava-tests/test/com/google/common/collect/WriteReplaceOverridesTest.java

           */
          info.getName().contains("TypeResolverTest")
              /*
               * And at least one of the classes inside TypeTokenTest ends up with a null value in
               * TypeMappingIntrospector.mappings. That happens only under older JDKs, too, so it may
               * well be a JDK bug.
               */
              || info.getName().contains("TypeTokenTest")
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractResourcePattern.java

        protected Map<String, String> toAttributes(ModuleComponentArtifactMetadata artifact) {
            Map<String, String> attributes = toAttributes(artifact.getId().getComponentIdentifier());
            attributes.putAll(toAttributes(artifact.getName()));
            return attributes;
        }
    
        protected Map<String, String> toAttributes(ModuleIdentifier module, IvyArtifactName ivyArtifactName) {
            Map<String, String> attributes = toAttributes(module);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/java/crossCompilation/groovy/src/test/java/org/gradle/PersonTest.java

        public void canConstructAPersonWithAName() {
            Person person = new Person("Larry");
            assertEquals("Larry", person.getName());
        }
    
        @Test(expected = IllegalArgumentException.class)
        public void cannotConstructAPersonWithEmptyName() {
            Person person = new Person("");
            person.getName();
        }
    
        @Test
        public void testJavaVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 617 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/crossCompilation/kotlin/src/test/java/org/gradle/PersonTest.java

        public void canConstructAPersonWithAName() {
            Person person = new Person("Larry");
            assertEquals("Larry", person.getName());
        }
    
        @Test(expected = IllegalArgumentException.class)
        public void cannotConstructAPersonWithEmptyName() {
            Person person = new Person("");
            person.getName();
        }
    
        @Test
        public void testJavaVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 617 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

            );
        }
    
    
        private static Optional<String> getUnsupportedReason(Class<?> type) {
            if (type.getName().startsWith("java.") || type.getName().startsWith("javax.")) {
                return Optional.of("Type is in 'java.*' or 'javax.*' package that are reserved for standard Java API types");
            } else if (type.getName().startsWith("kotlin.")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumer.java

        private static String aggregationKeyFor(InternalProblemId id) {
            return aggregationKeyFor(id.getGroup()) + ";" + id.getName();
        }
    
        private static String aggregationKeyFor(InternalProblemGroup group) {
            return group.getParent() == null ? group.getName() : aggregationKeyFor(group.getParent()) + ";" + group.getName();
        }
    
        private void sendProgress(InternalProblemEventVersion2 problem, String aggregationKey) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/java/org/apache/maven/model/building/FileToRawModelMergerTest.java

         */
        @Test
        void testOverriddenMergeMethods() {
            List<String> methodNames = Stream.of(MavenMerger.class.getDeclaredMethods())
                    .filter(m -> m.getName().startsWith("merge"))
                    .filter(m -> {
                        String baseName = m.getName().substring(5 /* merge */);
                        String entity = baseName.substring(baseName.indexOf('_') + 1);
                        try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/ServiceReferencePropertyAnnotationHandler.java

                        .solution(String.format("Replace the @ServiceReference annotation on '%s' with @Internal and assign a value of type '%s' explicitly", propertyMetadata.getPropertyName(), typeVariables.get(0).getName()))
                );
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaModuleMetadata.java

            this.generatorTask = generatorTask;
        }
    
        @Override
        public DisplayName getDisplayName() {
            return Describables.withTypeAndName("IDEA module", ideaModule.getName());
        }
    
        public String getName() {
            return ideaModule.getName();
        }
    
        @Override
        public File getFile() {
            return ideaModule.getOutputFile();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/utils/utils.cc

      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.
        if (GetAllowedAttributes().contains(attr_name)) {
          dst->setAttr(attr.getName(), attr.getValue());
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top