Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 285 for goexits (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/fingerprint/impl/AbsolutePathFileCollectionFingerprinterTest.groovy

            TestFile dir = tmpDir.createDir('dir')
            TestFile dir2 = dir.createDir('dir2')
            TestFile file2 = dir2.createFile('file2')
            TestFile noExist = tmpDir.file('file3')
    
            when:
            def fingerprint = fingerprinter.fingerprint(files(file, dir, noExist))
    
            then:
            fingerprint.fingerprints.keySet().collect { new File(it) } == [file, dir, dir2, file2]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 20 16:00:23 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  2. releasenotes/notes/51377.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - 51377
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 201 bytes
    - Viewed (0)
  3. src/internal/abi/symtab.go

    	// The traceback routine stop at such a function and consider that a
    	// successful, complete traversal of the stack.
    	// Examples of TopFrame functions include goexit, which appears
    	// at the top of a user goroutine stack, and mstart, which appears
    	// at the top of a system goroutine stack.
    	FuncFlagTopFrame FuncFlag = 1 << iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 14:25:22 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/runtime/asm_ppc64x.s

    	MOVD	24(R1), R2
    	BL	runtime·goexit1(SB)	// does not return
    	// traceback from goexit1 must hit code range of goexit
    	MOVD	R0, R0	// NOP
    
    // prepGoExitFrame saves the current TOC pointer (i.e. the TOC pointer for the
    // module containing runtime) to the frame that goexit will execute in when
    // the goroutine exits. It's implemented in assembly mainly because that's the
    // easiest way to get access to R2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  5. pkg/test/framework/test.go

    	//                         })
    	//                     // Exits before T2a and T2b are run.
    	//                 })
    	//         })
    	// }
    	//
    	// In the example above, non-parallel parents T1 and T2 contain parallel children T1a, T1b, T2a, T2b.
    	//
    	// Since both T1 and T2 are non-parallel, they are run synchronously: T1 followed by T2. After T1 exits,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/runtime/pprof/proto.go

    	// the stack and we have return PCs anyway.
    	frames := runtime.CallersFrames([]uintptr{addr})
    	frame, more := frames.Next()
    	if frame.Function == "runtime.goexit" {
    		// Short-circuit if we see runtime.goexit so the loop
    		// below doesn't allocate a useless empty location.
    		return nil, 0
    	}
    
    	symbolizeResult := lookupTried
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  7. pkg/test/failer.go

    	e.Fatal("fail now called")
    }
    
    func (e *errorWrapper) Fatal(args ...any) {
    	e.mu.Lock()
    	defer e.mu.Unlock()
    	if e.failed == nil {
    		e.failed = errors.New(fmt.Sprint(args...))
    	}
    	runtime.Goexit()
    }
    
    func (e *errorWrapper) Fatalf(format string, args ...any) {
    	e.Fatal(fmt.Sprintf(format, args...))
    }
    
    func (e *errorWrapper) Helper() {
    }
    
    func (e *errorWrapper) Skip(args ...any) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. pkg/util/interrupt/interrupt.go

    type Handler struct {
    	notify []func()
    	final  func(os.Signal)
    	once   sync.Once
    }
    
    // New creates a new handler that guarantees all notify functions are run after the critical
    // section exits (or is interrupted by the OS), then invokes the final handler. If no final
    // handler is specified, the default final is `os.Exit(1)`. A handler can only be used for
    // one critical section.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. pkg/wasm/leak_test.go

    package wasm
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 789 bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/leak_test.go

    package envoyfilter
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 796 bytes
    - Viewed (0)
Back to top