Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,265 for Calling (0.2 sec)

  1. src/runtime/sys_openbsd_ppc64.s

    	BL	runtimeĀ·load_g(SB)
    
    	BL	runtimeĀ·sigtrampgo<ABIInternal>(SB)
    
    	// TODO(jsing): Restore callee-save registers.
    
    	RET
    
    // These trampolines help convert from Go calling convention to C calling convention.
    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in R3.
    // A single int32 result is returned in R3.
    // (For more results, make an args/results structure.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. okhttp-logging-interceptor/README.md

    HttpLoggingInterceptor logging = new HttpLoggingInterceptor();
    logging.setLevel(Level.BASIC);
    OkHttpClient client = new OkHttpClient.Builder()
      .addInterceptor(logging)
      .build();
    ```
    
    You can change the log level at any time by calling `setLevel()`.
    
    To log to a custom location, pass a `Logger` instance to the constructor.
    ```java
    HttpLoggingInterceptor logging = new HttpLoggingInterceptor(new Logger() {
      @Override public void log(String message) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/syms.go

    // must follow the internal calling convention.
    func LookupRuntimeFunc(name string) *obj.LSym {
    	return LookupRuntimeABI(name, obj.ABIInternal)
    }
    
    // LookupRuntimeVar looks up a variable (or assembly function) name in package
    // runtime. If this is a function, it may have a special calling
    // convention.
    func LookupRuntimeVar(name string) *obj.LSym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pkg/apis/flowcontrol/fuzzer/fuzzer.go

    var Funcs = func(codecs runtimeserializer.CodecFactory) []interface{} {
    	return []interface{}{
    		func(obj *flowcontrol.LimitedPriorityLevelConfiguration, c fuzz.Continue) {
    			c.FuzzNoCustom(obj) // fuzz self without calling this function again
    
    			// NOTE: setting a zero value here will cause the roundtrip
    			// test (from internal to v1beta2, v1beta1) to fail
    			if obj.NominalConcurrencyShares == 0 {
    				obj.NominalConcurrencyShares = int32(1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/runtime/sys_openbsd.go

    // license that can be found in the LICENSE file.
    
    //go:build openbsd && !mips64
    
    package runtime
    
    import (
    	"internal/abi"
    	"unsafe"
    )
    
    // The *_trampoline functions convert from the Go calling convention to the C calling convention
    // and then call the underlying libc function. These are defined in sys_openbsd_$ARCH.s.
    
    //go:nosplit
    //go:cgo_unsafe_args
    func pthread_attr_init(attr *pthreadattr) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 03:11:18 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/validating/dispatcher.go

    					// Ignore context cancelled from webhook metrics
    					if errors.Is(callErr.Reason, context.Canceled) {
    						klog.Warningf("Context canceled when calling webhook %v", hook.Name)
    					} else {
    						klog.Warningf("Failed calling webhook, failing open %v: %v", hook.Name, callErr)
    						admissionmetrics.Metrics.ObserveWebhookFailOpen(ctx, hook.Name, "validating")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 20:24:12 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd_arm64.s

    	BL	runtimeĀ·sigtrampgo<ABIInternal>(SB)
    
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(8*4)
    	RESTORE_F8_TO_F15(8*14)
    
    	RET
    
    //
    // These trampolines help convert from Go calling convention to C calling convention.
    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in R0.
    // A single int32 result is returned in R0.
    // (For more results, make an args/results structure.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

                true
            }
    
            when:
            controller.load(key, cacheableEntity)
    
            then:
            0 * local.storeLocally(key, _)
        }
    
        def "stops calling through after read error"() {
            local = null
    
            when:
            def controller = getController()
            controller.load(key, cacheableEntity)
            controller.load(key, cacheableEntity)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/affinity_linux.go

    }
    
    // SchedGetaffinity gets the CPU affinity mask of the thread specified by pid.
    // If pid is 0 the calling thread is used.
    func SchedGetaffinity(pid int, set *CPUSet) error {
    	return schedAffinity(SYS_SCHED_GETAFFINITY, pid, set)
    }
    
    // SchedSetaffinity sets the CPU affinity mask of the thread specified by pid.
    // If pid is 0 the calling thread is used.
    func SchedSetaffinity(pid int, set *CPUSet) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 21:26:10 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/CapabilitiesResolution.java

     * When there's a capability conflict, this object will let you select
     * what to do in that situation. The configuration can either be global,
     * for <i>any</i> capability by calling the {@link #all(Action)} method,
     * or it can be specific to a capability by calling one of the {@link #withCapability(Object, Action)},
     * {@link #withCapability(Capability, Action)} or {@link #withCapability(String, String, Action)} methods.
     *
     * @since 5.6
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top