Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for checkout (0.2 sec)

  1. 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.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  2. 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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  3. 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 Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 17:15:52 GMT 2024
    - 127.5K 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 Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  5. 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 Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K 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. 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)
  8. cmd/bucket-replication.go

    }
    
    // ResizeWorkers sets replication workers pool to new size.
    // checkOld can be set to an expected value.
    // If the worker count changed
    func (p *ReplicationPool) ResizeWorkers(n, checkOld int) {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    
    	if (checkOld > 0 && len(p.workers) != checkOld) || n == len(p.workers) || n < 1 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  9. 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 Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jun 02 02:45:00 GMT 2014
    - 117K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
Back to top