Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for hashContent (0.12 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

                }
            }
    
            @Override
            void flushOutput() {
                if (shouldForward()) {
                    boolean hasContent = !bufferedLogs.isEmpty();
                    if (!hasForeground() || statusHasChanged()) {
                        if (needHeaderSeparator || hasContent) {
                            listener.onOutput(spacerLine(lastUpdateTime, category));
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AbstractFileCollection.java

         */
        protected static boolean visitAll(FileSystemMirroringFileTree tree) {
            final MutableBoolean hasContent = new MutableBoolean();
            tree.visit(new FileVisitor() {
                @Override
                public void visitDir(FileVisitDetails dirDetails) {
                    dirDetails.getFile();
                    hasContent.set(true);
                }
    
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:50 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/GenericFileSystem.java

            return file;
        }
    
        private boolean probeCaseSensitive(File file, String content) {
            try {
                File upperCased = new File(file.getPath().toUpperCase(Locale.ROOT));
                return !hasContent(upperCased, content);
            } catch (IOException e) {
                // not fully accurate but a sensible fallback
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top