Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Checksum (0.21 sec)

  1. cmd/object-handlers.go

    	if _, ok := opts.ObjectAttributes[xhttp.Checksum]; ok {
    		chkSums := objInfo.decryptChecksums(0)
    		// 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)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  2. 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
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: The check digit for ${value} is invalid, Luhn Modulo 10 checksum failed. */
        public static final String CONSTRAINTS_LuhnCheck_MESSAGE = "{constraints.LuhnCheck.message}";
    
        /** The key of the message: The check digit for ${value} is invalid, Modulo 10 checksum failed. */
        public static final String CONSTRAINTS_Mod10Check_MESSAGE = "{constraints.Mod10Check.message}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			headers:            map[string]string{"x-amz-checksum-crc32": checksumData(bytesData, crc32.New(crc32.IEEETable))},
    			data:               bytesData,
    			dataLen:            len(bytesData),
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    			wantHeaders:        map[string]string{"x-amz-checksum-crc32": checksumData(bytesData, crc32.New(crc32.IEEETable))},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    static final String UPDATE_POLICY_ALWAYS = always; public static final String UPDATE_POLICY_DAILY = daily; public static final String UPDATE_POLICY_INTERVAL = interval; public static final String CHECKSUM_POLICY_FAIL = fail; public static final String CHECKSUM_POLICY_WARN = warn; public static final String CHECKSUM_POLICY_IGNORE = ignore; private boolean enabled; private String updatePolicy; private String checksumPolicy; public void ArtifactRepositoryPo(); public void ArtifactRepositoryPo(boolean, String,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    static final String UPDATE_POLICY_ALWAYS = always; public static final String UPDATE_POLICY_DAILY = daily; public static final String UPDATE_POLICY_INTERVAL = interval; public static final String CHECKSUM_POLICY_FAIL = fail; public static final String CHECKSUM_POLICY_WARN = warn; public static final String CHECKSUM_POLICY_IGNORE = ignore; private boolean enabled; private String updatePolicy; private String checksumPolicy; public void ArtifactRepositoryPo(); public void ArtifactRepositoryPo(boolean, String,...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    				PubKeyAlgo:    c.PublicKeyAlgorithm.String(),
    				SignatureAlgo: c.SignatureAlgorithm.String(),
    				NotBefore:     c.NotBefore,
    				NotAfter:      c.NotAfter,
    				Checksum:      strconv.FormatUint(check, 16),
    			})
    		}
    	}
    	return tlsInfo
    }
    
    // ServerInfoHandler - GET /minio/admin/v3/info
    // ----------
    // Get server information
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  8. api/go1.3.txt

    pkg debug/pe, type OptionalHeader32 struct, BaseOfCode uint32
    pkg debug/pe, type OptionalHeader32 struct, BaseOfData uint32
    pkg debug/pe, type OptionalHeader32 struct, CheckSum uint32
    pkg debug/pe, type OptionalHeader32 struct, DataDirectory [16]DataDirectory
    pkg debug/pe, type OptionalHeader32 struct, DllCharacteristics uint16
    pkg debug/pe, type OptionalHeader32 struct, FileAlignment uint32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>checksumPolicy</name>
              <version>4.0.0+</version>
              <description>
                What to do when verification of an artifact checksum fails. Valid values are
                {@code ignore},
                {@code fail} (default for Maven 4 and above) or
                {@code warn} (default for Maven 2 and 3).
              </description>
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    configuration should be applied. properties: matchLabels: additionalProperties: type: string description: One or more labels that indicate a specific set of pods/VMs on which a policy should be applied. type: object type: object sha256: description: SHA256 checksum that will be used to verify Wasm module or OCI container. pattern: (^$|^[a-f0-9]{64}$) type: string targetRef: description: Optional. properties: group: description: group is the group of the target resource. type: string kind: description: kind...
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
Back to top