text stringlengths 20 1.01M | url stringlengths 14 1.25k | dump stringlengths 9 15 ⌀ | lang stringclasses 4
values | source stringclasses 4
values |
|---|---|---|---|---|
.html.editor.folding;21 22 import org.netbeans.editor.CodeFoldingSideBar;23 import org.netbeans.editor.SideBarFactory;24 25 /**26 * HTML Code Folding Side Bar Factory, responsible for creating CodeFoldingSideBar27 * Plugged via layer.xml28 *29 * @author Martin Roskanin, Marek Fukala30 */31 public class HTMLCodeFoldingS... | http://kickjava.com/src/org/netbeans/modules/html/editor/folding/HTMLCodeFoldingSideBarFactory.java.htm | CC-MAIN-2017-04 | en | refinedweb |
Details
Description
I have a simple POJO service with the following method:
package org.tempuri.test;
import org.tempuri.test.data.arrays.ArrayOfanyType;
public class TypeTest {
public ArrayOfanyType retArrayAnyType1D(ArrayOfanyType inArrayAnyType1D)
}
The ArrayOfanyType is declared like this:
public class ArrayOfanyTy... | https://issues.apache.org/jira/browse/AXIS2-3797?attachmentSortBy=dateTime | CC-MAIN-2017-04 | en | refinedweb |
java.lang.Object
org.springframework.context.support.ApplicationObjectSupportorg.springframework.context.support.ApplicationObjectSupport
org.springframework.web.context.support.WebApplicationObjectSupportorg.springframework.web.context.support.WebApplicationObjectSupport
org.springframework.web.servlet.view.ContentNeg... | http://docs.spring.io/spring/docs/3.1.0.M1/javadoc-api/org/springframework/web/servlet/view/ContentNegotiatingViewResolver.html | CC-MAIN-2017-04 | en | refinedweb |
Download presentation
Presentation is loading. Please wait.
Published byKylie McMillan Modified over 2 years ago
1
CNGrid Software Progress Zhiwei Xu Institute of Computing TechnologySoftware Team Chinese Academy of SciencesChina National Grid EU Grid At Asia Workshop June 23, 2005, Beijing
2
Contents CNGrid Software O... | http://slideplayer.com/slide/739459/ | CC-MAIN-2017-04 | en | refinedweb |
This module is unmaintained. Maybe someday...
DOMForm is a Python module for web scraping and web testing. It knows how to evaluate embedded JavaScript code in response to appropriate events. DOMForm supports both the ClientForm 0.1.x HTML form interface and the HTML DOM level 2 interface (note that ATM the DOM is writ... | http://wwwsearch.sourceforge.net/old/DOMForm/ | CC-MAIN-2017-04 | en | refinedweb |
In this article I describe a way to create an HTML helper method using ASP.NET MVC3 to make a select element that
can be dynamically enabled or disabled without using the "disabled" attribute.
disabled
What is the purpose of writing this article? For your understanding I will describe why it isn't feasible to use the
"... | https://www.codeproject.com/tips/343344/creating-a-disableable-dropdownlist-in-asp-net-mvc?pageflow=fixedwidth | CC-MAIN-2017-04 | en | refinedweb |
Using Display and Editor Templates in ASP.NET MVC
Today, we discuss how Display and Editor Templates keep your custom MVC form fields consistent in your web application.
If you've worked with forms before in ASP.NET MVC, you know if you have a duplicate input and display field in a model across multiple screens, most u... | https://www.danylkoweb.com/Blog/using-display-and-editor-templates-in-aspnet-mvc-CR | CC-MAIN-2017-04 | en | refinedweb |
Hi everyone i have a question about how to use a class so i make this script:
>>> class className:
def createName(self,name):
self.name=name
def displayName(self):
return self.name
def saying(self):
print 'Hello %s' % self.name
>>> first=className
>>> first.createName('X')
I learn this from a tutorial but i have an err... | https://www.gamedev.net/topic/650158-how-to-use-classand-what-is-return/ | CC-MAIN-2017-04 | en | refinedweb |
The Future of XML 273
An anonymous reader writes "How will you use XML in years to come? The wheels of progress turn slowly, but turn they do. The outline of XML's future is becoming clear. The exact timeline is a tad uncertain, but where XML is going isn't. XML's future lies with the Web, and more specifically with We... | https://developers.slashdot.org/story/08/02/07/2141221/the-future-of-xml | CC-MAIN-2017-04 | en | refinedweb |
If you think you’ve found a bug in Python, what’s next? I'll guide you through the process of submitting a patch, so you can avoid its pitfalls and find the shortest route to becoming a Python contributor!
This is the final post in a three part series. In Night of the Living Thread I fixed a bug in Python's threading i... | https://dzone.com/articles/day-thread | CC-MAIN-2017-04 | en | refinedweb |
0
For a given list, I would like my output to have the line "Deleting node with value ..." for each node.
My destructor function works for a 2-element list, but for a 3-element list it deletes a certain node more than once, and for a list of any size greater than 3, I get an infinite loop. I try tracing through the cod... | https://www.daniweb.com/programming/software-development/threads/104689/destructor-function-for-list-structure | CC-MAIN-2017-04 | en | refinedweb |
; Ui::CalculatorForm ui; ui.setupUi(widget); widget->show(); return app.exec(); }
In this case, the
Ui::CalculatorForm is an interface description object from the
ui_calculatorform.h file that sets up all the dialog's widgets and the connections between its signals and slots.
In this approach, we subclass a Qt widget a... | http://doc.qt.io/qt-5/designer-using-a-ui-file.html | CC-MAIN-2017-04 | en | refinedweb |
The Samba-Bugzilla – Bug 8463
Buffer-overflow in dirsort plugin when directory contents change at wrong time.
Last modified: 2017-01-03 07:14:25 UTC
Created attachment 6901 [details]
Prevent buffer overflow when directory contents change
The dirsort vfs plugin opens the directory and reads all entries to count
them and... | https://bugzilla.samba.org/show_bug.cgi?id=8463 | CC-MAIN-2017-04 | en | refinedweb |
To scale applications it becomes necessary to separate thread creation and management from rest of the application. Using thread pools is an approach typically employed in large scale systems. This article provides a quick overview on executor framework in Java and provides examples on how to work with thread pools.
Th... | http://www.sourcetricks.com/2014/04/thread-pools-in-java.html | CC-MAIN-2017-04 | en | refinedweb |
SERIALIZE A hashtable that contains only String Type
check this post out for clues!
Just as a note - a bit off topic - if your Hashtable only contains strings, and only will ever contain strings, you should consider using the .NET StringDictionary class, same usage as a normal Hashtable, but type safe, it'll save you h... | http://www.nullskull.com/q/10019340/how-to-assign-a-string-to-hash-table.aspx | CC-MAIN-2014-10 | en | refinedweb |
Andi,I wrote the following description of the core_pattern pipe feature. Does thisseem okay?- name (or a pathname relative to the root directory, /), and must immediately follow the '|' character. * The process created to run the program runs as user and group root. * Arguments can be supplied to the program, delimited... | https://lkml.org/lkml/2008/4/18/193 | CC-MAIN-2014-10 | en | refinedweb |
Why doesn't JAXB find my subclass?
People often get confused about why their sub-classes are not used by JAXB when they read an XML document that uses @xsi:type into Java objects. This question was asked in the forum (I don't think this is the first time but I can't find a reference.)
The first thing you should do, and... | https://weblogs.java.net/blog/kohsuke/archive/2006/04/why_doesnt_jaxb.html | CC-MAIN-2014-10 | en | refinedweb |
check my code please?
Rene Rad
Greenhorn
Joined: Feb 10, 2010
Posts: 15
posted
Mar 29, 2010 21:22:02
0
Hey everyone,
I'm writing a method to shuffle a deck and am unsure if it's executing properly. I'm not sure how to check if it is shuffling 1000 times. (using constant public static final int TIMES_TO_SHUFFLE = 1000)... | http://www.coderanch.com/t/489396/java/java/check-code | CC-MAIN-2014-10 | en | refinedweb |
Java 5 introduced Thread pool in Java in form of Executor framework, which allows Java programmer to decouple submission of task to execution of task. If you are doing server side programming in Java than Thread pool is an important concept to maintain scalability, robustness and stability of system. For those, who are... | http://www.javacodegeeks.com/2013/07/how-to-create-thread-pools-using-java-5-executor-framework.html/comment-page-1/ | CC-MAIN-2014-10 | en | refinedweb |
Interface for interaction between a graphics document and a user. More...
#include <RDocumentInterface.h>
Interface for interaction between a graphics document and a user.
Typically one document interface exists for every document that is open in an MDI application. The document interface owns and links the various sce... | http://www.qcad.org/doc/qcad/latest/developer/class_r_document_interface.html | CC-MAIN-2014-10 | en | refinedweb |
Search: Search took 0.02 seconds.
- 15 Dec 2010 6:41 AM
- Replies
- 6
- Views
- 2,473
We ran into the same thing when upgrading to 2.2.1 - assertion that was not there before. What are the dangers of having more than one TreeGridCellRenderer? (Two seemed to work fine with our code...
- 14 Dec 2009 8:06 AM
- Replies
- 1... | http://www.sencha.com/forum/search.php?s=d92978ca324adaa7322cd9658175ca99&searchid=4728597 | CC-MAIN-2014-10 | en | refinedweb |
Up to [DragonFly] / src / lib / libc / stdio
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Remove leading zeroes.>
Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most ids have been removed from !lint sections and moved into comment sections.
import fr... | http://www.dragonflybsd.org/cvsweb/src/lib/libc/stdio/fopen.3?r1=1.3 | CC-MAIN-2014-10 | en | refinedweb |
In following example we will discuss about Array in Java. Array is a collection of data of same datatype.We can use it to store Integer, Boolean, String object. We can store only primitive data in array. We have contained multiples value of the same type and we can store the multiple value in memory at fixed size. We c... | http://www.roseindia.net/java/beginners/array-in-java.shtml | CC-MAIN-2014-10 | en | refinedweb |
Table of Contents
List of Figures
List of Tables
Table of Contents.. The jPDL graphical process designer plugin is also included in JBossTools, JBoss Developer Studio and the SOA Platform. ..4 specifications so that it is deployable on any application server.
Depending on the functionalities that you use, the library
l... | http://docs.jboss.com/jbpm/v3.2/userguide/html_single/ | CC-MAIN-2014-10 | en | refinedweb |
>>:
4. Re: How can i use switchyard camel with activemq?alex liu May 6, 2012 11:20 PM (in response to alex liu)
After trying to deloy activemq component using switchyard CDI, i got failed.
1.I put the ActiveMQComponentFactory.java to project switchyard-quickstart-camel-service,
2.write a sample route class:
public inte... | https://community.jboss.org/message/734038?tstart=0 | CC-MAIN-2014-10 | en | refinedweb |
!
This is part of the Shape Hierarchy so it should help you get started...
public class Shape { } public class Shape2d extends Shape { } public class Shape3d extends Shape { }
Thank you! but how about the 2d-shapes circle, square and triangle also the 3-shapes sphere, cube and tetrahedron? Do i have to put them in clas... | http://www.daniweb.com/software-development/java/threads/174062/polymorphism-in-javashape-hierarchy | CC-MAIN-2014-10 | en | refinedweb |
14 February 2011 18:12 [Source: ICIS news]
LONDON (ICIS)--INEOS' 2010 fourth-quarter earnings before interest, tax, depreciation and amortisation (EBITDA) fell 8.2% to €270m ($365m) on squeezed European cracker margins, a port strike in France and a lightning strike in the US, INEOS said on Monday.
The Switzerland-head... | http://www.icis.com/Articles/2011/02/14/9435277/ineos-q4-2010-earnings-fall-8.2-to-270m-on-strike-weather.html | CC-MAIN-2014-10 | en | refinedweb |
Timeline
08/25/08:
- 23:34 Changeset [39599] by
- Abstracted client connection in NotificationsClient object within …
- 23:01 Ticket #16387 (git-core update to 1.6.0.1) created by
- another version bump from 1.6.0 to 1.6.0.1
- 22:24 Changeset [39598] by
- science/glue: add dependency on py25-pyrxp
- 20:38 Changeset [39... | https://trac.macports.org/timeline?from=2008-08-25T10%3A18%3A20-0700&precision=second | CC-MAIN-2014-10 | en | refinedweb |
beengone: a script-friendly way to check computer idle time
I spent too long figuring this out, but I’m quite certain there are at least 3 people who can put the result to good use. I don’t know who they are yet, but they’ll show up. Eventually.
I wanted a way to detect whether I was at my computer or not when a script... | http://brettterpstra.com/2013/02/10/beengone-a-script-friendly-way-to-check-computer-idle-time/ | CC-MAIN-2014-10 | en | refinedweb |
Checks whether an entry, given its DN, is in the scope of a certain base DN.
#include "slapi-plugin.h" int slapi_sdn_scope_test( const Slapi_DN *dn, const Slapi_DN *base, int scope );
This
This function returns non-zero if dn matches the scoping criteria given by base and scope.
This function carries out a simple test ... | http://docs.oracle.com/cd/E19424-01/820-4810/aaini/index.html | CC-MAIN-2014-10 | en | refinedweb |
public class UnexpectedException extends RemoteException
UnexpectedExceptionis thrown if the client of a remote method call receives, as a result of the call, a checked exception that is not among the checked exception types declared in the
throwsclause of the method in the remote interface. UnexpectedException(String ... | http://docs.oracle.com/javase/7/docs/api/java/rmi/UnexpectedException.html | CC-MAIN-2014-10 | en | refinedweb |
23 March 2011 22:48 [Source: ICIS news]
HOUSTON (ICIS)--A ?xml:namespace>
The producer was not available for comment. However, the nomination was reported by multiple sources, and was said to have likely been prompted by an imbalance in supply and demand.
The settlement nomination - if it held up - would result in an A... | http://www.icis.com/Articles/2011/03/23/9446619/us-bd-producer-seeks-20-hike-for-april-contract.html | CC-MAIN-2014-10 | en | refinedweb |
Introduction
Introduction
... Hibernate
and Struts. Hibernate and Struts are popular open source tools. You can
download Hibernate from
Introduction to Struts 2
Introduction
Struts - Struts
strutsTutorial;
import...//////////
package strutsTutorial;
import
Struts - Struts
**********************************************... | http://www.roseindia.net/tutorialhelp/comment/93874 | CC-MAIN-2014-10 | en | refinedweb |
Threaded View
Sencha Cmd V3 Beta 3.0.0.230 Now Available
Sencha Cmd V3 Beta 3.0.0.230 Now Available
The latest Sencha Cmd beta build is now available - 3.0.0.230.
The highlights are improved UTF-8/multi-charset handling and correcting the overwriting issues with "sencha app upgrade". To use the new charset directive in... | http://www.sencha.com/forum/showthread.php?247193-Sencha-Cmd-V3-Beta-3.0.0.230-Now-Available&p=904153&mode=threaded | CC-MAIN-2014-10 | en | refinedweb |
The Templated BLAS Wrapper Class. More...
#include <Teuchos_BLAS.hpp>
The Templated BLAS Wrapper Class.
The Teuchos::BLAS class provides functionality similar to the BLAS (Basic Linear Algebra Subprograms). The BLAS provide portable, high- performance implementations of kernels such as dense std::vector multiplication,... | http://trilinos.sandia.gov/packages/docs/r10.0/packages/teuchos/browser/doc/html/classTeuchos_1_1BLAS.html | CC-MAIN-2014-10 | en | refinedweb |
AntiPHPatterns
Design Patterns are independent solutions to problems that occur over and over again. Usually these are considered at a high level without much detail. They are independent of core-implementation things like the exact language or data base. And at the opposite end of things we find AntiPatterns which app... | https://www.experts-exchange.com/articles/12293/AntiPHPatterns-and-AntiPHPractices.html | CC-MAIN-2020-10 | en | refinedweb |
Hadoop.:
- Manages the file system namespace.
- Regulates client’s access to files.
- It also executes file system operations such as renaming, closing, and opening files and directories.
Datanode.
Block.. | https://www.mumbai-academics.com/2018/06/hadoop-hadoop-file-system-overview-hdfc.html | CC-MAIN-2020-10 | en | refinedweb |
I while on a train journey.
My previous phone had some GPS issues, which was leading to my location being shown in Arizona, USA!. Surprisingly (or not?) it even gave a proof of that!
All this was really cool to look at, but I really wanted to dive in and get some more insights into my travelling patterns throughout the... | https://www.tefter.io/bookmarks/57689/readable | CC-MAIN-2020-10 | en | refinedweb |
Thanks! I realized that and already changed my post to read "almost satisfying" instead of "not fully satisfying."Thanks! I realized that and already changed my post to read "almost satisfying" instead of "not fully satisfying."jahboater wrote: ↑Mon Jul 15, 2019 7:11 pmThe results for this C code are correct and as exp... | https://www.raspberrypi.org/forums/viewtopic.php?p=1501679 | CC-MAIN-2020-10 | en | refinedweb |
Idiomatic Python: functions versus classes
Brett
In Python, everything is an object. Compared to Java which forces you to code everything in an object-oriented programming style but still has the concept of primitive types which are not objects on their own (although Java 5 added autoboxing to help hide this discrepanc... | https://devblogs.microsoft.com/python/idiomatic-python-functions-versus-classes/ | CC-MAIN-2020-10 | en | refinedweb |
CareKitCareKit
CareKit™ is an open source software framework for creating apps that help people better understand and manage their health. The framework provides modules that can be used out of the box, or extended and customized for more targeted use cases. It is composed of three SPM packages which can each be import... | http://www.alexruperez.com/entries/5223-carekit-apple-carekit | CC-MAIN-2020-10 | en | refinedweb |
Create Your First React Electron Desktop App With TypeScript.TypeScript can help improve your app quality by informing you of type errors in your code, so it’s a good idea to start integrating this into your development flow if you haven’t already.
In a previous piece, I went over the steps of creating desktop applicat... | https://morioh.com/p/8403a7c5e10a | CC-MAIN-2020-10 | en | refinedweb |
In this Angular 8 CRUD tutorial, we will learn how to implement crud To-do Application in Angular 8. Befor get started with angular 8 crud operation. You must have installed Angular project. So let’s get start: Create Angular 8
In this tutorial Angular 8 CRUD tutorial, we will learn how to implement CRUD To-do Applicat... | https://morioh.com/p/9d5d5c475b95 | CC-MAIN-2020-10 | en | refinedweb |
A python package that provides functionality to interface with the Confluent Schema Registtry
Project description
version number: 0.0.1 author: Matthijs van der Kroon
Overview
A python package that provides Avro serialisation and deserialisation compatible with the Confluent Schema Registry.
WARNING: python2.7 not supp... | https://pypi.org/project/primed-avro/0.0.1b1/ | CC-MAIN-2020-10 | en | refinedweb |
Media Manager
Namespaces
Choose namespace
Media Files
Upload to smoothiepanel
Sorry, you don't have enough rights to upload files.
File
- Date:
- 2016/06/27 08:54
- Filename:
- color_coding
- Format:
- JPEG
- Size:
- 2MB
- Width:
- 2238
- Height:
- 2125
- Camera:
- Sony D5803
- References for:
- Nothing was found. | http://smoothieware.org/temperaturecontrol-thermistor-choice?tab_files=upload&do=media&tab_details=view&image=how-to-wire%3Acolor_coding&ns=smoothiepanel | CC-MAIN-2020-10 | en | refinedweb |
For each of your deployments, Deployment Manager creates pre-defined environment variables that contain information inferred from your deployment. Use these environment variables in your Python or Jinja2 templates to get information about your project or deployment.
Available environment variables
The following environ... | https://cloud.google.com/deployment-manager/docs/configuration/templates/use-environment-variables?hl=no | CC-MAIN-2020-10 | en | refinedweb |
When a user clicks on a button or link on a Web page, there can be a delay between posting to the server and the next action that happens on the screen. The problem with this delay is that the user may not know that they already clicked on the button and they might t hit the button again. It’s important to give immedia... | https://www.codemag.com/Article/1507051/Display-a-Progress-Message-on-an-MVC-Page | CC-MAIN-2020-10 | en | refinedweb |
On the Visual Studio team, we’re laser focused on the developer’s inner loop of writing, debugging, and testing code. It’s the most important part of making developers productive. Visual Studio 2019 is packed with tools to make your workflow more efficient. In this article, we’ll cover our favorite new features in Visu... | https://www.codemag.com/Article/1911022/Be-More-Productive-in-Visual-Studio-2019 | CC-MAIN-2020-10 | en | refinedweb |
Node:Hidden assignments, Next:Postfix and prefix ++ and --, Previous:Hidden operators and values, Up:Hidden operators and values
Hidden assignments
Assignment expressions have values too -- their values are the value of
the assignment. For example, the value of the expression
c = 5
is 5.
The fact that assignment statem... | http://crasseux.com/books/ctutorial/Hidden-assignments.html | CC-MAIN-2017-43 | en | refinedweb |
Web Service (ASMX which gets an Object with two members (Name and LastName)) 2. Left by Bryan Corazza on Mar 09, 2007 10:36 AM # re: Failed to Serialize the Message Part Hey i am also getting same problem what u told can u help Then probably you will get to know what is the correct format you will get to send. Why woul... | http://juicecoms.com/failed-to/failed-to-serialize-the-message-part-request-into-the-type.html | CC-MAIN-2017-43 | en | refinedweb |
Release Notes¶
ndn-cxx version 0.5.1¶
Release date: January 25, 2017
Note
This is the last release of the library that supports NDN Certificate format version 1 and the existing implementations of validators. The upcoming 0.6.0 release will include multiple breaking changes of the security framework.
Changes since vers... | http://named-data.net/doc/ndn-cxx/0.5.1/RELEASE_NOTES.html | CC-MAIN-2017-43 | en | refinedweb |
This post is a followup of to initiate a discussion whether whitebox def macros should be included in an upcoming SIP proposal on macros. Please read the blog post for context.
Whitebox macros are similar to blackbox def macros with the distinction that the result type of whitebox def macros can be refined at each call... | https://contributors.scala-lang.org/t/whitebox-def-macros/1210 | CC-MAIN-2017-43 | en | refinedweb |
I'm suppose to create a problem that displays the contents of a file (that the user inputs), and then displays each line with a number in front and a colon after it. So, line 1 and 2 would print out:
1 lineFromFile :
2 lineFromFile :
But, it keeps printing out 1 in front of each line, so I think I didn't write the coun... | https://www.daniweb.com/programming/software-development/threads/124283/don-t-think-i-m-getting-count-correct | CC-MAIN-2017-43 | en | refinedweb |
***********Updated on 4th October 2017***********
Secure Socket Layer (SSL) and its successor Transport Layer Security (TLS) are protocols which use cryptographic algorithms to secure the communication between 2 entities. It is just a secure layer running on top of HTTP.
Overview of SSL Protocol Stack
Several versions ... | https://blogs.msdn.microsoft.com/kaushal/2011/10/02/support-for-ssltls-protocols-on-windows/?replytocom=4635 | CC-MAIN-2017-43 | en | refinedweb |
Opened 8 years ago
Last modified 19 months ago
#8417 new enhancement
CachedRepository support in TracMercurial
Description
I used trac with svn, and switched to mercurial. the revision table in postgres is no more updated with new changesets. So when I do a search in changesets, new changesets are not listed. Did I for... | https://trac.edgewall.org/ticket/8417 | CC-MAIN-2017-43 | en | refinedweb |
#include <ast.h>
#include <ast.h>
Inheritance diagram for unaryNode:
This class represents most expression with one argument (unary operator expressions).
The NodeType is Unary.
Definition at line 3625 of file ast.h.
Coord::Unknown
Create a new unary expression.
The new expression has the given operator and subexpressi... | http://www.cs.utexas.edu/users/c-breeze/html/classunaryNode.html | CC-MAIN-2017-43 | en | refinedweb |
, script, and EL expressions in your template in order to generate parametrized text. Here is an example of using the system:Error rendering macro 'code': Invalid value specified for parameter 'lang'
import groovy.text.Template. The variable
session is one of some default bound keys. More details reveals the documentat... | http://docs.codehaus.org/pages/viewpage.action?pageId=25056 | CC-MAIN-2015-18 | en | refinedweb |
TechEd 2001 has arrived in Atlanta, and with it the hordes of sandaled
programmers and besieged support staff. The attendees are spread over numerous
hotels around the downtown area, with the conference itself being held at the
Georgia World Conference Center
Arriving at the airport I was told that it was very easy to ... | http://www.codeproject.com/Articles/1204/TechEd-Atlanta | CC-MAIN-2015-18 | en | refinedweb |
Objects Events Listing
Pop-Up Object properties and methods list
IntelliSense - like function parameters tooltips
I've been searching the net for a suitable and affordable solution that will allow me to embed scripting functionality in my C++ application. What I found was either not sufficient or cost a lot of money.
S... | http://www.codeproject.com/Articles/4552/Embeddable-script-editor-for-MFC-applications?msg=1042250 | CC-MAIN-2015-18 | en | refinedweb |
Back to article
August 20, 2000
In this
four-part tutorial, you will learn how to use NT Server 4.0's
Performance Monitor and Microsoft Excel to monitor and analyze
SQL Server performance. You will also learn how to use a SQL
Server database to store your Performance Monitor logs. This
tutorial assumes that you alread... | http://www.databasejournal.com/features/mssql/print.php/1466971 | CC-MAIN-2015-18 | en | refinedweb |
...making Linux just a little more fun!.
So, where are we now? We know that some medium or other is required for communication between different processes. Similarly, when it comes to computer programs, we need some mechanism or medium for communication. Primarily, processes can use the available memory to communicate ... | http://www.tldp.org/LDP/LGNET/104/ramankutty.html | CC-MAIN-2015-18 | en | refinedweb |
You may run into this error when trying to use the new DataPager control with a GridView or any other control, other than the ListView control. For a moment I couldn't believe that the DataPager cannot work with the GridView control. Then after a few moments of research found out that, the Data Pager control requires t... | http://geekswithblogs.net/ranganh/archive/2008/06.aspx | CC-MAIN-2015-18 | en | refinedweb |
[ ]
Mikhail Fursov updated HARMONY-2056:
------------------------------------
Patch Info: [Patch Available]
> [drlvm][jit] Jitrino.OPT's bpp.version=1 does not insert a polling code to every backedge
> -----------------------------------------------------------------------------------------
>
> Key: HARMONY-2056
> URL:... | http://mail-archives.apache.org/mod_mbox/harmony-commits/200611.mbox/%3C12341998.1162474521026.JavaMail.root@brutus%3E | CC-MAIN-2015-18 | en | refinedweb |
btparse - C library for parsing and processing BibTeX data files
#include <btparse.h> /* Basic library initialization / cleanup */ void bt_initialize (void); void bt_free_ast (AST *ast); void bt_cleanup (void); /* Input / interface to parser */); /* AST traversal/query */); /* Splitting); /* Formatting names */); /* Co... | http://search.cpan.org/~ambs/Text-BibTeX-0.69/btparse/doc/btparse.pod | CC-MAIN-2015-18 | en | refinedweb |
Any suggestions how I can distribute millions of files from 1 server to X number of other servers? I'm looking more into an algorithm on how to decide which server to send the file to.:
Perhaps look at a distributed filesystem like GlusterFS. It sounds like it will meet all your requirements and will probably be more r... | http://serverfault.com/questions/97673/distribute-files-across-x-number-of-servers/97676 | CC-MAIN-2015-18 | en | refinedweb |
EMF Compare/Release Review/2.1.0
Contents
- 1 Kepler Release Review - EMF Compare 2.1
- 1.1 Release Highlights
- :
Release Highlights
EMF Compare 2.0 was a full overhaul of the design, architecture and code of the project. EMF Compare 2.1 comes to fill the functionality gap between 1.3 and 2.0, especially regarding con... | http://wiki.eclipse.org/index.php?title=EMF_Compare/ReleaseReview/Kepler&oldid=337000 | CC-MAIN-2015-18 | en | refinedweb |
OLPC:Wiki
From OLPC
This is a wiki page about this editable site. We are currently running MediaWiki Version 1.13.3. If you are new to wikis, please read the Wiki getting started page for tips, tutorials, and people who can help you get going. Experienced wiki users, see our Style guide for how you can make your edits ... | http://wiki.laptop.org/go/Wiki/lang-es | CC-MAIN-2015-18 | en | refinedweb |
CVE 2010-2946
fs/jfs/xattr.c in the Linux kernel before 2.6.35.2 does not properly handle a certain legacy format for storage of extended attributes, which might allow local users by bypass intended xattr namespace restrictions via an "os2." substring at the beginning of a name.
See the
CVE page on Mitre.org
for more d... | https://bugs.launchpad.net/bugs/cve/2010-2946 | CC-MAIN-2015-18 | en | refinedweb |
% % (c) The AQUA Project, Glasgow University, 1993-1998 % \section[SimplUtils]{The simplifier utilities} \begin{code} module SimplUtils ( -- Rebuilding mkLam, mkCase, prepareAlts, bindCaseBndr, -- Inlining, preInlineUnconditionally, postInlineUnconditionally, activeInline, activeRule, inlineMode, -- The continuation ty... | https://downloads.haskell.org/~ghc/6.12.2/docs/html/libraries/ghc-6.12.2/src/SimplUtils.html | CC-MAIN-2015-18 | en | refinedweb |
While profiling a bit of legacy code last night, I noticed some strange differences in how fast it is to get a value from a dictionary with a default value. I decided to investigate further with some quick and dirty benchmarks.
Test
For my comparison, both a positive and a negative lookup will be performed from each. T... | http://www.bigjason.com/blog/python-dict-unscientific-benchmarks-lookup-methods | CC-MAIN-2015-18 | en | refinedweb |
15 February 2010 13:38 [Source: ICIS news]
MUMBAI (ICIS news)--India will soon initiate an anti-dumping investigation into polypropylene (PP) imports from South Korea, Taiwan and the US, market sources said on Monday.
The investigation is being launched following an application made by Indian producers last year.
A mar... | http://www.icis.com/Articles/2010/02/15/9334868/india-to-probe-pp-imports-from-s-korea-taiwan-and-the-us.html | CC-MAIN-2015-18 | en | refinedweb |
03 August 2012 07:26 [Source: ICIS news]
SINGAPORE (ICIS)--Qatar International Petroleum Marketing (Tasweeq) has floated a tender late on Thursday to sell one-year term supplies of plant condensate and full-range naphtha for October 2012 to September 2013, traders said on Friday.
For each grade, 360,000-600,000 tonnes ... | http://www.icis.com/Articles/2012/08/03/9583538/qatars-tasweeq-floats-tender-to-sell-oct-12-sep-13-term.html | CC-MAIN-2015-18 | en | refinedweb |
sorry, the versioning is rather baroque. the bug is fixed in version >= 2.2.22.14 theres a readme file inside each jar that has this number in it, in case theres any doubt Nick Bower wrote: > Ok. Could you clarify the version number? I'm on 2.2.22 now - you mentioned > 2.22.14 just now. Is there that much difference be... | http://www.unidata.ucar.edu/mailing_lists/archives/netcdf-java/2007/msg00264.html | CC-MAIN-2015-18 | en | refinedweb |
Sascha Brawer <address@hidden> wrote on Fri, 19 Mar 2004 12:05:55 +0100: > [loading service providers from "META-INF/services/*" in external JARs] >2. Which namespace? >3. The unit tests (see attached ForMauve.tar.gz) run checks on >gnu.classpath.ServiceFactory. This seems a bit unclean, since Mauve was >once meant to ... | http://lists.gnu.org/archive/html/classpath/2004-03/msg00173.html | CC-MAIN-2015-18 | en | refinedweb |
SNA::Network - A toolkit for Social Network Analysis
Version 0.20
Quick summary of what the module does.
use SNA::Network; my $net = SNA::Network->new(); $net->create_node_at_index(index => 0, name => 'A'); $net->create_node_at_index(index => 1, name => 'B'); $net->create_edge(source_index => 0, target_index => 1, weig... | http://search.cpan.org/~obradovic/SNA-Network/lib/SNA/Network.pm | CC-MAIN-2015-18 | en | refinedweb |
EDT:Discussion topics from the language meetings
Contents
What the heck is this page?
I've pasted in my notes from the EDT language meetings, where we discuss what should and should not be part of EGL in EDT. In some cases I've gone back and made updates, but beware! this might be very out-of-date. Topics that need mor... | http://wiki.eclipse.org/EDT:Discussion_topics_from_the_language_meetings | CC-MAIN-2015-18 | en | refinedweb |
Hi all,
I have a quick question about the database globalization. I have a database currently running on WE8ISO88559P1 and we want to convert to either UTF8 or WE8MSWIN1252?????
1. Is there any issue to do that ????
2. How, simply doing EXP/IMP????
thanks,
May depend on your db version.
8i or better should be OK. 8.0 s... | http://www.dbasupport.com/forums/showthread.php?41787-ORA-01031-insufficient-privileges-message&goto=nextnewest | CC-MAIN-2015-18 | en | refinedweb |
The class that performs the "observing" must implement the java.util.Observer interface. There is a single method:
public void update(Observable obj, Object arg)
In the following example, a Manager observes an Employee. Suppose a change in salary occurs in Employee. It then notifies the observers using setChanged() and... | http://www.devx.com/tips/Tip/22592 | CC-MAIN-2015-18 | en | refinedweb |
12 September 2012 08:53 [Source: ICIS news]
KOLKATA (ICIS)--Plans to revive debt-ridden Madras Fertilizer Ltd (MFL) are being stalled as its Iranian stakeholder opposes a loan-to-equity scheme, in which the Indian government will end up taking a bigger stake in the company, a government official from India said on Wedn... | http://www.icis.com/Articles/2012/09/12/9594686/indias-madras-fertilizer-revival-plan-stalled-by-iran.html | CC-MAIN-2015-18 | en | refinedweb |
The new Kernel Transaction Manager (KTM) in Windows Vista allows you to perform a number of file and/or registry operations, and have them take effect in an indivisible ("all or nothing") fashion called a "transaction".
Although invisible to the end-user, adding transaction support to the Windows registry and file syst... | http://www.codeproject.com/Articles/17917/Vista-KTM-Transaction-Management-in-Vista-and-Beyo?fid=394277&df=10000&mpp=10&noise=1&prof=True&sort=Position&view=Quick&spc=Relaxed | CC-MAIN-2015-18 | en | refinedweb |
A quick peak at the Applet Viewer Window displaying the applets in large icon mode.
Now viewing in details view. Notice the name and description displayed for each applet.
And finally notice an applet that has just been launched by double clicking its icon. This demonstrates the applets are really being hosted by the a... | http://www.codeproject.com/Articles/6105/Enumerate-and-Host-Control-Panel-Applets-using-C?fid=33551&df=90&mpp=25&noise=1&prof=True&sort=Position&view=Quick&spc=Relaxed&select=2067185&fr=1 | CC-MAIN-2015-18 | en | refinedweb |
Figure 1
Figure 2
Welcome to my very first article (Thanks to Marc Clifton & others for guidelines to writing articles on CP!). *Takes deep breath* I hope it conforms to the CP guidelines! The article is about showing how to solve a dilemma that I experienced when I was developing an application, and it governs the usa... | http://www.codeproject.com/Articles/9455/Hacking-the-Combo-Box-to-give-it-horizontal-scroll?msg=1094668 | CC-MAIN-2015-18 | en | refinedweb |
Centralised storage, file sharing and storage consolidation with iSCSI and Fibre Channel technology
Next generation scale-out NAS featuring up to 4PB in a single namespace, industry-leading TCO and policy-based data reduction.
Optimize file storage with EqualLogic FS7600 and FS7610 NAS appliances and the scalability, f... | http://www.dell.com/ba/business/p/network-file-storage/product-compare | CC-MAIN-2015-18 | en | refinedweb |
Hi,
I’m running into an issue with brep.MergeCoplanarFaces
The attached black polysurface is slightly kinked, but apparently enough to allow for the 2 faces to be regarded coplanar.
However after merging the faces the trimming edges are out of tolerance:
If I brep.Repair the merged brep I do get correct trimming edges,... | https://discourse.mcneel.com/t/brep-mergecoplanarfaces-out-of-tolerance/64329 | CC-MAIN-2022-33 | en | refinedweb |
[Solved] Wrong cosine? Why?
Hello everybody. I would need to calculate the cosine of an angle. I used the math.cos () function, but the result I am getting is wrong. can anyone tell me why? thank you.
I am attaching the text:
import math print(math.cos(60))
in the console, as a result, is:
-0.9524129804151563
Otherwise... | https://forum.omz-software.com/topic/6961/solved-wrong-cosine-why/1 | CC-MAIN-2022-33 | en | refinedweb |
Numerical Variables
Numerical variables, also known as quantitative variables, are the type of data that represent something measurable or countable like frequency, measurement, etc. Another attribute of numerical variables is that they are always numbers that can be placed in a meaningful order with consistent interva... | https://practicaldev-herokuapp-com.global.ssl.fastly.net/thalesbruno/numerical-variables-169c | CC-MAIN-2022-33 | en | refinedweb |
GREPPER
SEARCH
WRITEUPS
DOCS
INSTALL GREPPER
All Languages
>>
PHP
>>
validate phone number with dial code laravel 8
“validate phone number with dial code laravel 8” Code Answer’s
phone number validation, laravel
php by
Handsome Hamerkop
on Oct 24 2021
Comment
10
'phone' => 'required|regex:/(01)[0-9]{9}/'
Source:
stacko... | https://www.codegrepper.com/code-examples/php/validate+phone+number+with+dial+code+laravel+8 | CC-MAIN-2022-33 | en | refinedweb |
Passwords¶
Vapor includes a password hashing API to help you store and verify passwords securely. This API is configurable based on environment and supports asynchronous hashing.
Configuration¶
To configure the Application's password hasher, use
app.passwords.
import Vapor app.passwords.use(...)
Bcrypt¶
To use Vapor's ... | https://docs.vapor.codes/fr/security/passwords/ | CC-MAIN-2022-33 | en | refinedweb |
Description
Sched fix for proc holding locks. the proc was added back to the queue, but the queue was not re-added to the runq
Attachments
Attachments
Issue Links
- blocks
HBASE-16744 Procedure V2 - Lock procedures to allow clients to acquire locks on tables/namespaces/regions
- Closed
- is depended upon by
HBASE-16813... | https://issues.apache.org/jira/browse/HBASE-16735 | CC-MAIN-2022-33 | en | refinedweb |
Panja Patchi Sastram Software [EXCLUSIVE] Download
Panja Patchi Sastram Software Download
Panchapakshi Software Downloads and Software : Pentimento.
Vergaala Shathra Sutra: The Vedic Shatr Agama (From Elements and Panjapakshi) ||
Free download · Panja Patchi Sastram Software Downloadlexon_35. Yvaneswara sastram softwa... | https://haitiliberte.com/advert/panja-patchi-sastram-software-exclusive-download/ | CC-MAIN-2022-33 | en | refinedweb |
Outputs commands to the terminal.
Curses Library (libcurses.a)
#include <curses.h>
int putp(const char *str);
int tputs(const char *str, int affcnt, int (*putfunc)(int));
These subroutines output commands contained in the terminfo database to the terminal.
The putp subroutine is equivalent to tputs(str, 1, putchar). Th... | http://ps-2.kev009.com/tl/techlib/manuals/adoclib/libs/basetrf2/putp.htm | CC-MAIN-2022-33 | en | refinedweb |
Extending Iridium With Custom Step Definitions
Iridium makes it easy for developers to build in their own custom step definitions, removing the need to write custom code gluing Cucumber and WebDriver together.
Join the DZone community and get the full member experience.Join For Free.
Fortunately, developers can take ad... | https://dzone.com/articles/extending-iridium-with-custom-step-definitions?utm_medium=feed&utm_source=feedpress.me&utm_campaign=Feed%3A+dzone%2Fwebdev | CC-MAIN-2022-33 | en | refinedweb |
MVC with configurable controller
By: Charles
When application gets large you cannot stick to bare bone MVC. You have to extend it somehow to deal
with these complexities. One mechanism of extending MVC that has found widespread adoption is based on a configurable controller Servlet. The MVC
with configurable controller... | https://java-samples.com/showtutorial.php?tutorialid=351 | CC-MAIN-2022-33 | en | refinedweb |
TextBlob is a Python library that can be used to process textual data. Some of the tasks where it is good to use are sentiment analysis, tokenization, spelling correction, and many other natural language processing tasks. In this article, I’ll walk you through a tutorial on TextBlob in Python.
What is TextBlob in Pytho... | https://thecleverprogrammer.com/2021/05/07/textblob-in-python-tutorial/ | CC-MAIN-2022-33 | en | refinedweb |
TorchMetrics in PyTorch Lightning¶
TorchMetrics was originally created as part of PyTorch Lightning, a powerful deep learning research framework designed for scaling models without boilerplate.
Note
TorchMetrics always offers compatibility with the last 2 major PyTorch Lightning versions, but we recommend to always kee... | https://torchmetrics.readthedocs.io/en/v0.8.0/pages/lightning.html | CC-MAIN-2022-33 | en | refinedweb |
Many methods exist in java.lang.Character class used for different purposes. Some methods are useful for checking the character is a digit or letter or is a uppercase letter or lowercase letter etc. At the sametime, some methods can modify the case of the letters from uppercase to lowercase or vice versa.
Now the prese... | https://way2java.com/java-lang/class-character/java-character-comparetocharacter-c1-example/ | CC-MAIN-2022-33 | en | refinedweb |
USBH_Ep_TypeDef Struct Reference
USB HOST endpoint status data.
#include <em_usb.h>
USB HOST endpoint status data.
A host application should not manipulate the contents of this struct.
Field Documentation
◆ setup
A SETUP package.
◆ setupErrCnt
Error counter for SETUP transfers.
◆ epDesc
Endpoint descriptor.
◆ parentDev... | https://docs.silabs.com/gecko-platform/3.1/middleware/api/struct-u-s-b-h-ep-type-def | CC-MAIN-2022-33 | en | refinedweb |
How to Run Hornet On Kubernetes
This page explains how to run IOTA mainnet Hornet nodes in a Kubernetes (K8s) environment. Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services that facilitates both declarative configuration and automation. It has a large, rapidly ... | https://wiki.iota.org/introduction/how_tos/mainnet_hornet_node_k8s | CC-MAIN-2022-33 | en | refinedweb |
Python is a powerful programming language with a robust library of functions and other resources for faster development. Its inbuilt functions are a great support to any Python Programmer. Sometimes it is easier to write your own functions. If in-built functions are not sufficient to implement your logic you have to cr... | https://csveda.com/python-user-defined-functions/ | CC-MAIN-2022-33 | en | refinedweb |
OpenGL Programming/Modern OpenGL Tutorial 03
Attributes: pass additional vertex information[edit | edit source]) { cerr << "Could not bind attribute " << attribute_name << endl; return false; }
Now in the
render | edit source].r, f_color.g, f_color.b, | edit source] | edit source]) { cerr << "Could not bind uniform " <... | https://en.wikibooks.org/wiki/OpenGL_Programming/Modern_OpenGL_Tutorial_03 | CC-MAIN-2022-33 | en | refinedweb |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.