Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,141 for Size (0.11 sec)

  1. src/crypto/sha256/sha256.go

    	"errors"
    	"hash"
    	"internal/byteorder"
    )
    
    func init() {
    	crypto.RegisterHash(crypto.SHA224, New224)
    	crypto.RegisterHash(crypto.SHA256, New)
    }
    
    // The size of a SHA256 checksum in bytes.
    const Size = 32
    
    // The size of a SHA224 checksum in bytes.
    const Size224 = 28
    
    // The blocksize of SHA256 and SHA224 in bytes.
    const BlockSize = 64
    
    const (
    	chunk     = 64
    	init0     = 0x6A09E667
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/guava-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/guava/ImmutableMapCodec.kt

            writeMap(value)
        }
    
        override suspend fun ReadContext.decode(): ImmutableMap<Any, Any>? {
            val size = readSmallInt()
            val builder = ImmutableMap.builderWithExpectedSize<Any, Any>(size)
            for (i in 0 until size) {
                val key = read()!!
                val value = read()!!
                builder.put(key, value)
            }
            return builder.build()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

                projectConfigured(":")
                modelsCreated(":", 3)
            }
    
            and:
            model.value == 42
    
            and:
            def streamedModels = listener1.models
            streamedModels.size() == 2
            (streamedModels[0] as GradleProject).name == "hello-world"
            (streamedModels[1] as EclipseProject).gradleProject.name == "hello-world"
    
            when:
            withIsolatedProjects()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            IdeaContentRoot root = module.contentRoots[0]
    
            then:
            root.sourceDirectories.size() == 2
            root.sourceDirectories.any { it.directory == file('src/main/java') }
            root.sourceDirectories.any { it.directory == file('src/main/resources') }
    
            root.testDirectories.size() == 2
            root.testDirectories.any { it.directory == file('src/test/java') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. cmd/data-usage-cache.go

    		}
    		root.merge(e)
    	}
    	root.Children = nil
    	return root
    }
    
    // add a size to the histogram.
    func (h *sizeHistogram) add(size int64) {
    	// Fetch the histogram interval corresponding
    	// to the passed object size.
    	for i, interval := range ObjectsHistogramIntervals[:] {
    		if size >= interval.start && size <= interval.end {
    			h[i]++
    			break
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 14:49:50 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  6. .github/workflows/mint/nginx.conf

            listen  [::]:9000;
            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
            proxy_buffering off;
            proxy_request_buffering off;
    
            location / {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:52:29 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. src/crypto/rsa/rsa.go

    // exponent E nor the precise bit size of N are similarly protected.
    type PublicKey struct {
    	N *big.Int // modulus
    	E int      // public exponent
    }
    
    // Any methods implemented on PublicKey might need to also be implemented on
    // PrivateKey, as the latter embeds the former and will expose its methods.
    
    // Size returns the modulus size in bytes. Raw signatures and ciphertexts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. src/syscall/dirent_test.go

    		}
    	}
    }
    
    func TestDirentRepeat(t *testing.T) {
    	const N = 100
    	// Note: the size of the buffer is small enough that the loop
    	// below will need to execute multiple times. See issue #31368.
    	size := N * unsafe.Offsetof(syscall.Dirent{}.Name) / 4
    	if runtime.GOOS == "freebsd" || runtime.GOOS == "netbsd" {
    		if size < 1024 {
    			size = 1024 // DIRBLKSIZ, see issue 31403.
    		}
    	}
    
    	// Make a directory containing N files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    	}
    	return res
    }
    
    // hasSpaceFor returns whether the disks in `di` have space for and object of a given size.
    func hasSpaceFor(di []*DiskInfo, size int64) (bool, error) {
    	// We multiply the size by 2 to account for erasure coding.
    	size *= 2
    	if size < 0 {
    		// If no size, assume diskAssumeUnknownSize.
    		size = diskAssumeUnknownSize
    	}
    
    	var available uint64
    	var total uint64
    	var nDisks int
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf_test.go

    			if secOverlaps(s, sn) {
    				t.Errorf("unexpected: section %d:%q (addr=%x size=%x) overlaps section %d:%q (addr=%x size=%x)", i, s.Name, s.Addr, s.Size, i+1, sn.Name, sn.Addr, sn.Size)
    				foundOverlap = true
    			}
    		}
    	}
    	if foundOverlap {
    		// Print some additional info for human inspection.
    		t.Logf("** section list follows\n")
    		for i := range secs {
    			s := secs[i]
    			fmt.Printf(" | %2d: ad=0x%08x en=0x%08x sz=0x%08x t=%s %q\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top