Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for checkdup (0.13 sec)

  1. 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)
  2. 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)
  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}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 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))},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	    Deprecated string        // deprecation message, if any (with -u)
    //	    Error      *ModuleError  // error loading module
    //	    Sum        string        // checksum for path, version (as in go.sum)
    //	    GoModSum   string        // checksum for go.mod (as in go.sum)
    //	    Origin     any           // provenance of module
    //	    Reuse      bool          // reuse of old module info is safe
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    			meta[validSSEReplicationHeaders[k]] = v
    		} else {
    			meta[k] = v
    		}
    	}
    
    	if len(objInfo.Checksum) > 0 {
    		// Add encrypted CRC to metadata for SSE-C objects.
    		if isSSEC {
    			meta[ReplicationSsecChecksumHeader] = base64.StdEncoding.EncodeToString(objInfo.Checksum)
    		} else {
    			for k, v := range getCRCMeta(objInfo, 0, nil) {
    				meta[k] = v
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>relativePath</name>
              <version>4.0.0+</version>
              <description>
                The relative path of the parent {@code pom.xml} file within the checkout.
                If not specified, it defaults to {@code ../pom.xml}.
                Maven looks for the parent POM first in this location on
                the filesystem, then the local repository, and lastly in the remote repo.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go

    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 16128 bytes (15.75 KiB). Checksum: 8122d83e461996f.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 110.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/tables13.0.0.go

    	}
    	i = caseIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // caseTrie. Total size: 12538 bytes (12.24 KiB). Checksum: af4dfa7d60c71d4c.
    type caseTrie struct{}
    
    func newCaseTrie(i int) *caseTrie {
    	return &caseTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 100.7K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go

    	}
    	i = bidiIndex[uint32(i)<<6+uint32(s[2])]
    	if c0 < 0xF8 { // 4-byte UTF-8
    		return t.lookupValue(uint32(i), s[3])
    	}
    	return 0
    }
    
    // bidiTrie. Total size: 16512 bytes (16.12 KiB). Checksum: 2a9cf1317f2ffaa.
    type bidiTrie struct{}
    
    func newBidiTrie(i int) *bidiTrie {
    	return &bidiTrie{}
    }
    
    // lookupValue determines the type of block n and looks up the value for b.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 116.6K bytes
    - Viewed (0)
Back to top