Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 6,372 for callB (0.32 sec)

  1. src/runtime/sys_darwin_amd64.s

    	MOVQ	0(DI), DI	// arg 1 thread
    	CALL	libc_pthread_kill(SB)
    	RET
    
    TEXT runtime·osinit_hack_trampoline(SB),NOSPLIT,$0
    	MOVQ	$0, DI	// arg 1 val
    	CALL	libc_notify_is_valid_token(SB)
    	CALL	libc_xpc_date_create_from_current(SB)
    	RET
    
    // syscall calls a function in libc on behalf of the syscall package.
    // syscall takes a pointer to a struct like:
    // struct {
    //	fn    uintptr
    //	a1    uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/flags.go

    	flag.IntVar(&callsPerWorkload, "istio.test.echo.callsPerWorkload", callsPerWorkload,
    		"Specifies the number of calls that will be made for each target workload. "+
    			"Only applies if the call count is zero (default) and a target was specified for the call")
    }
    
    // DefaultCallRetryOptions returns the default call retry options as specified in command-line flags.
    func DefaultCallRetryOptions() []retry.Option {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 17:44:00 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. src/runtime/cgo_mmap.go

    	if _cgo_munmap != nil {
    		systemstack(func() { callCgoMunmap(addr, n) })
    		return
    	}
    	sysMunmap(addr, n)
    }
    
    // sysMmap calls the mmap system call. It is implemented in assembly.
    func sysMmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int)
    
    // callCgoMmap calls the mmap function in the runtime/cgo package
    // using the GCC calling convention. It is implemented in assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/visit.go

    package ir
    
    // DoChildren calls do(x) on each of n's non-nil child nodes x.
    // If any call returns true, DoChildren stops and returns true.
    // Otherwise, DoChildren returns false.
    //
    // Note that DoChildren(n, do) only calls do(x) for n's immediate children.
    // If x's children should be processed, then do(x) must call DoChildren(x, do).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprogcgo/needmdeadlock.go

    	return NULL;
    }
    
    // We don't need many calls, as the deadlock is only likely
    // to occur the first couple of times that needm is called.
    // After that there will likely be an extra M available.
    #define CALLS 10
    
    static void* needmCallbackThread(void* p) {
    	int i;
    
    	for (i = 0; i < SIGNALERS; i++) {
    		sched_yield(); // Help the signal threads get started.
    	}
    	for (i = 0; i < CALLS; i++) {
    		GoNeedM();
    	}
    	return NULL;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/runtime/mmap.go

    //go:build !aix && !darwin && !js && !((linux && (amd64 || arm64 || loong64)) || (freebsd && amd64)) && !openbsd && !plan9 && !solaris && !windows
    
    package runtime
    
    import "unsafe"
    
    // 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 844 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer_test.go

    				})
    			}())
    
    			for i, invocation := range tc.calls {
    				decision, reason, err := frontend.Authorize(context.TODO(), invocation.attributes)
    				if decision != invocation.expected.decision {
    					t.Errorf("(call %d of %d) expected decision %v, got %v", i+1, len(tc.calls), invocation.expected.decision, decision)
    				}
    				if reason != invocation.expected.reason {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/runtime/asan_amd64.s

    	JMP	asancall<>(SB)
    
    // Switches SP to g0 stack and calls (AX). Arguments already set.
    TEXT	asancall<>(SB), NOSPLIT, $0-0
    	get_tls(R12)
    	MOVQ	g(R12), R14
    	MOVQ	SP, R12		// callee-saved, preserved across the CALL
    	CMPQ	R14, $0
    	JE	call	// no g; still on a system stack
    
    	MOVQ	g_m(R14), R13
    	// Switch to g0 stack.
    	MOVQ	m_g0(R13), R10
    	CMPQ	R10, R14
    	JE	call	// already on g0
    
    	MOVQ	(g_sched+gobuf_sp)(R10), SP
    call:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 02:20:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/actor/Actor.java

        /**
         * Creates a proxy which delivers method calls to the target object.
         *
         * @param type the type for the proxy.
         * @return The proxy.
         */
        <T> T getProxy(Class<T> type);
    
        /**
         * Stops accepting new method calls, and blocks until all method calls have been executed by the target object.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       *
       * This can be invoked more than 1 time for a single [Call]. For example, if the response
       * to the [Call.request] is a redirect to a different address.
       */
      open fun connectionAcquired(
        call: Call,
        connection: Connection,
      ) {
      }
    
      /**
       * Invoked after a connection has been released for the `call`.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top