Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for getIntro (0.16 sec)

  1. android/guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java

      }
    
      @Override
      Entry<E> getEntry(int index) {
        return Multisets.immutableEntry(elementSet.asList().get(index), getCount(index));
      }
    
      @Override
      @CheckForNull
      public Entry<E> firstEntry() {
        return isEmpty() ? null : getEntry(0);
      }
    
      @Override
      @CheckForNull
      public Entry<E> lastEntry() {
        return isEmpty() ? null : getEntry(length - 1);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularImmutableSortedMultiset.java

        }
      }
    
      @Override
      @CheckForNull
      public Entry<E> firstEntry() {
        return isEmpty() ? null : getEntry(0);
      }
    
      @Override
      @CheckForNull
      public Entry<E> lastEntry() {
        return isEmpty() ? null : getEntry(length - 1);
      }
    
      @Override
      public int count(@CheckForNull Object element) {
        int index = elementSet.indexOf(element);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreatorTest.groovy

                noRelocationResources.each { resourceName ->
                    assert jar.getEntry(resourceName)
                }
                onlyRelocatedResources.each { resourceName ->
                    assert jar.getEntry("org/gradle/internal/impldep/$resourceName")
                }
                generatedFiles.each { resourceName ->
                    assert jar.getEntry(resourceName)
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/PluginsMetadataGenerator.java

                if (Files.isRegularFile(artifactPath)) {
                    try (JarFile artifactJar = new JarFile(artifactPath.toFile(), false)) {
                        ZipEntry pluginDescriptorEntry = artifactJar.getEntry(PLUGIN_DESCRIPTOR_LOCATION);
    
                        if (pluginDescriptorEntry != null) {
                            try (InputStream is = artifactJar.getInputStream(pluginDescriptorEntry)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

        private Properties loadModuleProperties(String name, File jarFile) {
            try (ZipFile zipFile = new ZipFile(jarFile)) {
                String entryName = getClasspathManifestName(name);
                ZipEntry entry = zipFile.getEntry(entryName);
                if (entry == null) {
                    throw new IllegalStateException("Did not find " + entryName + " in " + jarFile.getAbsolutePath());
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top