Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,141 for Size (0.08 sec)

  1. src/crypto/tls/auth.go

    	{PKCS1WithSHA256, 19 + crypto.SHA256.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA384, 19 + crypto.SHA384.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA512, 19 + crypto.SHA512.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA1, 15 + crypto.SHA1.Size() + 11, VersionTLS12},
    }
    
    // signatureSchemesForCertificate returns the list of supported SignatureSchemes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512.go

    }
    
    const (
    	// Size is the size, in bytes, of a SHA-512 checksum.
    	Size = 64
    
    	// Size224 is the size, in bytes, of a SHA-512/224 checksum.
    	Size224 = 28
    
    	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
    	Size256 = 32
    
    	// Size384 is the size, in bytes, of a SHA-384 checksum.
    	Size384 = 48
    
    	// BlockSize is the block size, in bytes, of the SHA-512/224,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerializationTest.groovy

            }
    
            when:
            def json = gson.toJson([problem])
            def deserialized = ValidationProblemSerialization.parseMessageList(json)
    
            then:
            deserialized.size() == 1
            deserialized[0].definition.id.name == "id"
            deserialized[0].definition.id.displayName == "label"
            deserialized[0].definition.id.group.name == "validation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 08:30:15 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

            thrown(BuildException)
            listener.problems.size() == 2
            verifyAll(listener.problems[0]) {
                definition.id.displayName == "The RepositoryHandler.jcenter() method has been deprecated."
                definition.id.group.displayName == "Deprecation"
                definition.id.group.name == "deprecation"
                definition.severity == Severity.WARNING
                locations.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. cmd/streaming-signature-v4.go

    		// is `10000`.
    		switch {
    		case b >= '0' && b <= '9':
    			size = size<<4 | int(b-'0')
    		case b >= 'a' && b <= 'f':
    			size = size<<4 | int(b-('a'-10))
    		case b >= 'A' && b <= 'F':
    			size = size<<4 | int(b-('A'-10))
    		default:
    			cr.err = errMalformedEncoding
    			return n, cr.err
    		}
    		if size > maxChunkSize {
    			cr.err = errChunkTooBig
    			return n, cr.err
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/xdsgen.go

    		log.Infof("%s: %s%s for node:%s resources:%d size:%v%s%s", v3.GetShortType(w.TypeUrl), ptype, req.PushReason(), con.proxy.ID, len(res),
    			util.ByteCount(ResourceSize(res)), info, debug)
    	}
    
    	return nil
    }
    
    func ResourceSize(r model.Resources) int {
    	// Approximate size by looking at the Any marshaled size. This avoids high cost
    	// proto.Size, at the expense of slightly under counting.
    	size := 0
    	for _, r := range r {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationPublicationsTest.groovy

            prop.add(file1)
    
            then:
            prop.get().size() == 1
            publications.getArtifacts().toSet()*.getName() == ["file1"]
    
            when:
            def file2 = new DefaultFileSystemLocation(new File("file2"))
            prop.add(file2)
    
            then:
            prop.get().size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. src/runtime/checkptr.go

    // checkptrStraddles reports whether the first size-bytes of memory
    // addressed by ptr is known to straddle more than one Go allocation.
    func checkptrStraddles(ptr unsafe.Pointer, size uintptr) bool {
    	if size <= 1 {
    		return false
    	}
    
    	// Check that add(ptr, size-1) won't overflow. This avoids the risk
    	// of producing an illegal pointer value (assuming ptr is legal).
    	if uintptr(ptr) >= -(size - 1) {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMavenModuleResolveMetadataTest.groovy

            def defaultArtifacts = metadata.getConfiguration("default").artifacts
    
            then:
            runtimeArtifacts.size() == compileArtifacts.size()
            defaultArtifacts.size() == runtimeArtifacts.size()
        }
    
        def "recognises pom packaging"() {
            when:
            def metadata = mavenMetadataFactory.create(id, [])
            metadata.packaging = packaging
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. docs/site-replication/run-ssec-object-replication.sh

    rep_obj3_etag=$(echo "${stat_out3_rep}" | jq '.etag')
    rep_obj3_size=$(echo "${stat_out3_rep}" | jq '.size')
    rep_obj3_md5=$(echo "${stat_out3_rep}" | jq '.metadata."X-Amz-Server-Side-Encryption-Customer-Key-Md5"')
    
    # Check the etag and size of replicated SSEC objects
    if [ "${rep_obj1_etag}" != "${src_obj1_etag}" ]; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top