Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 218 for fingerprint (0.16 sec)

  1. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

    import org.apache.commons.io.IOUtils
    import org.gradle.api.internal.file.archive.ZipEntry
    import org.gradle.internal.fingerprint.hashing.ConfigurableNormalizer
    import org.gradle.internal.fingerprint.hashing.RegularFileSnapshotContext
    import org.gradle.internal.fingerprint.hashing.ZipEntryContext
    import org.gradle.internal.hash.HashCode
    import org.gradle.internal.hash.Hashing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasher.java

     */
    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.api.internal.file.archive.ZipEntry;
    import org.gradle.internal.fingerprint.hashing.RegularFileSnapshotContext;
    import org.gradle.internal.fingerprint.hashing.ResourceHasher;
    import org.gradle.internal.fingerprint.hashing.ZipEntryContext;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.hash.Hashing;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/FallbackHandlingResourceHasher.java

     */
    
    package org.gradle.api.internal.changedetection.state;
    
    import org.gradle.api.internal.file.archive.ZipEntry;
    import org.gradle.internal.fingerprint.hashing.RegularFileSnapshotContext;
    import org.gradle.internal.fingerprint.hashing.ResourceHasher;
    import org.gradle.internal.fingerprint.hashing.ZipEntryContext;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    import org.gradle.internal.io.IoFunction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/internal/pkgbits/encoder.go

    	// Write elemData.
    	for _, elems := range &pw.elems {
    		for _, elem := range elems {
    			_, err := io.WriteString(out, elem)
    			assert(err == nil)
    		}
    	}
    
    	// Write fingerprint.
    	copy(fingerprint[:], h.Sum(nil))
    	_, err := out0.Write(fingerprint[:])
    	assert(err == nil)
    
    	return
    }
    
    // StringIdx adds a string value to the strings section, if not
    // already present, and returns its index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/DefaultTransformCodec.kt

    import org.gradle.internal.serialize.graph.readNonNull
    import org.gradle.internal.serialize.graph.writeEnum
    import org.gradle.internal.execution.model.InputNormalizer
    import org.gradle.internal.fingerprint.DirectorySensitivity
    import org.gradle.internal.fingerprint.LineEndingSensitivity
    import org.gradle.internal.model.CalculatedValueContainer
    import org.gradle.internal.service.ServiceRegistry
    
    
    class DefaultTransformCodec(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileNormalizer.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint;
    
    public interface FileNormalizer {
        /**
         * Does the normalizer always ignore directories.
         */
        boolean isIgnoringDirectories();
    
        @Override
        String toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 840 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/fingerprint/classpath/impl/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    @NonNullApi
    package org.gradle.internal.fingerprint.classpath.impl;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 05 13:16:37 UTC 2018
    - 719 bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FingerprintingStrategy.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint;
    
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    import org.gradle.internal.snapshot.FileSystemSnapshot;
    
    import java.util.Map;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/sym/library.go

    package sym
    
    import "cmd/internal/goobj"
    
    type Library struct {
    	Objref      string
    	Srcref      string
    	File        string
    	Pkg         string
    	Shlib       string
    	Fingerprint goobj.FingerprintType
    	Autolib     []goobj.ImportedPkg
    	Imports     []*Library
    	Main        bool
    	Units       []*CompilationUnit
    
    	Textp       []LoaderSym // text syms defined in this library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 11 18:32:23 UTC 2020
    - 651 bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/hashing/RegularFileSnapshotContext.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint.hashing;
    
    import org.gradle.internal.snapshot.RegularFileSnapshot;
    
    import java.util.function.Supplier;
    
    public interface RegularFileSnapshotContext {
        Supplier<String[]> getRelativePathSegments();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 900 bytes
    - Viewed (0)
Back to top