Posts

chisel - Searching for Riscv Documentation -

i'm looking documentation risc v rocket tile "nasti" interface protocol (acquire, grant, ...) communicates l1 network. thanks. probably here you'll find useful information: https://github.com/sergeykhbr/riscv_vhdl/ file rocket_soc/rocketlib/types_rocket.vhd implements common function , documented signals of bridge "tilelink" "amba axi (nasti)" bus (line 555). file rocket_soc/rocketlib/tilelink/axibridge.vhd bridge itself.

Excel VBA Find a row in another sheet, then change a cell in the same row -

i know there lots of questions this, couldn't of them work me. i'm putting print button on print sheet. when clicked take order number (which on print sheet), find on orders sheet put text ,"printed" column in same row of order. i've solved printing part no problems there. couldn't of codes work. i'm newb. please consider answers :) sub macro1() ' ' macro1 macro ' 'activesheet.printout dim ws1 worksheet, ws2 worksheet dim acell range, bcell range dim lrow long set ws1 = sheets("sprs"): set ws2 = sheets("etÝket") set acell = ws1.columns(1).find(what:="26182-2" _ , lookin:=xlvalues, lookat:=xlwhole, searchorder:=xlbyrows, _ searchdirection:=xlnext, matchcase:=false) thisworkbook.worksheets("sprs").range(acell).value = "printed" end sub in click buttons function print add like: thisworkbook.works...

Database stuck in executing query or slow SQL Server -

update : tried re-creating table in same database , able run select statement fine. tried select * [unnik].[dbo].[leads] with(nolock) order id desc ; which works. temporary solution want know going on? we have database server has 50 plus databases in it. more 50gb of size morning there 1 database running slow or not responding in query. this database doesn't work. others works fine , database small 20,000 records only. when run query like select * [unnik].[dbo].[leads] order id desc; it stuck in executing query status circle progress animation. even limiting 1 query doesn't show anything. select top 1 * [unnik].[dbo].[leads] order id desc; what problem? no expert in database trouble shooting. php developer , of knowledge know in database queries related php scripting. tried inserting record in database , works fine. select statement doesn't work or queries has viewing.

scala - how to conditionally pass a message to a specific next stage (among other stages)? -

consider simple scenario when depending on attribute of message passing through, want processed specific next stage , continue on. [source[actionmessage]] ~> [flow[actionmessage, enrichedactionmessage]] ~> (eam: enrichedactionmessage => eam.actiontype match { case actiona => eam ~> flow[enrichedactionmessage, reactiona] ~> sink[reactiona] case actionb => eam ~> flow[enrichedactionmessage, reactionb] ~> sink[reactionb] case actionc => eam ~> flow[enrichedactionmessage, reactionc] ~> sink[reactionc] }) how achieve conditional routing stage graph stage ? this answer based on akka-stream version 2.4.2-rc1 . api can different in other versions. dependency can consumed sbt : librarydependencies += "com.typesafe.akka" %% "akka-stream" % "2.4.2-rc1" use partition component: val shape = graphdsl.create() { implicit b ⇒ import graphdsl.implicits._ val first = b.add(sink.foreac...

android - How to share String among multiple modules? -

i have 3 modules: mod1 , mod2 , mod3 . module mod1 has dependencies mod2 , mod3 . i want have 1 string (in particular useragent because 3 modules http-talk server , 3 should have same user agent set) shared among 3 modules. if "one string" want make common other modules, in strings.xml file(not string value in .java file), can create common module say, mode0 , including string values want make common other modules in it's strings.xml file. can add mode0 dependency other modules. maybe not best way but, hope useful!

javascript - Docusign / Salesforce: Sending an envelope from a Salesforce custom object gives an error message 'no contacts on record' -

i want send envelope directly salesforce (custom) object without end user action required other hitting button 'send docusign'. but on hitting button 'send docusign' error: 'there no contacts on salesforce record sending from. add 1 or more contacts record , try again'. , can go salesforce. of course there no contacts defined on object in salesforce. object related account , contacts , there contacts stored. why isn't working correctly? can me? more info: when change 'var oco = "send";' 'var oco = "tag";' seems work. docusign page using correct template , salesforce database data filled out correctly. can't issue? the other thing doesn't seem change recipients (list) defined in template recipients defined in 'var crl'. can cause of problem? more info: var crl = "email~{!customobject__c.e_mail__c};lastname~signername;role~signer 2;email~me@home.com;lastname~myname;role~signer 1;loaddef...

html - Footer is not displaying in full page width using Bootstrap 3 -

i checked bootstrap.min.css , width:100% not mentioned navbar , navbar-inverse , navbar-fixed-top classes still displaying 100% width header section. <nav class="navbar navbar-inverse navbar-fixed-top" > <div class="container"> <div > <h3>free area</h3> </div> </div> </nav> similarly want display footer in 100% width according page width. used below css , html code not displaying 100% width footer. how can make footer displays in entire width of page? css footer { margin: 0px 0; background:#006699; } html <footer> <div class="container"> <div class="row "> <div class="col-md-6 col-sm-6"> <h3>section area 01</h3> <ul> <li><a href="#">link1</a></li> <li><a...