Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 291 for live0 (0.03 sec)

  1. src/cmd/link/internal/benchmark/bench.go

    	runtime.ReadMemStats(&m.curMark.endM)
    	if m.gc == GC {
    		runtime.GC()
    		runtime.ReadMemStats(&m.curMark.gcM)
    		if m.shouldPProf() {
    			// Collect a profile of the live heap. Do a
    			// second GC to force sweep completion so we
    			// get a complete snapshot of the live heap at
    			// the end of this phase.
    			runtime.GC()
    			f, err := os.Create(makePProfFilename(m.filebase, m.curMark.name, "memprof"))
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ArtifactViewAttributesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Test that ArtifactView has a "live" view of the underlying configuration's attributes.
     */
    class ArtifactViewAttributesIntegrationTest extends AbstractIntegrationSpec {
        def "artifact view has live view of underlying configuration attributes"() {
            buildFile << """
                def usage = Attribute.of('usage', String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/ScalaCompilationFixture.groovy

                '''
                    /**
                     * A person.
                     * Can live in a house.
                     * Has a name and an age.
                     */
                    class Person(val name: String, val age: Int)'''.stripIndent(),
                '''
                    /**
                     * A person.
                     * Can live in a house.
                     * Has a name, age and a height.
                     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. test/fixedbugs/issue29362b.go

    	badPtr = uintptr(unsafe.Pointer(&b[len(b)-1])) + 1
    }
    
    var throttle = make(chan struct{}, 10)
    
    // There are 2 arg bitmaps for this function, each with 2 bits.
    // In the first, p and q are both live, so that bitmap is 11.
    // In the second, only p is live, so that bitmap is 10.
    // Bitmaps are byte aligned, so if the first bitmap is interpreted as
    // extending across the entire argument area, we incorrectly concatenate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 03 23:37:42 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  5. pkg/controller/certificates/authority/policies.go

    //   - It sets IsCA to false.
    //   - It validates that the signer has not expired.
    //   - It sets NotBefore and NotAfter:
    //     All certificates set NotBefore = Now() - Backdate.
    //     Long-lived certificates set NotAfter = Now() + TTL - Backdate.
    //     Short-lived certificates set NotAfter = Now() + TTL.
    //     All certificates truncate NotAfter to the expiration date of the signer.
    type PermissiveSigningPolicy struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. src/os/example_test.go

    	// Output:
    	// Good morning, Gopher!
    }
    
    func ExampleExpandEnv() {
    	os.Setenv("NAME", "gopher")
    	os.Setenv("BURROW", "/usr/gopher")
    
    	fmt.Println(os.ExpandEnv("$NAME lives in ${BURROW}."))
    
    	// Output:
    	// gopher lives in /usr/gopher.
    }
    
    func ExampleLookupEnv() {
    	show := func(key string) {
    		val, ok := os.LookupEnv(key)
    		if !ok {
    			fmt.Printf("%s not set\n", key)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    	p1.x[i] = j
    	r += p1.x[j]
    	p2.x[i] = j
    	r += p2.x[j]
    	if j != 505 {
    		var xp3 Pointery2
    		xp3.x[i] = j
    		r += xp3.x[j]
    	}
    
    	if i == j*2 {
    		// p2 live on this path
    		p2.x[i] += j
    		r += p2.x[j]
    	} else {
    		// p2 not live on this path
    		var xp4 Pointery2
    		xp4.x[i] = j
    		r += xp4.x[j]
    	}
    
    	return r + G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        PipedOutputStream getStdinPipe();
    
        /**
         * Returns the stdout output currently received from the build. This is live.
         */
        String getStandardOutput();
    
        /**
         * Returns the stderr output currently received from the build. This is live.
         */
        String getErrorOutput();
    
        /**
         * Forcefully kills the build and returns immediately. Does not block until the build has finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. test/abi/uglyfib.go

    //go:registerparams
    //go:noinline
    func f(x int, xm1, xm2, p *int) {
    	var y = [2]int{x - 4, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	g(*xm1, xm2, &x, p)   // xm1 is no longer live.
    	h(*xm2, &x, &y[0], p) // xm2 is no longer live, but was spilled.
    }
    
    //go:registerparams
    //go:noinline
    func g(x int, xm1, xm2, p *int) {
    	var y = [3]int{x - 4, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. test/fixedbugs/bug484.go

    // The liveness code used to say that, in func g, s was live
    // starting at its declaration, because it appears to have its
    // address taken by the closure (different s, but the parser
    // gets slightly confused, a separate bug). The liveness analysis
    // saw s as having its address taken but the register optimizer
    // did not. This mismatch meant that s would be marked live
    // (and therefore initialized) at the call to f, but the register optimizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
Back to top