Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for getIntro (0.13 sec)

  1. src/cmd/compile/internal/ssa/xposmap.go

    func (m *xposmap) foreachEntry(f func(j int32, l uint, v int32)) {
    	for j, mm := range m.maps {
    		s := mm.size()
    		for i := 0; i < s; i++ {
    			l, v := mm.getEntry(i)
    			f(j, l, v)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:48:16 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ZipHasher.java

                ZipEntryContext zipEntryContext = new DefaultZipEntryContext(zipEntry, fullName, rootParentName);
                if (isZipFile(zipEntry.getName())) {
                    zipEntryContext.getEntry().withInputStream(inputStream -> {
                        fingerprintZipEntries(fullName, rootParentName, fingerprints, new StreamZipInput(inputStream));
                        return null;
                    });
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ArrayTable.java

            @Override
            protected Entry<K, V> get(final int index) {
              return getEntry(index);
            }
          };
        }
    
        @Override
        Spliterator<Entry<K, V>> entrySpliterator() {
          return CollectSpliterators.indexed(size(), Spliterator.ORDERED, this::getEntry);
        }
    
        // TODO(lowasser): consider an optimized values() implementation
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. 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)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasher.java

                return hashClassBytes(classBytes);
            });
        }
    
        @Override
        public HashCode hash(ZipEntryContext zipEntryContext) throws IOException {
            ZipEntry zipEntry = zipEntryContext.getEntry();
    
            if (isNotClassFile(zipEntry.getName())) {
                return null;
            }
    
            // A failure to read the zip entry content is a failure to read from the zip stream and should
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/FallbackHandlingResourceHasher.java

            return IoSupplier.wrap(() -> delegate.hash(context));
        }
    
        private static Optional<ZipEntryContext> withFallbackSafety(ZipEntryContext zipEntryContext) {
            ZipEntry entry = zipEntryContext.getEntry();
            if (entry.canReopen()) {
                return Optional.of(zipEntryContext);
            } else if (entry.size() > MAX_FALLBACK_CONTENT_SIZE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/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: Mon Feb 26 17:04:44 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. android/guava/src/com/google/common/collect/RangeMap.java

      V get(K key);
    
      /**
       * Returns the range containing this key and its associated value, if such a range is present in
       * the range map, or {@code null} otherwise.
       */
      @CheckForNull
      Entry<Range<K>, V> getEntry(K key);
    
      /**
       * Returns the minimal range {@linkplain Range#encloses(Range) enclosing} the ranges in this
       * {@code RangeMap}.
       *
       * @throws NoSuchElementException if this range map is empty
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Interners.java

          while (true) {
            // trying to read the canonical...
            @SuppressWarnings("rawtypes") // using raw types to avoid a bug in our nullness checker :(
            InternalEntry entry = map.getEntry(sample);
            if (entry != null) {
              Object canonical = entry.getKey();
              if (canonical != null) { // only matters if weak/soft keys are used
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top