Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 685 for mcall (0.04 sec)

  1. src/runtime/cgo.go

    // an unexported name). The calls serve two purposes:
    // 1) they are opaque to escape analysis, so the argument is considered to
    // escape to the heap.
    // 2) they keep the argument alive until the call site; the call is emitted after
    // the end of the (presumed) use of the argument by C.
    // cgoUse should not actually be called (see cgoAlwaysFalse).
    func cgoUse(any) { throw("cgoUse should not be called") }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_ppc64x.s

    	BEQ	nosaveg
    
    	CMP	g, R22
    	BEQ	nosaveg
    	MOVD	(g_stack+stack_lo)(R22), R22 // g.m.gsignal.stack.lo
    	MOVD	g, (R22)
    
    	BL	(CTR)	// Call from VDSO
    
    	MOVD	$0, (R22)	// clear g slot, R22 is unchanged by C code
    
    	JMP	finish
    
    nosaveg:
    	BL	(CTR)	// Call from VDSO
    
    finish:
    	MOVD	$0, R0		// Restore R0
    	MOVD	0(R1), R3	// sec
    	MOVD	8(R1), R5	// nsec
    	MOVD	R15, R1		// Restore SP
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  3. src/syscall/mksyscall.pl

    		}
    	}
    	if ($ret[0] eq "_" && $ret[1] eq "_" && $ret[2] eq "_") {
    		$text .= "\t$call\n";
    	} else {
    		if ($errvar eq "" && $ENV{'GOOS'} eq "linux") {
    			# raw syscall without error on Linux, see golang.org/issue/22924
    			$text .= "\t$ret[0], $ret[1] := $call\n";
    		} else {
    			$text .= "\t$ret[0], $ret[1], $ret[2] := $call\n";
    		}
    	}
    	$text .= $body;
    
    	if ($plan9 && $ret[2] eq "e1") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

         *
         * @param callable The callable to call
         * @param <T> Callable's return type
         * @return The value returned by {@link Callable#call()}
         */
        @Nullable
        public static <T> T uncheckedCall(Callable<T> callable) {
            try {
                return callable.call();
            } catch (Exception e) {
                throw throwAsUncheckedException(e);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SmartCastProvider.kt

            val smartCasts = bindingContext[BindingContext.IMPLICIT_RECEIVER_SMARTCAST, expression] ?: return emptyList()
            val call = bindingContext[BindingContext.CALL, expression] ?: return emptyList()
            val resolvedCall = bindingContext[BindingContext.RESOLVED_CALL, call] ?: return emptyList()
            return listOfNotNull(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/linuxcontaineruser.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the UID field is set to the value of the last call.
    func (b *LinuxContainerUserApplyConfiguration) WithUID(value int64) *LinuxContainerUserApplyConfiguration {
    	b.UID = &value
    	return b
    }
    
    // WithGID sets the GID field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            }
        }
    
        private fun handleAsPropertyRead(context: BindingContext, element: KtElement): KaCallInfo? {
            val call = element.getResolvedCall(context) ?: return null
            return call.toPropertyRead(context)?.let { createCallInfo(context, element, it, listOf(call)) }
        }
    
        private fun ResolvedCall<*>.toPropertyRead(context: BindingContext): KaVariableAccessCall? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. src/iter/iter.go

    // It is valid to call next after reaching the end of the sequence
    // or after calling stop. These calls will continue
    // to return the zero V and false.
    //
    // Stop ends the iteration. It must be called when the caller is
    // no longer interested in next values and next has not yet
    // signaled that the sequence is over (with a false boolean return).
    // It is valid to call stop multiple times and when next has
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8.go

    	i    uint32
    	n    uint32
    	c    uint32
    }
    
    // Next returns the next random value, along with a boolean
    // indicating whether one was available.
    // If one is not available, the caller should call Refill
    // and then repeat the call to Next.
    //
    // Next is //go:nosplit to allow its use in the runtime
    // with per-m data without holding the per-m lock.
    //
    //go:nosplit
    func (s *State) Next() (uint64, bool) {
    	i := s.i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	ok(func() { call(v.Field(1).Method(0)) })               // .T1.Y
    	ok(func() { call(v.Field(1).Elem().Method(0)) })        // .T1.Y
    	badCall(func() { call(v.Field(1).Method(1)) })          // .T1.y
    	badMethod(func() { call(v.Field(1).Elem().Method(2)) }) // .T1.y
    
    	ok(func() { call(v.Field(2).Method(0)) })               // .NamedT0.W
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top