Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for format (0.72 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractBaseDirFileResolver.java

            if (!GUtil.isTrue(path)) {
                throw new IllegalArgumentException(String.format(
                    "path may not be null or empty string. path='%s'", path));
            }
    
            File file = convertObjectToFile(path);
    
            if (file == null) {
                throw new IllegalArgumentException(String.format("Cannot convert path to File. path='%s'", path));
            }
    
            if (!file.isAbsolute()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/PathVisitor.java

            if (shouldVisit(details)) {
                if (attrs.isSymbolicLink()) {
                    // when FileVisitOption.FOLLOW_LINKS, we only get here when link couldn't be followed
                    throw new GradleException(String.format("Couldn't follow symbolic link '%s'.", file));
                }
                visitor.visitFile(details);
            }
            return checkStopFlag();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileTreeElement.java

            } catch (Exception e) {
                throw new CopyFileElementException(String.format("Could not copy %s to '%s'.", getDisplayName(), target), e);
            }
        }
    
        private void validateTimeStamps() {
            final long lastModified = getLastModified();
            if(lastModified < 0) {
                throw new GradleException(String.format("Invalid Timestamp %s for '%s'.", lastModified, getDisplayName()));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultConfigurableFilePermissionsTest.java

            for (int u = 0; u <=7; u++) {
                for (int g = 0; g <= 7; g++) {
                    for (int o = 0; o <= 7; o++) {
                        String numericNotation = String.format("%d%d%d", u, g, o);
                        int mode = u * 64 + g * 8 + o;
                        assertEquals(mode, newUnixPermission(numericNotation).toUnixNumeric());
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileResolver.java

            throw new InvalidUserDataException(String.format("Cannot convert URL '%s' to a file.", converted));
        }
    
        protected void validate(File file, PathValidation validation) {
            switch (validation) {
                case NONE:
                    break;
                case EXISTS:
                    if (!file.exists()) {
                        throw new InvalidUserDataException(String.format("File '%s' does not exist.", file));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/IdentityFileResolver.java

            File file = convertObjectToFile(path);
    
            if (file == null) {
                throw new IllegalArgumentException(String.format(
                    "Cannot convert path to File. path='%s'", path));
            }
    
            if (!file.isAbsolute()) {
                throw new UnsupportedOperationException(String.format("Cannot convert relative path %s to an absolute file.", path));
            }
            return file;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                    if (!file.canRead()) {
                        throw new GradleException(String.format("Could not list contents of directory '%s' as it is not readable.", file));
                    }
                    // else, might be a link which points to nothing, or has been removed while we're visiting, or ...
                    throw new GradleException(String.format("Could not list contents of '%s'.", file));
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/InvalidActionClosureException.java

            List<Object> classNames = CollectionUtils.collect(Cast.<Class<?>[]>uncheckedNonnullCast(closure.getParameterTypes()), Class::getName);
            return String.format(
                    "The closure '%s' is not valid as an action for argument '%s'. It should accept no parameters, or one compatible with type '%s'. It accepts (%s).",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/UnionFileTree.java

                visitor.accept(sourceTree);
            }
        }
    
        public void addToUnion(FileCollection source) {
            if (!(source instanceof FileTree)) {
                throw new UnsupportedOperationException(String.format("Can only add FileTree instances to %s.", getDisplayName()));
            }
    
            sourceTrees.add(Cast.cast(FileTreeInternal.class, source));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java

            String destDir = "";
            if (args.length > 3) {
                destDir = args[3];
            }
    
            System.out.format("=> stylesheet %s%n", stylesheet);
            System.out.format("=> source %s%n", source);
            System.out.format("=> dest %s%n", dest);
            System.out.format("=> destDir %s%n", destDir);
    
            TransformerFactory factory = TransformerFactory.newInstance();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top