Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for setEntries (0.26 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

            this(new XmlTransformer(), fileReferenceFactory);
        }
    
        public Classpath() {
            this(new FileReferenceFactory());
        }
    
        public List<ClasspathEntry> getEntries() {
            return entries;
        }
    
        public void setEntries(List<ClasspathEntry> entries) {
            this.entries = entries;
        }
    
        @Override
        protected String getDefaultResourceName() {
            return "defaultClasspath.xml";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-packaging/src/main/java/org/gradle/caching/internal/packaging/BuildCacheEntryPacker.java

        class PackResult {
            private final long entries;
    
            public PackResult(long entries) {
                this.entries = entries;
            }
    
            public long getEntries() {
                return entries;
            }
        }
    
        UnpackResult unpack(CacheableEntity entity, InputStream input, OriginReader readOrigin) throws IOException;
    
        class UnpackResult {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IsolatedMap.java

        public IsolatedMap(ImmutableList<MapEntrySnapshot<Isolatable<?>>> entries) {
            super(entries);
        }
    
        @Nullable
        @Override
        public Map<Object, Object> create() {
            return new LinkedHashMap<>(getEntries().size());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/MetaInfAwareClasspathResourceHasher.java

            Attributes mainAttributes = manifest.getMainAttributes();
            hashManifestAttributes(mainAttributes, "main", hasher);
            Map<String, Attributes> entries = manifest.getEntries();
            Set<String> names = new TreeSet<>(manifest.getEntries().keySet());
            for (String name : names) {
                hashManifestAttributes(entries.get(name), name, hasher);
            }
            return hasher.hash();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

                AtomicBoolean stopFlag = new AtomicBoolean();
                try (ZipFile zip = ZipFile.builder().setFile(zipFile).get()) {
                    // The iteration order of zip.getEntries() is based on the hash of the zip entry. This isn't much use
                    // to us. So, collect the entries in a map and iterate over them in alphabetical order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractMapSnapshot.java

        public AbstractMapSnapshot(ImmutableList<MapEntrySnapshot<T>> entries) {
            this.entries = entries;
        }
    
        public ImmutableList<MapEntrySnapshot<T>> getEntries() {
            return entries;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString("Map");
            hasher.putInt(entries.size());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractIsolatedMap.java

            }
            return new MapValueSnapshot(builder.build());
        }
    
        @Override
        public T isolate() {
            T map = create();
            for (MapEntrySnapshot<Isolatable<?>> entry : getEntries()) {
                map.put(entry.getKey().isolate(), entry.getValue().isolate());
            }
            return map;
        }
    
        @Nullable
        @Override
        public <S> S coerce(Class<S> type) {
            return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRoot.java

                    try (final JarFile jarFile = new JarFile(possibleJar.getCanonicalPath())) {
                        final Manifest manifest = jarFile.getManifest();
                        if (manifest != null && manifest.getEntries() != null) {
                            final Attributes attributes = manifest.getMainAttributes();
                            if (attributes != null
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/WtpComponentFactory.java

                plusConfigurations, minusConfigurations, false, NullGradleApiSourcesResolver.INSTANCE).visit(visitor);
            return visitor.getEntries();
        }
    
        private class WtpDependenciesVisitor implements IdeDependencyVisitor {
            private final Project project;
            private final EclipseWtpComponent wtp;
            private final String deployPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.txt

        private synthetic final static method $values(): Direction[]
        static method <clinit>(): void
        private method <init>(p0: java.lang.String, p1: int): void
        public static method getEntries(): kotlin.enums.EnumEntries
        public static method valueOf(p0: java.lang.String): Direction
        public static method values(): Direction[]
    }
    
    public final class Generic {
        // source: 'classKinds.kt'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top