Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for hcrc (0.04 sec)

  1. cmd/xl-storage-meta-inline.go

    		// First version to carry data.
    		return buf
    	}
    	// Skip header
    	_, metaBuf, err = msgp.ReadBytesZC(metaBuf)
    	if err != nil {
    		storageLogIf(GlobalContext, err)
    		return buf
    	}
    	// Skip CRC
    	if maj > 1 || min >= 2 {
    		_, metaBuf, err = msgp.ReadUint32Bytes(metaBuf)
    		storageLogIf(GlobalContext, err)
    	}
    	//   =  input - current pos
    	ends := len(buf) - len(metaBuf)
    	if ends > len(buf) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/image/png/writer_test.go

    				}
    			}
    
    			// Encode the image
    			var b bytes.Buffer
    			if err := Encode(&b, m0); err != nil {
    				t.Error(err)
    				return
    			}
    			const chunkFieldsLength = 12 // 4 bytes for length, name and crc
    			data := b.Bytes()
    			i = len(pngHeader)
    
    			for i < len(data)-chunkFieldsLength {
    				length := binary.BigEndian.Uint32(data[i : i+4])
    				name := string(data[i+4 : i+8])
    
    				switch name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 14 08:14:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  3. internal/hash/reader.go

    }
    
    // ContentCRCType returns the content checksum type.
    func (r *Reader) ContentCRCType() ChecksumType {
    	return r.contentHash.Type
    }
    
    // ContentCRC returns the content crc if set.
    func (r *Reader) ContentCRC() map[string]string {
    	if r.contentHash.Type == ChecksumNone || !r.contentHash.Valid() {
    		return nil
    	}
    	if r.contentHash.Type.Trailing() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 18 17:00:54 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Gt;":                              "\u226b",
    	"&HARDcy;":                          "\u042a",
    	"&Hacek;":                           "\u02c7",
    	"&Hat;":                             "\u005e",
    	"&Hcirc;":                           "\u0124",
    	"&Hfr;":                             "\u210c",
    	"&HilbertSpace;":                    "\u210b",
    	"&Hopf;":                            "\u210d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  5. src/html/entity.go

    		"Gt;":                              '\U0000226B',
    		"HARDcy;":                          '\U0000042A',
    		"Hacek;":                           '\U000002C7',
    		"Hat;":                             '\U0000005E',
    		"Hcirc;":                           '\U00000124',
    		"Hfr;":                             '\U0000210C',
    		"HilbertSpace;":                    '\U0000210B',
    		"Hopf;":                            '\U0000210D',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  6. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    pub    7DC3076FE22D4F88
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQINBFV3l4gBEADMcF99pe592aoACKLIBm/sZMrtXdOmOzGID51iq1bj4xjgqlRO
    xVZXargCeRovcHSdE78BzhixtKSwyUxrfABV8+9ufk3AqTy+bNRwuPZfe/n+hcFC
    TenyPEGGxvFlr6jGNev/ifRurqKO9AS67W0AlojRqtTLlmsm4FfWDestf6HoqrkU
    6EFnEe5tQK4w96NqLoPC0lHgD1Ig9ztM+D48B7JAA7qxs7saEfUjDMy5TnMSltm5
    sLttNje7Xdgb4hA+oZ3/P9tdMIPgO7ejiYy99lpyjoqvyR8bCcsr1cgdGEkeuLWi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		}
    		if err != nil {
    			return err
    		}
    
    		cHeader := http.Header{}
    		cHeader.Add(xhttp.MinIOSourceReplicationRequest, "true")
    		if !isSSEC {
    			crc := getCRCMeta(objInfo, partInfo.Number, nil) // No SSE-C keys here.
    			for k, v := range crc {
    				cHeader.Add(k, v)
    			}
    		}
    		popts := minio.PutObjectPartOptions{
    			SSE:          opts.ServerSideEncryption,
    			CustomHeader: cHeader,
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks.go

    // Name returns label for RuntimeCheck.
    func (ContainerRuntimeCheck) Name() string {
    	return "CRI"
    }
    
    // Check validates the container runtime
    func (crc ContainerRuntimeCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("validating the container runtime")
    	if err := crc.runtime.IsRunning(); err != nil {
    		errorList = append(errorList, err)
    	}
    	return warnings, errorList
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  9. docs/debugging/xl-meta/main.go

    					return nil, err
    				}
    			case 1, 2:
    				v, b, err := msgp.ReadBytesZC(b)
    				if err != nil {
    					return nil, err
    				}
    				if _, nbuf, err := msgp.ReadUint32Bytes(b); err == nil {
    					// Read metadata CRC (added in v2, ignore if not found)
    					b = nbuf
    				}
    
    				_, err = msgp.CopyToJSON(buf, bytes.NewReader(v))
    				if err != nil {
    					return nil, err
    				}
    				data = b
    			case 3:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Hashing.java

       *
       * @since 18.0
       */
      public static HashFunction crc32c() {
        return Crc32cHashFunction.CRC_32_C;
      }
    
      /**
       * Returns a hash function implementing the CRC-32 checksum algorithm (32 hash bits).
       *
       * <p>To get the {@code long} value equivalent to {@link Checksum#getValue()} for a {@code
       * HashCode} produced by this function, use {@link HashCode#padToLong()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top