Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ManifestEntry (0.11 sec)

  1. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/CacheManifest.java

            return identity;
        }
    
        public Map<String, List<ManifestEntry>> getPropertyManifests() {
            return propertyManifests;
        }
    
        public static class ManifestEntry {
            private final FileType type;
            private final String relativePath;
            private final HashCode contentHash;
            private final long length;
    
            public ManifestEntry(FileType type, String relativePath, HashCode contentHash, long length) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

         *
         * @param builder the builder for the transformed output
         * @param manifestEntry the entry to process
         * @throws IOException if reading or writing entry fails
         */
        protected void processManifest(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry manifestEntry) throws IOException {
            processResource(builder, manifestEntry);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

            }
        }
    
        @Override
        protected void processManifest(ClasspathBuilder.EntryBuilder builder, ClasspathEntryVisitor.Entry manifestEntry) throws IOException {
            try {
                Manifest parsedManifest = JarUtil.readManifest(manifestEntry.getContent());
                if (!JarUtil.isMultiReleaseJarManifest(parsedManifest)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top