Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for noArgs (0.13 sec)

  1. src/cmd/compile/internal/types2/builtins.go

    		nargs = len(argList)
    	}
    
    	// check argument count
    	{
    		msg := ""
    		if nargs < bin.nargs {
    			msg = "not enough"
    		} else if !bin.variadic && nargs > bin.nargs {
    			msg = "too many"
    		}
    		if msg != "" {
    			check.errorf(argErrPos(call), WrongArgCount, invalidOp+"%s arguments for %v (expected %d, found %d)", msg, call, bin.nargs, nargs)
    			return
    		}
    	}
    
    	switch id {
    	case _Append:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/runtime/syscall_solaris.go

    // package.
    
    //go:nosplit
    //go:linkname syscall_sysvicall6
    //go:cgo_unsafe_args
    func syscall_sysvicall6(fn, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2, err uintptr) {
    	call := libcall{
    		fn:   fn,
    		n:    nargs,
    		args: uintptr(unsafe.Pointer(&a1)),
    	}
    	entersyscallblock()
    	asmcgocall(unsafe.Pointer(&asmsysvicall6x), unsafe.Pointer(&call))
    	exitsyscall()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  3. src/syscall/dll_windows.go

    // Deprecated: Use [SyscallN] instead.
    func Syscall(trap, nargs, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    
    // Deprecated: Use [SyscallN] instead.
    func Syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)
    
    // Deprecated: Use [SyscallN] instead.
    func Syscall9(trap, nargs, a1, a2, a3, a4, a5, a6, a7, a8, a9 uintptr) (r1, r2 uintptr, err Errno)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/reflect/AbstractInvocationHandler.java

     * </pre>
     *
     * @author Ben Yu
     * @since 12.0
     */
    @ElementTypesAreNonnullByDefault
    public abstract class AbstractInvocationHandler implements InvocationHandler {
    
      private static final Object[] NO_ARGS = {};
    
      /**
       * {@inheritDoc}
       *
       * <ul>
       *   <li>{@code proxy.hashCode()} delegates to {@link AbstractInvocationHandler#hashCode}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/ioctl_aix.go

    import (
    	"syscall"
    	"unsafe"
    )
    
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.a/shr_64.o"
    //go:linkname libc_ioctl libc_ioctl
    var libc_ioctl uintptr
    
    // Implemented in syscall/syscall_aix.go.
    func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    func Ioctl(fd int, cmd int, args unsafe.Pointer) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 16 16:58:24 UTC 2021
    - 679 bytes
    - Viewed (0)
  6. Jenkinsfile

                                      checkout([$class: 'GitSCM',
                                              branches: [[name: ITS_BRANCH]],
                                              extensions: [[$class: 'CloneOption', depth: 1, noTags: true, shallow: true]],
                                              userRemoteConfigs: [[url: 'https://github.com/apache/maven-integration-testing.git']]])
                                    } catch (Throwable e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/call.go

    	// --------------+------------------+----------------+
    	// standard func | nargs == npars   | invalid        |
    	// --------------+------------------+----------------+
    	// variadic func | nargs >= npars-1 | nargs == npars |
    	// --------------+------------------+----------------+
    
    	nargs := len(args)
    	npars := sig.params.Len()
    	ddd := hasDots(call)
    
    	// set up parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. Jenkinsfile.s390x

                              checkout([$class: 'GitSCM',
                                      branches: [[name: ITS_BRANCH]],
                                      extensions: [[$class: 'CloneOption', depth: 1, noTags: true, shallow: true]],
                                      userRemoteConfigs: [[url: 'https://github.com/apache/maven-integration-testing.git']]])
                            } catch (Throwable e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/go/types/call.go

    	// --------------+------------------+----------------+
    	// standard func | nargs == npars   | invalid        |
    	// --------------+------------------+----------------+
    	// variadic func | nargs >= npars-1 | nargs == npars |
    	// --------------+------------------+----------------+
    
    	nargs := len(args)
    	npars := sig.params.Len()
    	ddd := hasDots(call)
    
    	// set up parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. pkg/controller/certificates/approver/sarapprove_test.go

    	testRecognizer(t, goodCases, isSelfNodeClientCert, true)
    
    	badCases := []func(b *csrBuilder){
    		func(b *csrBuilder) {
    			b.cn = "mike"
    		},
    		func(b *csrBuilder) {
    			b.orgs = nil
    		},
    		func(b *csrBuilder) {
    			b.orgs = []string{"system:master"}
    		},
    		func(b *csrBuilder) {
    			b.usages = append(b.usages, capi.UsageServerAuth)
    		},
    		func(b *csrBuilder) {
    			b.signerName = "example.com/not-correct"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 21:12:04 UTC 2022
    - 7.7K bytes
    - Viewed (0)
Back to top