Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getFullName (0.16 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

                        events.add(new SimpleConditionEvent(input, true, input.getFullName() + " is abstract"));
                    } else {
                        events.add(new SimpleConditionEvent(input, false, input.getFullName() + " is not abstract"));
                    }
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ZipEntryContext.java

    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.api.internal.file.archive.ZipEntry;
    
    import java.util.function.Supplier;
    
    public interface ZipEntryContext {
        ZipEntry getEntry();
    
        String getFullName();
    
        String getRootParentName();
    
        Supplier<String[]> getRelativePathSegments();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 932 bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/DefaultZipEntryContext.java

            this.fullName = fullName;
            this.rootParentName = rootParentName;
        }
    
        @Override
        public ZipEntry getEntry() {
            return entry;
        }
    
        @Override
        public String getFullName() {
            return fullName;
        }
    
        @Override
        public String getRootParentName() {
            return rootParentName;
        }
    
        @Override
        public Supplier<String[]> getRelativePathSegments() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/FallbackHandlingResourceHasher.java

            } else if (entry.size() > MAX_FALLBACK_CONTENT_SIZE) {
                LOGGER.debug(zipEntryContext.getFullName() + " is too large (" + entry.size() + ") for safe fallback - skipping.");
                return Optional.empty();
            } else {
                return Optional.of(new DefaultZipEntryContext(new CachingZipEntry(entry), zipEntryContext.getFullName(), zipEntryContext.getRootParentName()));
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. testing/internal-architecture-testing/src/main/java/org/gradle/internal/architecture/PackageCycleTest.java

        }
    
        private static boolean isIgnoredClass(JavaClass javaClass) {
            return javaClass.isAnnotation() || IGNORED_CLASSES_FOR_CYCLES.stream().anyMatch(prefix -> javaClass.getFullName().startsWith(prefix));
        }
    
        private static Stream<String> excludePatterns() {
            String patterns = System.getProperty("package.cycle.exclude.patterns");
            return Arrays.stream(patterns.split(","))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasher.java

                    } catch (IOException e) {
                        LOGGER.debug("Could not load fingerprint for " + zipEntryContext.getRootParentName() + "!" + zipEntryContext.getFullName() + ". Falling back to full entry fingerprinting", e);
                        return null;
                    }
                });
        }
    
        private static boolean isManifestFile(final String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ZipHasher.java

            HashCode hash = resourceHasher.hash(zipEntryContext);
            if (hash != null) {
                fingerprints.add(new DefaultFileSystemLocationFingerprint(zipEntryContext.getFullName(), FileType.RegularFile, hash));
            }
        }
    
        private DefaultFileSystemLocationFingerprint newZipMarker(String relativePath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasher.java

                    } catch (Exception e) {
                        LOGGER.debug("Could not load fingerprint for " + zipEntryContext.getRootParentName() + "!" + zipEntryContext.getFullName() + ". Falling back to full entry fingerprinting", e);
                        return null;
                    }
                });
        }
    
        private boolean matchesAnyFilters(Supplier<String[]> relativePathSegments) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top