Eclipse-ECF 协同编程插件 Eclipse Communication Framework Project About the ECF Project ECF is a set of frameworks for building communications into applications and services. It provides a lightweight, modular, transport-independent, fully-compliant implementation of the OSGi Remote Services standard. See the ECF Wiki for examples, tutorials, other documentation, as well as plans for future releases. To contribute or find out what's going on right now, please join the ecf-dev mailing list.
2022-05-24 15:26:34 21.08MB eclipse ECF ecf sdk
1
神经网络识别图像matlab代码TransferNet:使用深度卷积神经网络学习语义分割的可迁移知识 创建者 , , 和 项目页面:[] 介绍 该存储库包含以下论文中描述的语义分割算法的源代码: Seunghoon Hong、Junhyuk Oh、Honglak Lee、Bohyung Han, “使用深度卷积神经网络学习语义分割的可转移知识”在 IEE 计算机视觉和模式识别 (CVPR) 会议上,2016 年。 @inproceedings{HongOLH2016, title={Learning Transferrable Knowledge for Semantic Segmentation with Deep Convolutional Neural Network}, author={Hong, Seunghoon and Oh, Junhyuk and Lee, Honglak and Han, Bohyung}, booktitle={Computer Vision and Pattern Recognition (CVPR), 2016 IEEE Conference
2022-05-24 12:51:49 6.88MB 系统开源
1
eclipse新建maven项目时,pom.xml文件第一行报错: org.apache.maven.archiver.MavenArchiver.getManifest(org.apache.maven.project.MavenProject, org.apache.maven.archiver.MavenArchiveConfiguration) 解决方案: 第一种方式 war项目 org.apache.maven.plugins maven-war-plugin 2.6 3.1 false jar项目添加 org.apache.maven.plugins maven-jar-plugin 2.6 第二种方式 下载离线插件mavenarchiver_0.17.2.zip 将mavenarchiver_0.17.2.zip解压后会得到features文件夹和plugins文件夹 第一步: 找到eclipse安装目录的features,将其目录中的org.sonatype.m2e.mavenarchiver.feature_0.NNN文件夹删除(也可能不存在),拷贝features/org.sonatype.m2e.mavenarchiver.feature_0.17.2.201609252051到features 第二步:找到myEclipse安装目录的plugins文件夹---->将其中的org.sonatype.m2e.mavenarchiver.feature_0.NNN删除(也可能不存在),拷贝plugins/org.sonatype.m2e.mavenarchiver_0.17.2.201609252051.jar到features ---------->最后重启eclipse
2022-05-24 12:33:13 28KB maven MavenArchiver jar 离线
1
:newspaper: 新闻搜索者React App 这个React应用程序允许用户按商业,娱乐,健康,科学等类别搜索阿根廷新闻过滤器。 在这个项目中,我为表单的html select元素使用了自定义钩子,用户可以在其中选择所需的类别。 这使我可以区分职责,自定义钩子可以获取用户选择,并且表单仅发送到App.js,在useEffect中使用该表单来实现API咨询并获取所需类别的所有新闻。 该项目中的React概念是组件,useEffect,useState,自定义钩子,css模块,以为组件提供样式,并使用具有异步JavaScript函数(获取)的API和具有prop类型的组件文档。 :wrench: 组件 标题:显示页面标题。 表单:显示包含所有可用类别的html选择表单组件。 新闻列表:它负责显示从API获取的所有新闻。 新闻:它代表NewsList组件使用的一条新闻。
2022-05-22 19:29:41 173KB react javascript api newsapi-org
1
视频:https://www.bilibili.com/video/BV1wy4y1W7XS?spm_id_from=333.999.0.0 实现使用C和C++自动补全,CDT 版本10.2。目前可以用于stm32cubeide和CCS(Code Composer studio)使用。直接拷贝到CCS安装路径下:C:\ti\ccs\eclipse\plugins\
2022-05-19 23:46:08 5.91MB eclipse ccs CodeComposerst C和C++
1
import org.apache.http.HttpResponse; import org.apache.http.HttpStatus; import org.apache.http.HttpVersion; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; import org.apache.http.conn.ClientConnectionManager; import org.apache.http.conn.scheme.PlainSocketFactory; import org.apache.http.conn.scheme.Scheme; import org.apache.http.conn.scheme.SchemeRegistry; import org.apache.http.conn.ssl.SSLSocketFactory; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.DefaultHttpClient; import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager; import org.apache.http.params.BasicHttpParams; import org.apache.http.params.HttpParams; import org.apache.http.params.HttpProtocolParams; import org.apache.http.protocol.HTTP; import org.apache.http.util.EntityUtils; 导入其中的httpclient-4.2.5.jar和httpcore-4.2.4.jar即可
2022-05-19 18:26:54 1.98MB apachehttp
1
package com.tydic.common.utils; import javax.crypto.Cipher; import javax.crypto.spec.IvParameterSpec; import javax.crypto.spec.SecretKeySpec; import org.apache.commons.codec.binary.Base64; /* * AES加解密算法 * * @author jueyue * 加密用的Key 可以用26个字母和数字组成,最好不要用保留字符,虽然不会错,至于怎么裁决,个人看情况而定 此处使用AES-128-CBC加密模式,key需要为16位。 也是使用0102030405060708 */ public class AES { // 加密 public static String Encrypt(String sSrc, String sKey) throws Exception { if (sKey == null) { System.out.print("Key为空null"); return null; } // 判断Key是否为16位 if (sKey.length() != 16) { System.out.print("Key长度不是16位"); return null; } byte[] raw = sKey.getBytes(); SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");//"算法/模式/补码方式" IvParameterSpec iv = new IvParameterSpec("0102030405060708".getBytes());//使用CBC模式,需要一个向量iv,可增加加密算法的强度 cipher.init(Cipher.ENCRYPT_MODE, skeySpec, iv); byte[] encrypted = cipher.doFinal(sSrc.getBytes()); return Base64.encodeBase64String(encrypted);//此处使用BAES64做转码功能,同时能起到2次加密的作用。 } // 解密 public static String Decrypt(String sSrc, String sKey) throws Exception { try { // 判断Key是否正确 if (sKey == null) { System.out.print("Key为空null"); return null; } // 判断Key是否为16位 if (sKey.length() != 16) { System.out.print("Key长度不是16位"); return null; } byte[] raw = sKey.getBytes("ASCII"); SecretKeySpec skeySpec = new SecretKeySpec(raw, "AES"); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5Padding"); IvParameterSpec iv = new IvParameterSpec("0102030405060708" .getBytes()); cipher.init(Cipher.DECRYPT_MODE, skeySpec, iv); byte[] encrypted1 = Base64.decodeBase64(sSrc);//先用bAES64解密 try { byte[] original = cipher.doFinal(encrypted1); String originalString = new String(original); return originalString; } catch (Exception e) { System.out.println(e.toString()); return null; } } catch (Exception ex) { System.out.println(ex.toString()); return null; } } }
2022-05-18 23:19:29 340KB org.apache.commo
1
从下载历史太阳能光伏数据。 此代码正在进行中。 目的是提供一个用于与交互的 Python 库,以及一组用于下载大量数据的脚本:) 安装 在PVOutput.org上注册 您需要从 PVOutput.org 获取 API 密钥和系统 ID。 如果没有光伏系统,则在PVOutput上注册时,单击“仅能耗”框。 如果不包括系统ID,则PVOutput API会收到“ 401未经授权”响应。 您可以将 API 密钥和系统 ID 传递给PVOutput构造函数。 或者,创建一个~/.pvoutput.yml文件,如下所示: api_key : system_id : API配额和付费订阅 PVOutput.org 免费为您提供每小时 60 个 API 请求。 根据请求,您可以为
2022-05-15 18:08:03 2.8MB python python-library solar pvoutput
1
org.geogebra.GeoGebra
2022-05-14 22:57:37 141KB Shell
1
常用的Eclipse配置常用的Eclipse配置常用的Eclipse配置常用的Eclipse配置常用的Eclipse配置常用的Eclipse配置常用的Eclipse配置常用的Eclipse配置
2022-05-12 18:03:42 36KB JAVA
1