Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 383 for flive (0.07 sec)

  1. test/fixedbugs/issue19078.go

    	for i := 0; i < 1000000; i++ {
    		_ = identity(u)         // installs u at return slot
    		_ = liveReturnSlot(nil) // incorrectly marks return slot as live
    	}
    }
    
    //go:noinline
    func liveReturnSlot(x *int) *int {
    	defer func() {}() // causes return slot to be marked live
    	sink = &x         // causes x to be moved to the heap, triggering allocation
    	return x
    }
    
    //go:noinline
    func identity(x uintptr) uintptr {
    	return x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 19:39:15 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/structuredmerge.go

    	}
    	liveObjVersioned, err := f.toVersioned(liveObj)
    	if err != nil {
    		return nil, nil, fmt.Errorf("failed to convert live object (%v) to proper version: %v", objectGVKNN(liveObj), err)
    	}
    	newObjTyped, err := f.typeConverter.ObjectToTyped(newObjVersioned, typed.AllowDuplicates)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:55:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue42944.go

    // errorcheck -0 -live
    
    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 42944: address of callee args area should only be short-lived
    // and never across a call.
    
    package p
    
    type T [10]int // trigger DUFFCOPY when passing by value, so it uses the address
    
    func F() {
    	var x T
    	var i int
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 21:34:39 UTC 2020
    - 513 bytes
    - Viewed (0)
  4. docs/features/interceptors.md

    User-Agent: OkHttp Example
    Host: www.publicobject.com
    Connection: Keep-Alive
    Accept-Encoding: gzip
    
    INFO: Received response for http://www.publicobject.com/helloworld.txt in 115.6ms
    Server: nginx/1.4.6 (Ubuntu)
    Content-Type: text/html
    Content-Length: 193
    Connection: keep-alive
    Location: https://publicobject.com/helloworld.txt
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  5. 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)
  6. doc/next/6-stdlib/99-minor/net/62254.md

    The new type [KeepAliveConfig] permits fine-tuning the keep-alive
    options for TCP connections, via a new [TCPConn.SetKeepAliveConfig]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 205 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/crypto/tls/cache_test.go

    				if e.(*cacheEntry).refs.Load() == count {
    					return
    				}
    			}
    		}
    	}
    
    	// Keep certA alive until at least now, so that we can
    	// purposefully nil it and force the finalizer to be
    	// called.
    	runtime.KeepAlive(certA)
    	certA = nil
    	runtime.GC()
    
    	timeoutRefCheck(t, string(p.Bytes), 1)
    
    	// Keep certB alive until at least now, so that we can
    	// purposefully nil it and force the finalizer to be
    	// called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 19:46:27 UTC 2022
    - 2.6K bytes
    - Viewed (0)
Back to top