Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for _retval0 (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

           llvm::enumerate(callee.front().getTerminator()->getOperands())) {
        auto retval = entry.value();
        if (!mlir::isa<TF::ResourceType>(getElementTypeOrSelf(retval.getType()))) {
          result->old_to_new_output_indices.push_back(non_resource_results++);
          continue;
        }
        auto aliasing_arg = mlir::dyn_cast<BlockArgument>(retval);
        if (!aliasing_arg) {
          return callee.emitOpError("unsupported function call: ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                try ( DcerpcHandle handle = DcerpcHandle.getHandle("ncacn_np:" + server + "[\\PIPE\\srvsvc]", getContext()) ) {
                    handle.sendrecv(rpc);
                    if ( rpc.retval != 0 ) {
                        throw new SmbException(rpc.retval, true);
                    }
                    aces = rpc.getSecurity();
                    if ( aces != null ) {
                        processAces(aces, resolveSids);
                    }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      std::string args_communication_key =
          llvm::formatv("host_compute_channel_{0}_args", (communication_key_index))
              .str();
      std::string retvals_communication_key =
          llvm::formatv("host_compute_channel_{0}_retvals",
                        (communication_key_index))
              .str();
    
      // Use a unique name when sending just the IfRegion predicate.  This is
      // for readable and to match the key in the TF2XLA bridge.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func FcntlInt(fd uintptr, cmd int, arg int) (retval int, err error) {
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS_FCNTL<<4, uintptr(fd), uintptr(cmd), uintptr(arg))
    	runtime.ExitSyscall()
    	retval = int(r0)
    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fchownat(fd int, path string, uid int, gid int, flags int) (err error) = SYS___FCHOWNAT_A
    //sys	FcntlInt(fd uintptr, cmd int, arg int) (retval int, err error) = SYS_FCNTL
    //sys	Fdatasync(fd int) (err error) = SYS_FDATASYNC
    //sys	fstat(fd int, stat *Stat_LE_t) (err error)
    //sys	fstatat(dirfd int, path string, stat *Stat_LE_t, flags int) (err error) = SYS___FSTATAT_A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
Back to top