Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 86 for Tperm (0.07 sec)

  1. src/syscall/syscall_windows.go

    	_ERROR_CALL_NOT_IMPLEMENTED = Errno(120)
    )
    
    func (e Errno) Is(target error) bool {
    	switch target {
    	case oserror.ErrPermission:
    		return e == ERROR_ACCESS_DENIED ||
    			e == EACCES ||
    			e == EPERM
    	case oserror.ErrExist:
    		return e == ERROR_ALREADY_EXISTS ||
    			e == ERROR_DIR_NOT_EMPTY ||
    			e == ERROR_FILE_EXISTS ||
    			e == EEXIST ||
    			e == ENOTEMPTY
    	case oserror.ErrNotExist:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall_syscall(libc_open_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	r0, _, e1 := syscall_syscall(libc_open_trampoline_addr, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	fd = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

      // [0, 1, 2]
      auto idx = Range(cpu_scope, zero, rank, one);
    
      // [0, 2]
      auto other = SetDiff1D(cpu_scope, idx, reduced).out;
    
      // [1, 0, 2]
      auto perm =
          Concat(cpu_scope, std::initializer_list<Input>{reduced, other}, 0);
    
      // 3 => [3]
      auto reduced_num = Prod(cpu_scope, Gather(scope, input_shape, reduced), 0);
    
      // 2 * 2 => [2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go

    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    	EPROCUNAVAIL    = syscall.Errno(0x4c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go

    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    	EPROCUNAVAIL    = syscall.Errno(0x4c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go

    	ENOTSUP         = syscall.Errno(0x56)
    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x54)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    	EPROCUNAVAIL    = syscall.Errno(0x4c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go

    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    	EOWNERDEAD      = syscall.Errno(0x5e)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    	EPROCUNAVAIL    = syscall.Errno(0x4c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go

    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    	EOWNERDEAD      = syscall.Errno(0x5e)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    	EPROCUNAVAIL    = syscall.Errno(0x4c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go

    	ENOTTY          = syscall.Errno(0x19)
    	ENXIO           = syscall.Errno(0x6)
    	EOPNOTSUPP      = syscall.Errno(0x2d)
    	EOVERFLOW       = syscall.Errno(0x57)
    	EOWNERDEAD      = syscall.Errno(0x5e)
    	EPERM           = syscall.Errno(0x1)
    	EPFNOSUPPORT    = syscall.Errno(0x2e)
    	EPIPE           = syscall.Errno(0x20)
    	EPROCLIM        = syscall.Errno(0x43)
    	EPROCUNAVAIL    = syscall.Errno(0x4c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
Back to top