Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,372 for callB (0.07 sec)

  1. src/runtime/os_openbsd_syscall2.go

    func thrkill(tid int32, sig int)
    
    // read calls the read system call.
    // It returns a non-negative number of bytes written or a negative errno value.
    func read(fd int32, p unsafe.Pointer, n int32) int32
    
    func closefd(fd int32) int32
    
    func exit(code int32)
    func usleep(usec uint32)
    
    //go:nosplit
    func usleep_no_g(usec uint32) {
    	usleep(usec)
    }
    
    // write1 calls the write system call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. pkg/volume/flexvolume/attacher.go

    		return err
    	}
    	if alreadyMounted {
    		return nil
    	}
    
    	call := a.plugin.NewDriverCall(mountDeviceCmd)
    	call.Append(deviceMountPath)
    	call.Append(devicePath)
    	call.AppendSpec(spec, a.plugin.host, nil)
    
    	_, err = call.Run()
    	if isCmdNotSupportedErr(err) {
    		// Devicepath is empty if the plugin does not support attach calls. Ignore mountDevice calls if the
    		// plugin does not implement attach interface.
    		if devicePath != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 03 23:29:42 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. src/runtime/sys_openbsd_ppc64.s

    	MOVD	0(R3), R3		// arg 1 - fd (uintptr)
    	CALL	libc_write(SB)
    	CMP	R3, $-1
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R3), R3		// errno
    	NEG	R3, R3			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·pipe2_trampoline(SB),NOSPLIT,$32
    	MOVW	8(R3), R4		// arg 2 - flags
    	MOVD	0(R3), R3		// arg 1 - filedes
    	CALL	libc_pipe2(SB)
    	CMP	R3, $-1
    	BNE	noerr
    	CALL	libc_errno(SB)
    	MOVW	(R3), R3		// errno
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. src/runtime/debugcall.go

    			// Not at a safe point.
    			ret = debugCallUnsafePoint
    		}
    	})
    	return ret
    }
    
    // debugCallWrap starts a new goroutine to run a debug call and blocks
    // the calling goroutine. On the goroutine, it prepares to recover
    // panics from the debug call, and then calls the call dispatching
    // function at PC dispatch.
    //
    // This must be deeply nosplit because there are untyped values on the
    // stack from debugCallV2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 20:50:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/PeekingIterator.java

       *
       * <p>The objects returned by consecutive calls to {@link #peek()} then {@link #next()} are
       * guaranteed to be equal to each other.
       */
      @CanIgnoreReturnValue
      @Override
      @ParametricNullness
      E next();
    
      /**
       * {@inheritDoc}
       *
       * <p>Implementations may or may not support removal when a call to {@link #peek()} has occurred
       * since the most recent call to {@link #next()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 24 17:47:51 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

        }
        return result
      }
    
      /**
       * Remove this call from the connection's list of allocations. Returns a socket that the caller
       * should close.
       */
      internal fun releaseConnectionNoEvents(): Socket? {
        val connection = this.connection!!
        connection.lock.assertHeld()
    
        val calls = connection.calls
        val index = calls.indexOfFirst { it.get() == this@RealCall }
        check(index != -1)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    		return nil // T(x) is a conversion, not a call
    	}
    	// A Func is required to match instantiations.
    	if _, ok := obj.(*types.Func); isInstance && !ok {
    		return nil // Was not a Func.
    	}
    	return obj
    }
    
    // StaticCallee returns the target (function or method) of a static function
    // call, if any. It returns nil for calls to builtins.
    //
    // Note: for calls of instantiated functions and methods, StaticCallee returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

    import org.jetbrains.kotlin.resolve.calls.CallTransformer
    import org.jetbrains.kotlin.resolve.calls.components.isVararg
    import org.jetbrains.kotlin.resolve.calls.context.BasicCallResolutionContext
    import org.jetbrains.kotlin.resolve.calls.context.CheckArgumentTypesMode
    import org.jetbrains.kotlin.resolve.calls.context.ContextDependency
    import org.jetbrains.kotlin.resolve.calls.inference.model.TypeVariableTypeConstructor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/pgo/devirtualize/devirt.go

    		if i%10 == 0 {
    			m = m2
    		}
    
    		// N.B. Profiles only distinguish calls on a per-line level,
    		// making the two calls ambiguous. However because the
    		// interfaces and implementations are mutually exclusive,
    		// devirtualization can still select the correct callee for
    		// each.
    		//
    		// If they were not mutually exclusive (for example, two Add
    		// calls), then we could not definitively select the correct
    		// callee.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 13 18:17:57 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. src/runtime/cgocall.go

    // license that can be found in the LICENSE file.
    
    // Cgo call and callback support.
    //
    // To call into the C function f from Go, the cgo-generated code calls
    // runtime.cgocall(_cgo_Cfunc_f, frame), where _cgo_Cfunc_f is a
    // gcc-compiled function written by cgo.
    //
    // runtime.cgocall (below) calls entersyscall so as not to block
    // other goroutines or the garbage collector, and then calls
    // runtime.asmcgocall(_cgo_Cfunc_f, frame).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top