Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for checkdup (0.27 sec)

  1. docs/site-replication/run-ssec-object-replication-with-compression.sh

    if [ "${src_obj1_md5}" != "${rep_obj1_md5}" ]; then
    	echo "BUG: MD5 checksum of object 'minio2/test-bucket/encrypted' doesn't match with source. Expected: '${src_obj1_md5}', Found: '${rep_obj1_md5}'"
    	exit_1
    fi
    if [ "${src_obj2_md5}" != "${rep_obj2_md5}" ]; then
    	echo "BUG: MD5 checksum of object 'minio2/test-bucket/defpartsize' doesn't match with source. Expected: '${src_obj2_md5}', Found: '${rep_obj2_md5}'"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    // if part > 0, and we have the checksum for the part that will be returned.
    func (o *ObjectInfo) decryptPartsChecksums(h http.Header) {
    	data := o.Checksum
    	if len(data) == 0 {
    		return
    	}
    	if _, encrypted := crypto.IsEncrypted(o.UserDefined); encrypted {
    		decrypted, err := o.metadataDecrypter(h)("object-checksum", data)
    		if err != nil {
    			encLogIf(GlobalContext, err)
    			return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

        }
    
        def "invalidates cache when verification file changes"() {
            server.start()
            def v3 = remoteRepo.module("thing", "lib", "1.3").publish()
            def checkSum = getChecksum(v3, "sha256")
            v3.allowAll()
    
            taskTypeLogsInputFileCollectionContent()
            buildFile << """
                configurations {
                    implementation
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. internal/crypto/metadata.go

    	// MetaDataEncryptionKey is the sealed data encryption key (DEK) received from
    	// the KMS.
    	MetaDataEncryptionKey = "X-Minio-Internal-Server-Side-Encryption-S3-Kms-Sealed-Key"
    
    	// MetaSsecCRC is the encrypted checksum of the SSE-C encrypted object.
    	MetaSsecCRC = "X-Minio-Replication-Ssec-Crc"
    
    	// MetaContext is the KMS context provided by a client when encrypting an
    	// object with SSE-KMS. A client may not send a context in which case the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. cmd/storage-datatypes_gen.go

    		return
    	}
    	if dc.IsNil() {
    		err = dc.ReadNil()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		z.Checksum = nil
    	} else {
    		z.Checksum, err = dc.ReadBytes(z.Checksum)
    		if err != nil {
    			err = msgp.WrapError(err, "Checksum")
    			return
    		}
    	}
    	z.Versioned, err = dc.ReadBool()
    	if err != nil {
    		err = msgp.WrapError(err, "Versioned")
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  6. samples/addons/loki.yaml

      selector:
        matchLabels:
          app.kubernetes.io/name: loki
          app.kubernetes.io/instance: loki
          app.kubernetes.io/component: single-binary
      template:
        metadata:
          annotations:
            checksum/config: 9985254dee51d616c56718f21b010a70c65f6eb0c2f6df4255259cfe23da533f
          labels:
            app.kubernetes.io/name: loki
            app.kubernetes.io/instance: loki
            app.kubernetes.io/component: single-binary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. cmd/storage-datatypes.go

    	// no other caller must set this value other than multi-object delete call.
    	// usage in other calls in undefined please avoid.
    	Idx int `msg:"i"`
    
    	// Combined checksum when object was uploaded.
    	Checksum []byte `msg:"cs,allownil"`
    
    	// Versioned - indicates if this file is versioned or not.
    	Versioned bool `msg:"vs"`
    }
    
    // ShallowCopy - copies minimal information for READ MRF checks.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. samples/addons/kiali.yaml

            app.kubernetes.io/version: "v1.85.0"
            app.kubernetes.io/managed-by: Helm
            app.kubernetes.io/part-of: "kiali"
            sidecar.istio.io/inject: "false"
          annotations:
            checksum/config: fdc10e3d65cc632fb11052879e5f6248587adb147b86b1ae61144bc641ba0062
            prometheus.io/scrape: "true"
            prometheus.io/port: "9090"
            kiali.io/dashboards: go,kiali
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    	}
    
    	fi.DataDir = mustGetUUID()
    	fi.Checksum = opts.WantChecksum.AppendTo(nil, nil)
    	if opts.EncryptFn != nil {
    		fi.Checksum = opts.EncryptFn("object-checksum", fi.Checksum)
    	}
    	if userDefined[ReplicationSsecChecksumHeader] != "" {
    		if v, err := base64.StdEncoding.DecodeString(userDefined[ReplicationSsecChecksumHeader]); err == nil {
    			fi.Checksum = v
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    	if _, ok := opts.ObjectAttributes[xhttp.Checksum]; ok {
    		chkSums := objInfo.decryptChecksums(0, r.Header)
    		// AWS does not appear to append part number on this API call.
    		switch {
    		case chkSums["CRC32"] != "":
    			OA.Checksum = new(objectAttributesChecksum)
    			OA.Checksum.ChecksumCRC32 = strings.Split(chkSums["CRC32"], "-")[0]
    		case chkSums["CRC32C"] != "":
    			OA.Checksum = new(objectAttributesChecksum)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top