Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for getIntro (0.14 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/DefaultZipEntryContext.java

            this.entry = entry;
            this.fullName = fullName;
            this.rootParentName = rootParentName;
        }
    
        @Override
        public ZipEntry getEntry() {
            return entry;
        }
    
        @Override
        public String getFullName() {
            return fullName;
        }
    
        @Override
        public String getRootParentName() {
            return rootParentName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. pkg/wasm/cache.go

    		ce.referencingURLs.Insert(key.downloadURL)
    	}
    	c.modules[key.moduleKey] = &ce
    	wasmCacheEntries.Record(float64(len(c.modules)))
    	return &ce, nil
    }
    
    // getEntry finds a cached module, and returns the found cache entry and its checksum.
    func (c *LocalFileCache) getEntry(key cacheKey, ignoreResourceVersion bool) (*cacheEntry, string) {
    	cacheHit := false
    
    	c.mux.Lock()
    	defer func() {
    		c.mux.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/AbstractZipEntry.java

        private final java.util.zip.ZipEntry entry;
    
        public AbstractZipEntry(java.util.zip.ZipEntry entry) {
            this.entry = entry;
        }
    
        protected java.util.zip.ZipEntry getEntry() {
            return entry;
        }
    
        @Override
        public boolean isDirectory() {
            return entry.isDirectory();
        }
    
        @Override
        public String getName() {
            return entry.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/DescendingImmutableSortedMultiset.java

      @Override
      public int size() {
        return forward.size();
      }
    
      @Override
      public ImmutableSortedSet<E> elementSet() {
        return forward.elementSet().descendingSet();
      }
    
      @Override
      Entry<E> getEntry(int index) {
        return forward.entrySet().asList().reverse().get(index);
      }
    
      @Override
      public ImmutableSortedMultiset<E> descendingMultiset() {
        return forward;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/DescendingImmutableSortedMultiset.java

      @Override
      public int size() {
        return forward.size();
      }
    
      @Override
      public ImmutableSortedSet<E> elementSet() {
        return forward.elementSet().descendingSet();
      }
    
      @Override
      Entry<E> getEntry(int index) {
        return forward.entrySet().asList().reverse().get(index);
      }
    
      @Override
      public ImmutableSortedMultiset<E> descendingMultiset() {
        return forward;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/TreeRangeMap.java

          return range.upperBound;
        }
      }
    
      @Override
      @CheckForNull
      public V get(K key) {
        Entry<Range<K>, V> entry = getEntry(key);
        return (entry == null) ? null : entry.getValue();
      }
    
      @Override
      @CheckForNull
      public Entry<Range<K>, V> getEntry(K key) {
        Entry<Cut<K>, RangeMapEntry<K, V>> mapEntry =
            entriesByLowerBound.floorEntry(Cut.belowValue(key));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDetector.java

                }
            }
    
            private List<String> getProcessorClassNames(ZipFile zipFile) throws IOException {
                ZipArchiveEntry processorDeclaration = zipFile.getEntry(PROCESSOR_DECLARATION);
                if (processorDeclaration == null) {
                    return Collections.emptyList();
                }
                return readLines(zipFile, processorDeclaration);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/JdkBackedImmutableMultiset.java

      @Override
      public ImmutableSet<E> elementSet() {
        ImmutableSet<E> result = elementSet;
        return (result == null) ? elementSet = new ElementSet<>(entries, this) : result;
      }
    
      @Override
      Entry<E> getEntry(int index) {
        return entries.get(index);
      }
    
      @Override
      boolean isPartialView() {
        return false;
      }
    
      @Override
      public int size() {
        return Ints.saturatedCast(size);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptorBuilder.java

            ExtensionDescriptor extensionDescriptor = null;
    
            if (extensionJar.isFile()) {
                try (JarFile pluginJar = new JarFile(extensionJar, false)) {
                    ZipEntry pluginDescriptorEntry = pluginJar.getEntry(getExtensionDescriptorLocation());
    
                    if (pluginDescriptorEntry != null) {
                        try (InputStream is = pluginJar.getInputStream(pluginDescriptorEntry)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/impl/FileZipInput.java

                } finally {
                    inputStream.close();
                }
            }
    
            private InputStream getInputStream() {
                try {
                    return file.getInputStream(getEntry());
                } catch (IOException e) {
                    throw new FileException(e);
                }
            }
    
            @Override
            public boolean canReopen() {
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top