Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for erano (0.14 sec)

  1. src/cmd/cgo/ast.go

    	}
    	if context == ctxAssign2 {
    		context = ctxExpr
    	}
    	if context == ctxEmbedType {
    		error_(sel.Pos(), "cannot embed C type")
    	}
    	goname := sel.Sel.Name
    	if goname == "errno" {
    		error_(sel.Pos(), "cannot refer to errno directly; see documentation")
    		return
    	}
    	if goname == "_CMalloc" {
    		error_(sel.Pos(), "cannot refer to C._CMalloc; use C.malloc")
    		return
    	}
    	if goname == "malloc" {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jun 07 16:54:27 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  2. api/go1.14.txt

    pkg syscall (freebsd-arm64-cgo), const EPROGMISMATCH = 75
    pkg syscall (freebsd-arm64-cgo), const EPROGMISMATCH Errno
    pkg syscall (freebsd-arm64-cgo), const EPROGUNAVAIL = 74
    pkg syscall (freebsd-arm64-cgo), const EPROGUNAVAIL Errno
    pkg syscall (freebsd-arm64-cgo), const EPROTO = 92
    pkg syscall (freebsd-arm64-cgo), const EPROTO Errno
    pkg syscall (freebsd-arm64-cgo), const EPROTONOSUPPORT = 43
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const EPROCLIM Errno
    pkg syscall (netbsd-arm64-cgo), const EPROCUNAVAIL = 76
    pkg syscall (netbsd-arm64-cgo), const EPROCUNAVAIL Errno
    pkg syscall (netbsd-arm64-cgo), const EPROGMISMATCH = 75
    pkg syscall (netbsd-arm64-cgo), const EPROGMISMATCH Errno
    pkg syscall (netbsd-arm64-cgo), const EPROGUNAVAIL = 74
    pkg syscall (netbsd-arm64-cgo), const EPROGUNAVAIL Errno
    pkg syscall (netbsd-arm64-cgo), const EPROTO = 96
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. cmd/xl-storage_test.go

    						if pathErr, ok := err.(*os.PathError); ok {
    							if errno, pok := pathErr.Err.(syscall.Errno); pok {
    								resultErrno = uintptr(errno)
    							}
    						}
    						if pathErr, ok := testCase.expectedErr.(*os.PathError); ok {
    							if errno, pok := pathErr.Err.(syscall.Errno); pok {
    								expectErrno = uintptr(errno)
    							}
    						}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 11 17:45:28 GMT 2024
    - 66.7K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const EPROGMISMATCH = 75 #53466
    pkg syscall (freebsd-riscv64), const EPROGMISMATCH Errno #53466
    pkg syscall (freebsd-riscv64), const EPROGUNAVAIL = 74 #53466
    pkg syscall (freebsd-riscv64), const EPROGUNAVAIL Errno #53466
    pkg syscall (freebsd-riscv64), const EPROTO = 92 #53466
    pkg syscall (freebsd-riscv64), const EPROTO Errno #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    +    {
    +      __set_errno (ENODEV);
    +      return 0;
    +    }
    +
    +  strncpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
    +
       int fd = __opensock ();
     
       if (fd < 0)
         return 0;
     
    -  strncpy (ifr.ifr_name, ifname, sizeof (ifr.ifr_name));
       if (__ioctl (fd, SIOCGIFINDEX, &ifr) < 0)
         {
           int saved_errno = errno;
    diff --git a/timezone/zic.c b/timezone/zic.c
    Others
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  7. configure.py

      """Force symlink, equivalent of 'ln -sf'.
    
      Args:
        target: items to link to.
        link_name: name of the link.
      """
      try:
        os.symlink(target, link_name)
      except OSError as e:
        if e.errno == errno.EEXIST:
          os.remove(link_name)
          os.symlink(target, link_name)
        else:
          raise e
    
    
    def write_to_bazelrc(line):
      with open(_TF_BAZELRC, 'a') as f:
        f.write(line + '\n')
    
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (1)
  8. src/cmd/cgo/doc.go

    If the import of "C" is immediately preceded by a comment, that
    comment, called the preamble, is used as a header when compiling
    the C parts of the package. For example:
    
    	// #include <stdio.h>
    	// #include <errno.h>
    	import "C"
    
    The preamble may contain any C code, including function and variable
    declarations and definitions. These may then be referred to from Go
    code as though they were defined in the package "C". All names
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Sun Mar 31 09:02:45 GMT 2024
    - 42.1K bytes
    - Viewed (0)
  9. api/go1.4.txt

    pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD = 1314
    pkg syscall (windows-386), const ERROR_PRIVILEGE_NOT_HELD Errno
    pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD = 1314
    pkg syscall (windows-amd64), const ERROR_PRIVILEGE_NOT_HELD Errno
    
    # CL 86160044 os: Implement symlink support for Windows, Michael Fraenkel <******@****.***>
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  10. Makefile.core.mk

    $(TARGET_OUT)/istio_is_init: bin/init.sh istio.deps | $(TARGET_OUT)
    	@# Add a retry, as occasionally we see transient connection failures to GCS
    	@# Like `curl: (56) OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 104`
    	TARGET_OUT=$(TARGET_OUT) ISTIO_BIN=$(ISTIO_BIN) GOOS_LOCAL=$(GOOS_LOCAL) bin/retry.sh SSL_ERROR_SYSCALL bin/init.sh
    	touch $(TARGET_OUT)/istio_is_init
    
    .PHONY: init-ztunnel-rs
    init-ztunnel-rs:
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 08 20:25:15 GMT 2024
    - 22.5K bytes
    - Viewed (0)
Back to top