Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 4,408 for Malley (0.1 sec)

  1. pkg/config/analysis/README.md

    ## Writing Analyzers
    
    ### 1. Create the code
    
    Analyzers need to implement the Analyzer interface ( in the `galley/pkg/config/analysis` package). They should be created under the analyzers subdirectory, and given their own appropriate subpackage.
    
    An annotated example:
    
    ```go
    package virtualservice
    
    // <imports here>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. pkg/util/async/bounded_frequency_runner.go

    	default:
    	}
    }
    
    // RetryAfter ensures that the function will run again after no later than interval. This
    // can be called from inside a run of the BoundedFrequencyRunner's function, or
    // asynchronously.
    func (bfr *BoundedFrequencyRunner) RetryAfter(interval time.Duration) {
    	// This could be called either with or without bfr.mu held, so we can't grab that
    	// lock, and therefore we can't update the timer directly.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  3. src/runtime/cgo/asm_riscv64.s

    	JMP	crosscall2(SB)
    
    // Called by C code generated by cmd/cgo.
    // func crosscall2(fn, a unsafe.Pointer, n int32, ctxt uintptr)
    // Saves C callee-saved registers and calls cgocallback with three arguments.
    // fn is the PC of a func(a unsafe.Pointer) function.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	/*
    	 * Push arguments for fn (X10, X11, X13), along with all callee-save
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/runtime/tls_arm.s

    // SIGSEGV, and our runtime.sigtramp don't even know we
    // are in external code, and will continue to use R10,
    // this might as well result in another SIGSEGV.
    // Note: both functions will clobber R0 and R11 and
    // can be called from 5c ABI code.
    
    // On android, runtime.tls_g is a normal variable.
    // TLS offset is computed in x_cgo_inittls.
    #ifdef GOOS_android
    #define TLSG_IS_VARIABLE
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /**< Message handler called at the start of a suite. pSuite will not be null. */
    
    typedef void (*CU_TestStartMessageHandler)(const CU_pTest pTest, const CU_pSuite pSuite);
    /**< Message handler called at the start of a test.
     *  The parameters are the test and suite being run.  The test run is 
     *  considered in progress when the message handler is called.  
     *  Neither pTest nor pSuite may be null.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. src/runtime/asm_arm64.s

    	// call target function
    	MOVD	0(R26), R0
    	CALL	(R0)
    
    	// should never return
    	CALL	runtime·abort(SB)
    	UNDEF
    
    /*
     * support for morestack
     */
    
    // Called during function prolog when more stack is needed.
    // Caller has already loaded:
    // R3 prolog's LR (R30)
    //
    // The traceback routines see morestack on a g0 as being
    // the top of a stack (for example, morestack calling newstack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    //
    // Closing the file may or may not release the lock promptly. Callers should
    // ensure that Unlock is always called if RLock succeeds.
    func RLock(f File) error {
    	return lock(f, readLock)
    }
    
    // Unlock removes an advisory lock placed on f by this process.
    //
    // The caller must not attempt to unlock a file that is not locked.
    func Unlock(f File) error {
    	return unlock(f)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/rt0_linux_riscv64.s

    TEXT _rt0_riscv64_linux(SB),NOSPLIT|NOFRAME,$0
    	MOV	0(X2), A0	// argc
    	ADD	$8, X2, A1	// argv
    	JMP	main(SB)
    
    // When building with -buildmode=c-shared, this symbol is called when the shared
    // library is loaded.
    TEXT _rt0_riscv64_linux_lib(SB),NOSPLIT,$224
    	// Preserve callee-save registers, along with X1 (LR).
    	MOV	X1, (8*3)(X2)
    	MOV	X8, (8*4)(X2)
    	MOV	X9, (8*5)(X2)
    	MOV	X18, (8*6)(X2)
    	MOV	X19, (8*7)(X2)
    	MOV	X20, (8*8)(X2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 03 09:23:34 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/problems/DefaultProblemLocationAnalyzer.java

                // This is because we cannot tell the difference between:
                // - a validation exception thrown in user code that is called from other user code, where the caller should be blamed
                // - an unexpected exception thrown in user code that is called from other user code, where the called code should be blamed
                // So, for now, just blame the first user code that can be identified. This gives the user some clues for where to start
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/runtime/sigqueue.go

    // the signal handler (it cannot block, allocate memory, or use locks)
    // so the handler communicates with a processing goroutine
    // via struct sig, below.
    //
    // sigsend is called by the signal handler to queue a new signal.
    // signal_recv is called by the Go program to receive a newly queued signal.
    //
    // Synchronization between sigsend and signal_recv is based on the sig.state
    // variable. It can be in three states:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top