Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 717 for routine (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/routine.go

    	return t
    }
    
    // WithRoutine returns an http.Handler that executes preparation of long running requests (i.e. watches)
    // in a separate Goroutine and then serves the long running request in the main Goroutine. Doing so allows
    // freeing stack memory used in preparation Goroutine for better memory efficiency.
    func WithRoutine(handler http.Handler, longRunning request.LongRunningRequestCheck) http.Handler {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. cmd/leak-detect_test.go

    		// ignore the testing go routine.
    		// since the tests will be invoking the leaktest it would contain the test go routine.
    		if strings.HasPrefix(stack, "testing.RunTests") {
    			continue
    		}
    		// Ignore the following go routines.
    		// testing and run time go routines should be ignored, only the application generated go routines should be taken into account.
    		if isIgnoredStackFn(stack) {
    			continue
    		}
    		gs = append(gs, g)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. cmd/admin-heal-ops.go

    	h.mutex.Unlock()
    
    	return nil
    }
    
    // healSequenceStart - this is the top-level background heal
    // routine. It launches another go-routine that actually traverses
    // on-disk data, checks and heals according to the selected
    // settings. This go-routine itself, (1) monitors the traversal
    // routine for completion, and (2) listens for external stop
    // signals. When either event happens, it sets the finish status for
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/TrackingDynamicLookupRoutineTest.kt

            }
    
            fun shouldTrackContext(action: DynamicLookupRoutine.() -> Unit) {
                val tracker = mock<DynamicCallContextTracker>()
                val routine = TrackingDynamicLookupRoutine(tracker)
                action(routine)
                verify(tracker, times(1)).enterDynamicCall(receiver)
                verify(tracker, times(1)).leaveDynamicCall(receiver)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/runtime/asm.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    #ifndef GOARCH_amd64
    TEXT ·sigpanic0(SB),NOSPLIT,$0-0
    	JMP	·sigpanic<ABIInternal>(SB)
    #endif
    
    // See map.go comment on the need for this routine.
    TEXT ·mapinitnoop<ABIInternal>(SB),NOSPLIT,$0-0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 21:49:14 UTC 2024
    - 386 bytes
    - Viewed (0)
  6. src/runtime/os_openbsd_syscall2.go

    // mmap calls the mmap system call. It is implemented in assembly.
    // We only pass the lower 32 bits of file offset to the
    // assembly routine; the higher bits (if required), should be provided
    // by the assembly routine as 0.
    // The err result is an OS error code such as ENOMEM.
    func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pilot/pkg/status/resourcelock.go

    	// the function which will be run for each task in queue
    	write func(*config.Config, any)
    	// the function to retrieve the initial status
    	get func(Resource) *config.Config
    	// current worker routine count
    	workerCount uint
    	// maximum worker routine count
    	maxWorkers       uint
    	currentlyWorking sets.Set[lockResource]
    	lock             sync.Mutex
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/dwarfgen/dwinl.go

    		// names are given "middle dot" version numbers as part of the
    		// writing them out to export data (see issue 4326). If DWARF
    		// inlined routine generation is turned on, we want to undo
    		// this versioning, since DWARF variables in question will be
    		// parented by the inlined routine and not the top-level
    		// caller.
    		synthCount := len(m)
    		for _, v := range sl {
    			vp := varPos{
    				DeclName: v.Name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

    
    fun directoryChildrenNamesHash(file: File): HashCode {
        return file.list()?.let { entries ->
            val hasher = Hashing.newHasher()
            // This routine is used to snapshot results of File.list(), File.listFiles() and similar calls.
            // Technically, the relative order or entries is visible to the caller, so it might be considered when computing the hash.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/hooks.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cfile
    
    import "internal/runtime/exithook"
    
    // InitHook is invoked from the main package "init" routine in
    // programs built with "-cover". This function is intended to be
    // called only by the compiler (via runtime/coverage.initHook).
    //
    // If 'istest' is false, it indicates we're building a regular program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top