摘要: Flink API 历史变迁 在 Flink 1.0.0 时期,加入了 State API,即 ValueState、ReducingState、ListState 等等。State API 可以认为是 Flink 里程碑式的创新,它能够让用户像使用 Java 集合一样地使用 Flink State 阅读全文
posted @ 2019-12-16 12:04 hi-latolo 阅读(742) 评论(0) 推荐(0) 编辑
摘要: // SokcetClient.cpp: implementation of the SokcetClient class. // ////////////////////////////////////////////////////////////////////// #include "stdafx.h" #include "SokcetClient.h" #include <iostrea 阅读全文
posted @ 2019-10-09 19:44 hi-latolo 阅读(211) 评论(0) 推荐(0) 编辑
摘要: #include "pch.h" #include "SokcetClient.h" #include <iostream> #include <thread> #include <Ws2tcpip.h> #include "StringHelper.h" #include "HeartBeatResponse.h" #include "x2struct/x2struct.hpp" #includ 阅读全文
posted @ 2019-10-06 20:05 hi-latolo 阅读(324) 评论(0) 推荐(0) 编辑
摘要: import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.net.InetSocketAddress; import java.n... 阅读全文
posted @ 2019-09-26 12:00 hi-latolo 阅读(2028) 评论(0) 推荐(0) 编辑
摘要: 1.登陆项目平台数据库服务器。双击SQL Server Management Studio打开数据库管理。登陆数据库 2.如下图,打开数据库属性窗口 3.如下图,更改数据库恢复模式 4.如下图,收缩数据库日志 到这里已经完成了,数据库的日志收缩 5.如下图,数据库恢复模式修改为完整 阅读全文
posted @ 2019-04-07 10:41 hi-latolo 阅读(916) 评论(0) 推荐(0) 编辑
摘要: server { listen 80;#端口号 server_name www.xxxx.net;#本机 charset utf-8; location /{ proxy_pass http://www.xxxx.net:8085; proxy_redirect off ; proxy_set_he 阅读全文
posted @ 2018-12-22 11:27 hi-latolo 阅读(151) 评论(0) 推荐(0) 编辑
摘要: nginx www解析失败: nginx代理IIS下域名时 xxxx.xxx可以解析 但www.xxxx.xxx解析失败 IIS增加ip解析:配置下127.0.0.1就可以解析了。 阅读全文
posted @ 2018-12-22 11:04 hi-latolo 阅读(650) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.IO;using System.Text;using System.Web.Script. 阅读全文
posted @ 2018-12-06 08:50 hi-latolo 阅读(513) 评论(1) 推荐(0) 编辑
摘要: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { if (string.IsNullOrEmpty(Request.Params["CarPicPath"]) == false) ... 阅读全文
posted @ 2018-11-02 11:41 hi-latolo 阅读(599) 评论(0) 推荐(0) 编辑
摘要: <asp:BoundField DataField="BWFlag" HeaderText="黑/白名单" /> <asp:TemplateField HeaderText="车牌图片" ItemStyle-Width="100px"> <ItemTemplate> <asp:LinkButton 阅读全文
posted @ 2018-11-02 10:47 hi-latolo 阅读(375) 评论(0) 推荐(0) 编辑