码迷,mamicode.com
首页 >  
搜索关键字:communication    ( 811个结果
Communication System
题意:一个系统由n个设备组成,每个设备可以由mi个厂商提供,每个设备你可以选一个厂商,在你选定的厂商的设备中,b(带宽)是所选设备中b值最小的,类似于短板效应,p是所有价格之和,要求b/p最小。(看了很久才懂了题意,~~~要史了) 题解:dp[ i ][ j ]表示选了i个设备,带宽最小为j所用到的 ...
分类:其他好文   时间:2017-09-22 13:09:56    阅读次数:135
Qt5.9 WebChannel
Qt WebChannel enables peer-to-peer communication between a server (QML/C++ application) and a client (HTML/JavaScript or QML application). It is suppo ...
分类:Web程序   时间:2017-09-15 13:37:37    阅读次数:347
[Vue + TS] Use Properties in Vue Components Using @Prop Decorator with TypeScript
With properties we can follow a one-way parent→child flow communication between components. This lesson shows you how you can pass down properties to ...
分类:其他好文   时间:2017-09-13 18:28:38    阅读次数:287
pthread thread mutex synchronous asynchronous communication
设置进程绑定状态的函数pthread_attr_setscopepthread_attr_t 指向属性结构的指针第二个参数 绑定类型 pthread_scope_system()pthread_scope_process(非绑定)创建一个绑定线程 线程属性结构pthread_attr_t #incl ...
分类:其他好文   时间:2017-09-12 18:34:38    阅读次数:194
Java面试18|关于进程、线程与协程
1、IPC(Inter-Process Communication,进程间通信)与线程通信的几种方式 # 管道( pipe ):管道是一种半双工的通信方式,数据只能单向流动,而且只能在具有亲缘关系的进程间使用。进程的亲缘关系通常是指父子进程关系。# 有名管道 (named pipe) : 有名管道也 ...
分类:编程语言   时间:2017-09-09 22:39:01    阅读次数:275
Linux进程间通信--共享内存
一、共享内存介绍 共享内存是三个IPC(Inter-Process Communication)机制中的一个。 它允许两个不相关的进程访问同一个逻辑内存。 共享内存是在两个正在进行的进程之间传递数据的一种非常有效的方式。 大多数的共享内存的实现, 都把由不同进程之间共享的内存安排为同一段物理内存。 ...
分类:系统相关   时间:2017-09-05 17:46:49    阅读次数:181
An Example of SignalR
SignalR can keep communication with the client and Server on real time. It`s a very wonderful independent tool for MVC development. Here I just finish ...
分类:其他好文   时间:2017-08-30 15:32:35    阅读次数:147
进程间的通讯(IPC)方式
为什么要进行进程间的通讯(IPC (Inter-process communication)) 数据传输:一个进程需要将它的数据发送给另一个进程,发送的数据量在一个字节到几M字节之间共享数据:多个进程想要操作共享数据,一个进程对共享数据的修改,别的进程应该立刻看到。通知事件:一个进程需要向另一个或一 ...
分类:系统相关   时间:2017-08-29 23:45:33    阅读次数:224
windows剪贴板
0x01 Windows剪贴板 Windows剪贴板是一种比较简单同时也是开销比较小的IPC(InterProcess Communication,进程间通讯)机制。Windows系统支持剪贴板IPC的基本机制是由系统预留的一块全局共享内存,用来暂存在各进程间进行交换的数据:提供数据的进程创建一个全 ...
分类:Windows程序   时间:2017-08-27 14:03:42    阅读次数:229
node的stream
stream在Unix系统中是个标准的概念。 In computer programming, standard streams are preconnected input and output communication channels[1] between a computer progra ...
分类:其他好文   时间:2017-08-25 19:55:59    阅读次数:194
811条   上一页 1 ... 24 25 26 27 28 ... 82 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!