Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for getIntro (0.12 sec)

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

            return fileSnapshotContext.getSnapshot().getHash();
        }
    
        @Override
        public HashCode hash(ZipEntryContext zipEntryContext) throws IOException {
            return zipEntryContext.getEntry().withInputStream(Hashing::hashStream);
        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
            hasher.putString(getClass().getName());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

                    // single entry in the classpath, populated from itself
                    ArtifactMetadata amd = cleanGraph.getEntry().getMd();
                    cpc.add(amd);
                } else {
                    ClasspathGraphVisitor v = new ClasspathGraphVisitor(cleanGraph, cpc);
                    MetadataGraphVertex entry = cleanGraph.getEntry();
                    // entry point
                    v.visit(entry);
                }
    
                return cpc;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/biasedsparsemap.go

    		return -1
    	}
    	if int(x) < s.first {
    		return -1
    	}
    	if int(x) >= s.cap() {
    		return -1
    	}
    	return s.s.get(ID(int(x) - s.first))
    }
    
    // getEntry returns the i'th key and value stored in s,
    // where 0 <= i < s.size()
    func (s *biasedSparseMap) getEntry(i int) (x uint, v int32) {
    	e := s.s.contents()[i]
    	x = uint(int(e.key) + s.first)
    	v = e.val
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:06 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/ZipEntryContext.java

     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.api.internal.file.archive.ZipEntry;
    
    import java.util.function.Supplier;
    
    public interface ZipEntryContext {
        ZipEntry getEntry();
    
        String getFullName();
    
        String getRootParentName();
    
        Supplier<String[]> getRelativePathSegments();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 932 bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertiesFileAwareClasspathResourceHasher.java

        boolean filter(RegularFileSnapshotContext context) {
            return matchesAnyFilters(context.getRelativePathSegments());
        }
    
        @Override
        boolean filter(ZipEntryContext context) {
            return !context.getEntry().isDirectory() && matchesAnyFilters(context.getRelativePathSegments());
        }
    
        @Override
        public Optional<HashCode> tryHash(RegularFileSnapshotContext snapshotContext) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

            def zipEntry = Mock(ZipEntry)
            def classContent = bytesOf(String.class)
    
            when:
            def hash = resourceHasher.hash(zipEntryContext)
    
            then:
            1 * zipEntryContext.getEntry() >> zipEntry
            2 * zipEntry.getName() >> 'String.class'
            1 * zipEntry.getContent() >> classContent
            1 * apiClassExtractor.extractApiClassFrom(_) >> { args -> throw new Exception("Boom!") }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/RegularImmutableMultiset.java

      public int count(@Nullable Object element) {
        throw new AssertionError();
      }
    
      @Override
      public ImmutableSet<E> elementSet() {
        throw new AssertionError();
      }
    
      @Override
      Entry<E> getEntry(int index) {
        throw new AssertionError();
      }
    
      @Override
      boolean isPartialView() {
        throw new AssertionError();
      }
    
      @Override
      public int size() {
        throw new AssertionError();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java

                }
            }
    
            MetadataGraphNode node = new MetadataGraphNode(md);
            addNode(node);
            return node;
        }
    
        /**
         * getter
         */
        public MetadataGraphNode getEntry() {
            return entry;
        }
    
        /**
         * getter
         */
        public Collection<MetadataGraphNode> getNodes() {
            return nodes;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java

         * @param scope - which classpath to extract
         * @param resolve - whether to resolve artifacts.
         * @return Collection of metadata objects in the linked subgraph of the graph which
         *             contains the graph.getEntry() vertice
         */
        ClasspathContainer transform(MetadataGraph dirtyGraph, ArtifactScopeEnum scope, boolean resolve)
                throws MetadataGraphTransformationException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top