Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,749 for getname (0.15 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/inheritance/t01/ProjectInheritanceTest.java

            assertEquals("p0-org", p0.getOrganization().getName());
    
            // ----------------------------------------------------------------------
            // Check p1 value for org name
            // ----------------------------------------------------------------------
    
            MavenProject p1 = getProject(projectFile("maven.t01", "p1"));
    
            assertEquals("p1-org", p1.getOrganization().getName());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

            final PathInfo pi = convertToItem(id);
            if (StringUtil.isEmpty(pi.getName())) {
                throwValidationErrorApi(messages -> messages.addErrorsStorageFileNotFound(GLOBAL));
            }
            return asStream(pi.getName()).contentTypeOctetStream().stream(out -> {
                try {
                    downloadObject(getObjectName(pi.getPath(), pi.getName()), out);
                } catch (final StorageException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValidatingValueCollector.java

                collectionType.getName(), elementType.getName());
    
            T sanitized = sanitizer.sanitize(value);
            if (!elementType.isInstance(sanitized)) {
                throw new IllegalArgumentException(String.format(
                    "Cannot get the value of a property of type %s with element type %s as the source value contains an element of type %s.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

        public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
            if (isSetter(method)) {
                properties.put(getPropertyName(method.getName()), args[0]);
            } else if (isGetter(method)) {
                return properties.get(getPropertyName(method.getName()));
            }
            return null;
        }
    
        /**
         * Check if the given interface can be instantiated by this proxy.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultMutableAttributeContainer.java

            if (realizingAttributes) {
                throw new IllegalStateException("Cannot add new attribute '" + key.getName() + "' while realizing all attributes of the container.");
            }
            for (Attribute<?> attribute : keySet()) {
                String name = key.getName();
                if (attribute.getName().equals(name) && attribute.getType() != key.getType()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 20:29:26 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PCHUtils.java

            File headerFileCopy = new File(generatedSourceDir, sourceFile.getName());
            try {
                FileUtils.copyFile(sourceFile, headerFileCopy);
                FileUtils.writeStringToFile(generatedSource, "#include \"".concat(headerFileCopy.getName()).concat("\""), StandardCharsets.UTF_8);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/DefaultProjectDescriptor.java

            return Objects.equal(this.getParent(), that.getParent())
                && Objects.equal(this.getName(), that.getName());
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(this.getParent(), this.getName());
        }
    
        @Override
        public String toString() {
            return getPath();
        }
    
        public Path path() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ProjectDerivedCapability.java

        }
    
        @Override
        public String getGroup() {
            return notNull("group", project.getGroup());
        }
    
        @Override
        public String getName() {
            String name = notNull("name", project.getName());
            return featureName == null ? name : name + "-" + TextUtil.camelToKebabCase(featureName);
        }
    
        @Override
        public String getVersion() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceLocator.java

            if (factory == null) {
                throw new UnknownServiceException(serviceType, String.format("Could not find meta-data resource 'META-INF/services/%s' for service '%s'.", serviceType.getName(), serviceType.getName()));
            }
            return factory;
        }
    
        /**
         * Locates a factory for a given service. Returns null when no service implementation is available.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/validation/PublicationErrorChecker.java

                            throw new PublishException("Cannot publish module metadata for component '" + component.getName() + "' which would include a variant '" + variant.getName() + "' that contains a '" +
                                Category.CATEGORY_ATTRIBUTE.getName() + "' attribute with a value of '" + Category.VERIFICATION + "'.  This attribute is reserved for test verification output and is not publishable.  " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top