Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for ballast (0.17 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. javadoc-stylesheet.css

        font-weight:bold;
    }
    td.colFirst, th.colFirst {
        border-left:1px solid #9eadc0;
        white-space:nowrap;
    }
    td.colLast, th.colLast {
        border-right:1px solid #9eadc0;
    }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/InstanceBackedModelRegistrationTest.groovy

            def fooRegistration = ModelRegistrations.bridgedInstance(fooReference, fooList).descriptor(descriptor).build()
            registry.register(fooRegistration)
    
            def barList = []
            def factory = Mock(org.gradle.internal.Factory) {
                create() >> barList
            }
            def barRegistration = ModelRegistrations.unmanagedInstance(barReference, factory).descriptor(descriptor).build()
            registry.register(barRegistration)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. docs_src/dataclasses/tutorial003.py

                    },
                    {"name": "Pad Thai"},
                    {
                        "name": "Lonely Night",
                        "description": "The mostests lonliest nightiest of allest",
                    },
                ],
            },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/wasm/a.out.go

    	AI64TruncSatF64S
    	AI64TruncSatF64U
    
    	AMemoryInit
    	ADataDrop
    	AMemoryCopy
    	AMemoryFill
    	ATableInit
    	AElemDrop
    	ATableCopy
    	ATableGrow
    	ATableSize
    	ATableFill
    
    	ALast // Sentinel: End of low-level WebAssembly instructions.
    
    	ARESUMEPOINT
    	// ACALLNORESUME is a call which is not followed by a resume point.
    	// It is allowed inside of WebAssembly blocks, whereas obj.ACALL is not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top