Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for ballast (0.25 sec)

  1. src/internal/trace/testdata/testprog/gc-stress.go

    			makeTree(depth - 1),
    		},
    	}
    }
    
    var trees [16]*node
    var ballast *[16]*[1024]*node
    var sink [][]byte
    
    func main() {
    	for i := range trees {
    		trees[i] = makeTree(6)
    	}
    	ballast = new([16]*[1024]*node)
    	for i := range ballast {
    		ballast[i] = new([1024]*node)
    		for j := range ballast[i] {
    			ballast[i][j] = &node{
    				data: [128]byte{1, 2, 3, 4},
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/sync/pool_test.go

    }
    
    func BenchmarkPoolExpensiveNew(b *testing.B) {
    	// Populate a pool with items that are expensive to construct
    	// to stress pool cleanup and subsequent reconstruction.
    
    	// Create a ballast so the GC has a non-zero heap size and
    	// runs at reasonable times.
    	globalSink = make([]byte, 8<<20)
    	defer func() { globalSink = nil }()
    
    	// Create a pool that's "expensive" to fill.
    	var p Pool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    	}
    	tmpl := &x509.Certificate{
    		SerialNumber: big.NewInt(1),
    		Subject:      pkix.Name{CommonName: "test"},
    		ExtraExtensions: []pkix.Extension{
    			{
    				Id: asn1.ObjectIdentifier{1, 2, 3},
    				// Ballast to inflate the certificate beyond the
    				// regular handshake record size.
    				Value: make([]byte, 65536),
    			},
    		},
    	}
    	cert, err := x509.CreateCertificate(rand.Reader, tmpl, tmpl, k.Public(), k)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/javadoc.css

    td.colFirst, th.colFirst {
        font-size:13px;
    }
    td.colSecond, th.colSecond, td.colLast, th.colConstructorName, th.colDeprecatedItemName, th.colLast {
        font-size:13px;
    }
    .constantsSummary th, .packagesSummary th {
        font-size:13px;
    }
    .providesSummary th.colFirst, .providesSummary th.colLast, .providesSummary td.colFirst,
    .providesSummary td.colLast {
        white-space:normal;
        font-size:13px;
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_arm64.s

    	AESE	K8.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    	AESE	K9.B16, B0.B16
    	TBZ	$4, NR, tailLast
    	AESMC	B0.B16, B0.B16
    	AESE	K10.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    	AESE	B1.B16, B0.B16
    	TBZ	$3, NR, tailLast
    	AESMC	B0.B16, B0.B16
    	AESE	B2.B16, B0.B16
    	AESMC	B0.B16, B0.B16
    	AESE	B3.B16, B0.B16
    
    tailLast:
    	VEOR	T0.B16, B0.B16, B0.B16
    	VAND	T3.B16, B0.B16, B0.B16
    	B	encReduce
    
    done:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/IncrementalJavaProjectBuildIntegrationTest.groovy

            file('build/resources/main').assertHasDescendants('org/gradle/resource2.txt')
        }
    
        @Test
        public void doesNotRebuildJarIfSourceHasNotChanged() {
            // Use own home dir so we don't blast the shared one when we run with -C rebuild
            executer.requireOwnGradleUserHomeDir()
    
            file("src/main/java/BuildClass.java") << 'public class BuildClass { }'
            file("build.gradle") << "apply plugin: 'java'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/a.out.go

    	AAMMAXDBW
    	AAMMAXDBV
    	AAMMINDBW
    	AAMMINDBV
    	AAMMAXDBWU
    	AAMMAXDBVU
    	AAMMINDBWU
    	AAMMINDBVU
    
    	// 2.2.10. Other Miscellaneous Instructions
    	ARDTIMELW
    	ARDTIMEHW
    	ARDTIMED
    
    	ALAST
    
    	// aliases
    	AJMP = obj.AJMP
    	AJAL = obj.ACALL
    	ARET = obj.ARET
    )
    
    func init() {
    	// The asm encoder generally assumes that the lowest 5 bits of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

        TestFile classFile
        TestFile artifactsCache
        Set<TestFile> visitedBaseDirs
    
        MavenHttpRepository repo
    
        @Before
        public void setUp() {
            // Use own home dir so we don't blast the shared one when we run with -C rebuild
            executer.requireOwnGradleUserHomeDir()
    
            String version = GradleVersion.current().version
            projectDir = file("project")
            projectDir.mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. lib/time/zoneinfo.zip

    Etc/GMT-11 Etc/GMT-12 Etc/GMT-13 Etc/GMT-14 Etc/GMT-2 Etc/GMT-3 Etc/GMT-4 Etc/GMT-5 Etc/GMT-6 Etc/GMT-7 Etc/GMT-8 Etc/GMT-9 Etc/GMT0 Etc/Greenwich Etc/UCT Etc/UTC Etc/Universal Etc/Zulu Europe/Amsterdam Europe/Andorra Europe/Astrakhan Europe/Athens Europe/Belfast Europe/Belgrade Europe/Berlin Europe/Bratislava Europe/Brussels Europe/Bucharest Europe/Budapest Europe/Busingen Europe/Chisinau Europe/Copenhagen Europe/Dublin Europe/Gibraltar Europe/Guernsey Europe/Helsinki Europe/Isle_of_Man Europe/Istanbul Europe/Jersey...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
  10. src/internal/coverage/encodecounter/encode.go

    	// Notes:
    	// - this version writes everything little-endian, which means
    	//   a call is needed to encode every value (expensive)
    	// - we may want to move to a model in which we just blast out
    	//   all counters, or possibly mmap the file and do the write
    	//   implicitly.
    	ctrb := make([]byte, 4)
    	wrval := func(val uint32) error {
    		var buf []byte
    		var towr int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top