Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for nyaris (0.13 sec)

  1. hack/OWNERS

      - pohly # for logging and linting
      - pwittrock
      - SataQiu
      - smarterclayton
      - soltysh # for sig-cli related stuff
      - spiffxp
      - sttts
      - thockin
      - wojtek-t
    emeritus_approvers:
      - eparis
      - fejta
      - ixdy
      - jbeda
      - lavalamp
      - zmerlynn
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 16:43:38 UTC 2023
    - 777 bytes
    - Viewed (0)
  2. cluster/OWNERS

      - dims
      - justaugustus
      - liggitt
      - wojtek-t
    approvers:
      - aojea
      - bentheelder
      - cheftako
      - dims
      - liggitt
      - wojtek-t
    emeritus_approvers:
      - mikedanese
      - spiffxp
      - eparis
      - roberthbailey # 2019-03-08
      - jbeda
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:52:15 UTC 2024
    - 419 bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/syscall_aix_ppc64_gc.go

    type syscallFunc uintptr
    
    var libc_getsystemcfg syscallFunc
    
    type errno = syscall.Errno
    
    // Implemented in runtime/syscall_aix.go.
    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno)
    func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err errno)
    
    func callgetsystemcfg(label int) (r1 uintptr, e1 errno) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 988 bytes
    - Viewed (0)
  4. src/database/sql/convert.go

    		case cci != nil:
    			checker = cc.CheckNamedValue
    		}
    
    	nextCheck:
    		err = checker(nv)
    		switch err {
    		case nil:
    			n++
    			continue
    		case driver.ErrRemoveArgument:
    			nvargs = nvargs[:len(nvargs)-1]
    			continue
    		case driver.ErrSkip:
    			if nextCC {
    				nextCC = false
    				checker = cc.CheckNamedValue
    			} else {
    				checker = defaultCheckNamedValue
    			}
    			goto nextCheck
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. okhttp-testing-support/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("ru.vyarus.animalsniffer")
    }
    
    dependencies {
      api(libs.squareup.okio)
      api(projects.okhttp)
      api(projects.okhttpTls)
      api(libs.assertk)
      api(libs.bouncycastle.bcprov)
      implementation(libs.bouncycastle.bcpkix)
      implementation(libs.bouncycastle.bctls)
      api(libs.conscrypt.openjdk)
      api(libs.openjsse)
    
      api(variantOf(libs.amazonCorretto) {
        classifier("linux-x86_64")
      })
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 06 05:31:00 UTC 2024
    - 750 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/cmd/config.go

    			groups, err := mapLegacyKindsToGroups(kinds)
    			if err != nil {
    				return err
    			}
    			return runConfigPrintActionDefaults(out, groups, configBytesProc)
    		},
    		Args: cobra.NoArgs,
    	}
    	if action == "init" {
    		cmd.Flags().StringSliceVar(&kinds, "component-configs", kinds,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top