text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
writing. The stdlib has an obscure module bdb (basic debugger) that is used in both pdb (python debugger) and idlelib.Debugger. The latter can display global and local variable names. I do not know if it does anything other than rereading globals() and locals(). It only works with a file loaded in the editor, so it po...
https://tech.queryhome.com/4209/collecting-variable-assignments-through-settrace
CC-MAIN-2018-22
en
refinedweb
This might be a something simple here, but I'm still learning python. Basically I'm trying to pull an IP address from a hostname, which works fine, but if the host does not resolve it errors. I have it now so that once it resolves the IP address it populates it to a text box, so what i'm trying to do here is if it fail...
https://codedump.io/share/YGUWHXiqDpJ9/1/how-to-return-quothost-is-not-resolvablequot-message-after-gethostbyname-failiure
CC-MAIN-2018-22
en
refinedweb
Id like to request that plugins have access to the text someone inputs into the quickpanel. Im specifically interested in addressing this issue: but in general, it seems like a natural feature for plugins to have (unless Im missing something) a quickpanel textbox is a view widget and is accessible via plugins, though t...
https://forum.sublimetext.com/t/feature-request-plugins-access-quickpanel-text/26804/3
CC-MAIN-2018-22
en
refinedweb
Devise MailChimp Devise MailChimp adds a MailChimp option to devise that easily enables users to join your mailing list when they create an account. Delayed Job is used automatically if your project uses it, and the mapping between list names and list ids is cached automatically. Getting started In your Gemfile, add de...
https://www.rubydoc.info/github/jcnnghm/devise_mailchimp/master
CC-MAIN-2018-22
en
refinedweb
Type not found : FlxText Hi All! I just got started with Flixel, and I'm already encountering an issue with the "Hello World!" tutorial. () So I followed the steps (using sublime text on Mac OS X) by adding the line with FlxText, but when I tried to compile the project with flash/neko/html5 I got this error: source/Pla...
http://forum.haxeflixel.com/topic/544/type-not-found-flxtext
CC-MAIN-2018-22
en
refinedweb
reason why I bring this up, is that I am answering a question on the CCL mailing list on how to convert a XYZ file into an adjacency matrix, and my Groovy Cheminformatics did not have a section on graph matrices yet. And I just ran into the issue that the CDK XYZReader only accepts an IChemFile. Then I realized the bo...
https://chem-bla-ics.blogspot.nl/2011/03/
CC-MAIN-2018-22
en
refinedweb
I think I have a quite simple question. I'm working on a web app with java and glassfish server where users can register and after they do, I want to send them an email with an activation link. Is it possible to send mails with the java mail API without an external smtp server? Since it is not necessary for users to an...
https://codedump.io/share/jjsfwzj0jm3i/1/java-sending-email-with-activation-link
CC-MAIN-2018-22
en
refinedweb
Is there any possibility to create custom action in admin page for django UserModel? I want automatize adding user to group (like adding him to staff, set some extra values, etc.), and of course create actions that take these changes back. Thanks for your help. Import User in your admin.py unregister it, create new Mod...
https://codedump.io/share/owu5278cQsnB/1/adding-custom-action-to-usermodel39s-admin-page
CC-MAIN-2018-22
en
refinedweb
At my current job, one big topic of conversation lately has been how we are passing in our configuration values to our Integration tests. I want to show you how you can use the *.runsettings file to inject in configuration values to our NUnit tests, make your tests more configurable, and make handling configuration val...
https://get-testy.com/nunit-runsettings-file/
CC-MAIN-2018-22
en
refinedweb
Error Handling Strategies Error Handling Strategies Learn about the four main error handling strategies- try/catch, explicit returns, either, and supervising crashes- and how they work in various languages. Join the DZone community and get the full member experience.Join For Free Maintain Application Performance with r...
https://dzone.com/articles/error-handling-strategies
CC-MAIN-2018-22
en
refinedweb
-- 7 April 2004 -- Leading the Web to its full potential, the World Wide Web Consortium (W3C) today released the Document Object Model Level 3 Core and Load and Save specifications as W3C Recommendations. The. Loading a DOM implementation becomes easier with DOM Level 3, and applications can load them according to the...
http://www.w3.org/2004/03/dom-level-3-pr.html.en
CC-MAIN-2016-18
en
refinedweb
So I am creating a Netflix based application for a school assignment. So yes this is homework. I created a userinterface that looks like the following Code : import java.io.IOException; import java.util.Queue; import java.util.Scanner; public class UserInterface extends Users { public UserInterface(String userName, dou...
http://www.javaprogrammingforums.com/%20object-oriented-programming/19493-call-class-method-another-class-printingthethread.html
CC-MAIN-2016-18
en
refinedweb
Skip navigation links java.lang.Object com.bea.wli.config.resource.BaseQuery com.bea.wli.config.resource.DependencyQuery public class DependencyQuery Class for making a query to get the Parents/Childs based on the dependency graph established by the references from one resource to another. public static final long seri...
http://docs.oracle.com/cd/E23943_01/apirefs.1111/e15033/com/bea/wli/config/resource/DependencyQuery.html
CC-MAIN-2016-18
en
refinedweb
This chapter describes the schema objects that you use in the Oracle Database Java environment and: Unlike a conventional Java virtual machine (JVM), which compiles and loads Java files, the the Oracle JVM, you must use the loadjava tool to create a Java class schema object from the class file or the source file and lo...
http://docs.oracle.com/cd/B19306_01/java.102/b14187/cheleven.htm
CC-MAIN-2016-18
en
refinedweb
FWIW you only need to construct a ConnectionFactory instance. So you don't need to mess around creating Topic/QueueSessions or Topic/QueueConnections or any of that stuff. Literally alll you need to do is something like... import org.exolab.jms.client.JmsTopicConnectionFactory; import org.apache.commons.messenger.Sessi...
http://mail-archives.apache.org/mod_mbox/commons-user/200301.mbox/%3C034001c2b80c$1040dd80$9865fea9@spiritsoft.com%3E
CC-MAIN-2016-18
en
refinedweb
As described in Wikipedia the BruteForce algorithm consist of Briefly, a brute force program would solve a puzzle by placing the digit "1" in the first cell and checking if it is allowed to be there. If there are no violations (checking row, column, and box constraints) then the algorithm advances to the next cell, and...
http://www.dreamincode.net/forums/topic/195836-sudoku-ii-the-brute-force/page__pid__1145093__st__0
CC-MAIN-2016-18
en
refinedweb
App::Netdisco::Manual::Developing - Notes for contributors This document aims to help developers understand the intent and design of the code within Netdisco. Patches and feedback are always welcome :-) First do a normal App::Netdisco install into a dedicated user's home, as per the documentation. Then: su - netdisco &...
http://search.cpan.org/~oliver/App-Netdisco-2.024004/lib/App/Netdisco/Manual/Developing.pod
CC-MAIN-2016-18
en
refinedweb
This article discusses how to create a 3D tab control for WPF. It will go through 3D rotation and camera calculations as well as show how to maintain a large set of controls in a smaller set of UI visualisers. Although a fair portion of the code for this article relates to the creation of 3D meshes, I'll not go into de...
http://www.codeproject.com/Articles/49949/WPF-3D-Tab-Carousel
CC-MAIN-2016-18
en
refinedweb
If you look at a lot of flash games they have something where whenever you hit something to get points a flash of points pops up. This is an excellent effect and really adds some flair to your flash games. I use this a lot and decided to make it into a reusable class. A great example of it in use is bejeweled 2, when y...
http://www.dreamincode.net/forums/topic/109988-creating-a-point-flash-like-bejeweled-2/page__pid__1123410__st__0
CC-MAIN-2016-18
en
refinedweb
Issues ZF-2850: CLONE -namespace changed to inputNamespace (see trackers 2280 and 2460) - Documentation not up to date Description I had options in zend_filter_input which contained more default namespaces. Upgrading to 1.0.4 broke my unit tests because of namespace becoming inputNamespace. I've changed the problem in ...
http://framework.zend.com/issues/browse/ZF-2850?focusedCommentId=19820&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel
CC-MAIN-2016-18
en
refinedweb
in reply to Difference between use Module::Name and use Module::Name qw /method1 method2/ @EXPORT = qw//; @EXPORT_OK = qw/check_digit is_valid valid_chars/; [download] so if you wanna import is_valid you need to tell explicitly. see also How to Export > Is it somehow better to use the second statement if I use only "is...
http://www.perlmonks.org/index.pl?node_id=1015841
CC-MAIN-2016-18
en
refinedweb
Except for the function names and arguments, thread specific data is the same for Solaris as it is for POSIX. The synopses for the Solaris functions are given in this section. thr_keycreate(3T) allocates a key that is used to identify thread-specific data in a process. (For POSIX threads, see "pthread_key_create(3T)".)...
http://docs.oracle.com/cd/E19620-01/805-5080/sthreads-86486/index.html
CC-MAIN-2016-18
en
refinedweb
I'd like to use mc as a search shortcut for metacritic.com from Google Chrome. I set up the following search URL for the shortcut: Unfortunately, when I search for patrician iii as follows mc patrcian iii Chrome produces this query, which metacritic misinterprets to produce a useless set of unrelated results: Metacriti...
http://superuser.com/questions/281934/forcing-s-to-escape-spaces-with-plus-instead-of-percent-twenty
CC-MAIN-2013-48
en
refinedweb
Optimize with a SATA RAID Storage Solution Range of capacities as low as $1250 per TB. Ideal if you currently rely on servers/disks/JBODs Modularization makes programming possible. Throughout the history of computing, a parade of organizational devices—the high-level language, the subroutine, the object—has allowed us ...
http://www.javaworld.com/javaworld/jw-07-2004/jw-0705-aop.html
CC-MAIN-2013-48
en
refinedweb
and lib/site-python. import sys import os import platform import site if 'Windows' in platform.platform(): SUFFIXES = [ '', 'lib/site-packages', ] else: SUFFIXES = [ 'lib/python%s/site-packages' % sys.version[:3], 'lib/site-python', ] print 'Path prefixes:' for p in site.PREFIXES: print ' ', p for prefix in sorted(set...
http://pymotw.com/2/site/index.html
CC-MAIN-2013-48
en
refinedweb
23 July 2010 17:33 [Source: ICIS news] TORONTO (ICIS news)--German business confidence marked its largest monthly increase in July since the country’s reunification in 1990, largely driven by improved export prospects, a research institute said on Friday. Munich-based Ifo institute said its monthly business climate ind...
http://www.icis.com/Articles/2010/07/23/9379005/german-business-confidence-jumps-on-export-prospects-survey.html
CC-MAIN-2013-48
en
refinedweb
#include <Thyra_MultiVectorFileIOBase.hpp> Inheritance diagram for Thyra::MultiVectorFileIOBase< Scalar >: The concept of a file is every general and really can be implemented as any type of object data base that is keyed on a string name (i.e. fileNameBase). In that sense, this interface is really an interface to a ge...
http://trilinos.sandia.gov/packages/docs/r10.2/packages/thyra/doc/html/classThyra_1_1MultiVectorFileIOBase.html
CC-MAIN-2013-48
en
refinedweb
Type: Posts; User: rbmazter I am new programmer. In the first place I really like my job because they gave me project and then when I finished it they give me a new task that was fixing a bugs of others work. The programmer who... I separate my interface. I am using MVC 3 . So far I already solve the problem in sending...
http://www.webdeveloper.com/forum/search.php?s=751780639422b29f83c10d974581c1ba&searchid=2426589
CC-MAIN-2013-48
en
refinedweb
When working with from a Java environment, one can choose between the Thrift client or using the Hive JDBC-like driver. Both have their pros and cons but no matter the choice, Spring and SHDP supports both of them. SHDP provides a dedicated namespace element for starting a Hive server as a Thrift service (only when usi...
http://docs.spring.io/spring-data/hadoop/docs/1.0.0.RELEASE/reference/html/hive.html
CC-MAIN-2013-48
en
refinedweb
CDI Dependency Injection - An Introductory Tutorial Part 1 - Java EE By default, CDI would look for a class that implements the ATMTransport interface, once it finds this it creates an instance and injects this instance of ATMTransport using the setter method setTransport. If we only had one possible instance of ATMTra...
http://java.dzone.com/articles/cdi-di-p1?page=0,1&%24Version=1&%24Path=%2F
CC-MAIN-2013-48
en
refinedweb
Construct a preconditioner using a LDU dcomposition of a block 2x2 matrix. More... #include <Teko_LU2x2PreconditionerFactory.hpp> Construct a preconditioner using a LDU dcomposition of a block 2x2 matrix. This produces a preconditioner using the block-LDU decomposition of the matrix. The general assumption made is that...
http://trilinos.sandia.gov/packages/docs/r10.8/packages/teko/doc/html/classTeko_1_1LU2x2PreconditionerFactory.html
CC-MAIN-2013-48
en
refinedweb
Hi Jason, I don't know Python, but let me share some thoughts that you might find useful. First, a few questions about your manual translations. Are your functions curried? For example, can I partially apply zipWith? Also, you put a "thunk" around things like "cons(...)" --- should it not be the arguments to "cons" tha...
http://www.haskell.org/pipermail/haskell-cafe/2008-October/049094.html
CC-MAIN-2013-48
en
refinedweb
Haskell Weekly News: January 30, 2006 Greetings, and thanks for reading the 22nd issue of HWN, a weekly newsletter for the Haskell community. Each Monday, new editions are posted to [1]the Haskell mailing list and to [2]The Haskell Sequence. [3]RSS is also available. 1. 2. 3. New Releases * C-- Frontend. Robert Dockins...
http://www.haskell.org/pipermail/haskell/2006-January/017510.html
CC-MAIN-2013-48
en
refinedweb
#include "stdafx.h" using namespace System; int main(array<System::String ^> ^args) { // BinarySearch() function: This uses a binary search algorithm to find the index // position of a given element in the entire array or within a range of elements // inside a 1-Dimensional array Console::WriteLine(L"This is the first ...
http://forums.devshed.com/c-programming-42/question-about-error-for-newnames-list-in-c-952206.html
CC-MAIN-2013-48
en
refinedweb
Teleconference.2008.08.06/Agenda From OWL Call in details When joining please don't identify yourself verbally; instead, Identify Yourself to ZAKIM on IRC - Date of Call: Wednesday Augusternardo Cuenca Grau (Scribe List) - Link to Agenda: Agenda - Admin (20 min) - Roll call - Agenda amendments? - PROPOSED: Accept Previ...
http://www.w3.org/2007/OWL/wiki/index.php?title=Teleconference.2008.08.06/Agenda&oldid=10492
CC-MAIN-2013-48
en
refinedweb
...one of the most highly regarded and expertly designed C++ library projects in the world. — Herb Sutter and Andrei Alexandrescu, C++ Coding Standards The main concept is the Actor. An Actor is a model of the Polymorphic Function Object concept (that can accept 0 to N arguments (where N is a predefined maximum). An Ac...
http://www.boost.org/doc/libs/1_49_0/libs/phoenix/doc/html/phoenix/inside/actor.html
CC-MAIN-2013-48
en
refinedweb
A while back, I was assigned to work on a project on which I needed to integrate with another JMS system. As I searched the web for some detailed tutorials, I didn't find any detailed tutorial that could help me. Eventually I figured out all the pieces I had the design and implement in order to get such JMS-to-JMS brid...
http://www.codeproject.com/Articles/35957/Implementing-Jms-to-Jms-Bridge-using-ActiveMQ?fid=1539904&df=90&mpp=10&sort=Position&spc=None&noise=1&prof=True&view=Expanded
CC-MAIN-2013-48
en
refinedweb
#include <iostream> using namespace std; class Burger { private: double patty; double bun; double cheese; public: Burger(); double getPatty(); double getBun(); double getCheese(); void setPatty(double p); void setBun(double b); void setCheese(double c); double hamburgerCalc(Burger b); double cheeseburgerCalc(Burger b);...
http://www.daniweb.com/software-development/cpp/threads/442497/error-not-declared-in-scope
CC-MAIN-2013-48
en
refinedweb
The. I have researched the list of packages that needed a recompilation, and in some cases I performed an upgrade at the same time (qt5 went up to 5.9.3, poppler synced to the 0.62.0 in Slackware-current, qtav went up to 1.12.0). The 64bit packages have already been uploaded but if you are running 32bit Slackware-curre...
https://alien.slackbook.org/blog/rebuilt-packages-for-plasma5-ktown/
CC-MAIN-2020-16
en
refinedweb
Ural 1654 Cipher Message 1654. Cipher Message Time limit: 1.0 second Memory limit: 64 MB Müller tried to catch Stierlitz red-handed many times, but always failed because Stierlitz could ever find some excuse. Once Stierlitz was looking through his email messages. At that moment, Müller entered secretly and watched a me...
https://blog.csdn.net/Modestr/article/details/105127713
CC-MAIN-2020-16
en
refinedweb
I'm beginning python and I'm trying to use a two-dimensional list, that I initially fill up with the same variable in every place. I came up with this: def initialize_twodlist(foo): twod_list = [] new = [] for i in range (0, 10): for j in range (0, 10): new.append(foo) twod_list.append(new) new = [] It gives the desire...
https://pythonpedia.com/en/knowledge-base/2397141/how-to-initialize-a-two-dimensional-array-in-python-
CC-MAIN-2020-16
en
refinedweb
Announcing Pulumi Azure Provider 2.0 We are happy to announce the release of a new major version of the Pulumi Azure provider. Pulumi Azure 2.0 is based on the 2.0 release of the upstream provider and brings several improvements and breaking changes. This article outlines the most significant changes: - Improvements in...
https://www.pulumi.com/blog/pulumi-azure-2-0/
CC-MAIN-2020-16
en
refinedweb
TL;DR – C# array refers to a collection of variables that have the same type. Contents Creating Arrays in C# C# arrays hold variables of the same type. When you create an array, you specify the type (for instance, int or string) of data it will accept. Note: C# arrays can hold any elements, even other arrays. It is pos...
https://www.bitdegree.org/learn/c-sharp-array
CC-MAIN-2020-16
en
refinedweb
From: Jeff Garland (jeff_at_[hidden]) Date: 2001-07-20 07:44:47 Steve wrote: > You can specify them in your forward header, and not in your implementation > header. That's what I do for poolfwd.hpp: > > //map_fwd.hpp > namespace std { > template <class Key, > class T, > class Compare = std::less<T>, > class Alloc = std...
https://lists.boost.org/Archives/boost/2001/07/14887.php
CC-MAIN-2020-16
en
refinedweb
Properties¶ doublex supports stub and spy properties in a pretty easy way in relation to other frameworks like python-mock. That requires two constraints: - It does not support “free” doubles. ie: you must give a collaborator in the constructor. - collaborator must be a new-style class. See the next example. Stubbing p...
https://python-doublex.readthedocs.io/en/latest/properties.html
CC-MAIN-2020-16
en
refinedweb
Combine the Neural with the Normal. In this document I will demonstrate density mixture models. The goal for me was to familiarize myself with tensorflow a bit more but it grew to a document that compares models too. The model was inspired from this book by Christopher Bishop who also wrote a paper about it in 1994. I’...
https://koaning.io/posts/feed-forward-posteriors/
CC-MAIN-2020-16
en
refinedweb
Draft Shape2DView/ru Description The Draft Shape2DView tool produces a 2D projection from a selected 3D solid object such as those created with the Part, PartDesign, and Arch Workbenches. The resulting projection is a Draft object and is placed in the 3D view. This object can be displayed on a TechDraw Workbench page, ...
https://wiki.freecadweb.org/index.php?title=Draft_Shape2DView/ru&printable=yes
CC-MAIN-2020-16
en
refinedweb
It’s a new year and a new release for Panda3D! Version 1.10.0 is one of our most ambitious releases to date and brings with it many enhancements, features, bugfixes, and various other improvements. Let’s jump right in, shall we? Rebranding You may have noticed our first change before even downloading the SDK: We now ha...
https://www.panda3d.org/blog/sdk-1-10-0-release/
CC-MAIN-2020-16
en
refinedweb
Hi, Thank you for your suggestion. It's a better approach. Though putting the check in __call_console_drivers() does fix the problem, it's not satisfactory. Because, until cpu_online_map is set up, log_buf is flushed without printing. So I put the check in release_console_sem(). How about this fix? From: David Mosberge...
http://www.gelato.unsw.edu.au/archives/linux-ia64/0111/2507.html
CC-MAIN-2020-16
en
refinedweb
Hide Forgot Description of problem: This change * Sat Dec 22 2007 Sergio Pascual <sergiopr at fedoraproject.com> 0.9-4 - Arch dependent gnu/bzconfig.h moved to %%libdir/blitz/include/blitz/gnu breaks as blitz/bzconfig is umodified: #elif defined(__GNUC__) /* GNU gcc compiler */ #include <blitz/gnu/bzconfig.h> and /usr/...
https://partner-bugzilla.redhat.com/show_bug.cgi?format=multiple&id=450999
CC-MAIN-2020-16
en
refinedweb
Hello world, I want to use IntelliJ to run the Java software I have here: The software has 2 folders: samples/ source/ It appears that the Java code in samples/ depends on source/ I want to know how to create a project which allows me to run the code in samples/ I poked at it a bit using the menus in IntelliJ and quick...
https://intellij-support.jetbrains.com/hc/en-us/community/posts/206169519-Newb-how-to-combine-2-folders-into-1-project-
CC-MAIN-2020-16
en
refinedweb
NewFunction-macro Counts the number of datasets that begin with the letter F (function datasets) and opens the function's Plot Details dialog box to create a new function named Fn where n is one more than the number of datasets counted. If the FUNCTION.OTP graph template is not opened before executing NewFunction, then...
http://cloud.originlab.com/doc/LabTalk/ref/NewFunction-macro
CC-MAIN-2020-16
en
refinedweb
On Wed, May 14, 2003 at 03:31:08PM +0200, Eric Piel wrote: > Hello, > There is a compile error if not compiling for SMP: > +#ifdef CONFIG_SMP > if (!tasklist_lock.write_lock) > +#endif > read_lock(&tasklist_lock); Yuck. The right way to do this is read_trylock(&tasklist_lock); The observant will have noted: #define wri...
http://www.gelato.unsw.edu.au/archives/linux-ia64/0305/5466.html
CC-MAIN-2020-16
en
refinedweb
#include <wx/nonownedwnd.h> Common base class for all non-child windows. This is the common base class of wxTopLevelWindow and wxPopupWindow and is not used directly. Currently the only additional functionality it provides, compared to base wxWindow class, is the ability to set the window shape. If the platform support...
http://docs.wxwidgets.org/trunk/classwx_non_owned_window.html
CC-MAIN-2017-43
en
refinedweb
I've set up listeners in my application to catch SIGTERM, SIGINT and SIGUSR2: # kill process.on 'SIGTERM', -> killExecutors 'SIGTERM' # ctrl + c process.on 'SIGINT', -> killExecutors 'SIGINT' # nodemon signal process.on 'SIGUSR2', -> killExecutors 'SIGUSR2' FROM node:4.4.7 MAINTAINER Newborns <newborns@versul.com.br> C...
https://codedump.io/share/xrCCPOSxLLT9/1/docker-sigterm-not-being-delivered-to-nodejscoffee-app-when-started-with-flags
CC-MAIN-2017-43
en
refinedweb
Red Hat Bugzilla – Bug 91677 Griffin Powermate needs additional info in usb.handmap Last modified: 2014-03-16 22:36:28 EDT From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4b) Gecko/20030508 Description of problem: The Griffin Powermate needs additional info in /etc/hotplug/usb/handmap to ...
https://bugzilla.redhat.com/show_bug.cgi?id=91677
CC-MAIN-2017-43
en
refinedweb
See also: IRC log <scribe> Scribe: EdRice <Norm> ht, wrt xmlFunctions-34 do you concur that the ball wrt our draft is in your court? <ht> Yes, sigh. <ht> Mea culpa <DanC> I'm OK to scribe 25 Apr Zakim +1.604.534.aaa is Dave Dan will scribe next week no regrets for next week. Resolution: Minutes approved as-is from last...
http://www.w3.org/2006/04/18-tagmem-minutes
CC-MAIN-2015-06
en
refinedweb
public class ConnectionHolder extends ResourceHolderSupport DataSourceTransactionManagerbinds instances of this class to the thread, for a specific DataSource. Inherits rollback-only support for nested JDBC transactions and reference count functionality from the base class. Note: This is an SPI class, not intended to b...
http://docs.spring.io/spring/docs/3.2.2.RELEASE/javadoc-api/org/springframework/jdbc/datasource/ConnectionHolder.html
CC-MAIN-2015-06
en
refinedweb
#include <coherence/util/TypedCollections.hpp> Inherits WrapperCollections::AbstractWrapperListIterator. List of all members. The type of the handles returned by this iterator, e.g. Create a new TypedListIterator over the given ListIterator. The typed version of the method Iterator::next. Return the next element in the...
http://docs.oracle.com/cd/E24290_01/coh.371/e22845/classcoherence_1_1util_1_1_typed_collections_1_1_typed_list_iterator.html
CC-MAIN-2015-06
en
refinedweb
05 August 2010 14:43 [Source: ICIS news] SINGAPORE (ICIS)--Rabigh Refining and Petrochemical Co (Petro Rabigh) has shut down its polypropylene (PP) plant in ?xml:namespace> “The company’s propylene stocks are sharply down following an outage early this week at its fluid catalytic cracker (FCC),” said one of the sources...
http://www.icis.com/Articles/2010/08/05/9382662/petro-rabigh-shuts-polypropylene-plant-on-propylene-shortage.html
CC-MAIN-2015-06
en
refinedweb
Painless AOP with Groovy Cedric Beust described Aspect Oriented Programming (AOP) as "a great idea that will remain the privilege of a few expert developers". For some, even with Spring and JBoss, the barriers to entry remain too high. Fortunately, this is an area where the dynamic languages may be able to help out. Th...
http://www.infoq.com/articles/aop-with-groovy/
CC-MAIN-2015-06
en
refinedweb
Periodically we get questions about how to extract and use an image compiled as an embedded resource in an assembly. It’s easily done using the Bitmap or Icon constructor that takes a type and string parameters. The documentation for these constructors describes how they work, but I’ll summarize here. The string parame...
http://blogs.msdn.com/b/winformsue/archive/2006/11/29/using-images-embedded-as-resources.aspx
CC-MAIN-2015-06
en
refinedweb
C-Span Posts Full Archives Online 115." Not for Long (Score:2) I predict this goes away pretty quickly- as in a unanimous resolution to cut the project's funding. Re:Not for Long (Score:5, Informative) Re:Not for Long (Score:5, Insightful) C-SPAN is a private non-profit and receives no government funding. True enough, ...
http://news.slashdot.org/story/10/03/16/2029242/c-span-posts-full-archives-online
CC-MAIN-2015-06
en
refinedweb
HTML Export The are many ways of writing HTML and it is impossible to please everyone. The exporter has been extensively rewritten several times in order to provide HTML code as clean as possible and there are a number of options, described below, controlling document export. In addition to the XHTML exporter there is ...
http://www.abisource.com/help/en-US/howto/howtoexporthtml.html
CC-MAIN-2015-06
en
refinedweb
MSDN Blogs Microsoft Blog Images More ... MSDN FLASH IRELAND - INTERNATIONAL RESOURCES - 17 NOVEMBER 2008 Common Tasks Blog Home About RSS for comments RSS for posts Search Search this blog Search all blogs .NET Framework academic BizSpark cool web sites designer Developer dublin events Ireland ISV Microsoft MSDN Flash...
http://blogs.msdn.com/b/ireland/archive/2008/11/19/msdn-flash-ireland-international-resources-17-november-2008.aspx
CC-MAIN-2015-06
en
refinedweb
Updated: Currently,: It’s no secret that Microsoft Dynamics NAV customers and partners have needed an ad hoc reporting solution that’s easy to use. Well, now we have one! We’ve been working in cooperation with Jet Reports, Inc. on the development of an Excel-based reporting solution. The result is Jet Reports Express f...
http://blogs.msdn.com/b/nav/archive/2011/06.aspx
CC-MAIN-2015-06
en
refinedweb
On Wed, Oct 27, 2010 at 3:04 AM, Christian Schneider <chris@die-schneider.net> wrote: > Hi Benson, > > I just checked the source code of jms transport. It seems that the is not > even a property useMessageIDAsCorrealationID in JmsConfiguration. The > JmsOldConfigHolder does not read this property. > So this does not se...
http://mail-archives.apache.org/mod_mbox/cxf-dev/201010.mbox/%3CAANLkTikXa7oG35+6RrRGWLdGbWM-eSx32svZYGzJn6CR@mail.gmail.com%3E
CC-MAIN-2015-06
en
refinedweb
Hi we discovered a problem with the use of the ZSI and our wsdl. Namespaces were not correctly handeled. Our wsdl is added in attachement. Therefore we created a small patch in the TC.py: def get_name(self, name, objid): ''' Paramters: name -- element tag objid -- ID type, unique id ''' if type(name) is tuple: return n...
http://sourceforge.net/p/pywebsvcs/patches/38/
CC-MAIN-2015-06
en
refinedweb
So I was going to dive right in and do a part 2 on the WPF ListView tutorial from last week, but as I was writing the code I realized that a lot of it relies on some new and very different constructs that WPF provides to developers. Two of these are deep enough topics on their own that I thought it would be a good idea...
http://tech.pro/tutorial/745/wpf-tutorial-introduction-to-dependency-properties
CC-MAIN-2015-06
en
refinedweb
iSuperLightmap Struct ReferenceA super light map. More... [3D] #include <ivideo/txtmgr.h> Inheritance diagram for iSuperLightmap: Detailed DescriptionA super light map. Definition at line 135 of file txtmgr.h. Member Function Documentation Retrieve an image of the whole SLM (for debugging purposes). Add a lightmap to t...
http://www.crystalspace3d.org/docs/online/api-1.0/structiSuperLightmap.html
CC-MAIN-2015-06
en
refinedweb
EXIT(2) BSD System Calls Manual EXIT(2) NAME _exit -- terminate the calling process SYNOPSIS #include <unistd.h> void _exit(int status); DESCRIPTION The _exit() function terminates a process, with the following conse- quences: o All of the descriptors that were open in the calling process are closed. This may entail de...
http://www.manpagez.com/man/2/_exit/
CC-MAIN-2015-06
en
refinedweb
DTD to XML Schema Discussion in 'XML' started by NSB,: - 453 - Ben Jessel - Aug 5, 2004 - Replies: - 1 - Views: - 1,692 - Markus - Nov 23, 2005 [XML Schema] Including a schema document with absent target namespace to a schema with specified tarStanimir Stamenkov, Apr 22, 2005, in forum: XML - Replies: - 3 - Views: - 1,...
http://www.thecodingforums.com/threads/dtd-to-xml-schema.170294/
CC-MAIN-2015-06
en
refinedweb
public class StateChangeEvent extends Object implements Serializable statechange at a node to the StateChangeListener. There is a distinct instance of this event representing each state change at a node. Each event instance may have zero or more state change related exceptions associated with it. The exceptions are of ...
http://docs.oracle.com/cd/E17277_02/html/java/com/sleepycat/je/rep/StateChangeEvent.html
CC-MAIN-2015-06
en
refinedweb
{- | Caution: - Although this module calls 'unsafeInterleaveIO' for you, it cannot take the responsibility from you. Using this module is still as unsafe as calling 'unsafeInterleaveIO' manually. Thus we recommend to wrap the lazy I/O monad into a custom @newtype@ with a restricted set of operations which is considered...
http://hackage.haskell.org/package/lazyio-0.0.3/docs/src/System-IO-Lazy.html
CC-MAIN-2015-06
en
refinedweb
.1-incubating (.tar.gz) PGP SHA MD5 Apache ServiceMix 3.1-incubating Sources (.tar.gz) PGP SHA MD5 Windows Downloads Apache ServiceMix 3.1-incubating (.zip) PGP SHA MD5 Apache ServiceMix 3.1-incubating Sources (.zip) PGP SHA MD5 Web Application Apache ServiceMix Web Application 3.1-incubating (.war) PGP SHA MD5 Bug ** ...
http://servicemix.apache.org/SM/downloads/servicemix-3.1.html
CC-MAIN-2015-06
en
refinedweb
24 May 2012 08:53 [Source: ICIS news] SINGAPORE (ICIS)--PETRONAS is looking at securing a mixture of 10-12 foreign and local partners in its $20bn (€16bn) Refinery and Petrochemical Integrated Development (RAPID) project in ?xml:namespace> RAPID has so far drawn in The massive project that will turn Johor into a region...
http://www.icis.com/Articles/2012/05/24/9563120/malaysias-petronas-eyes-10-12-partners-in-20bn-rapid-project.html
CC-MAIN-2015-06
en
refinedweb
Can Books a list of all the J2ME related books I know about. The computer industry is fast... applications are the wave of the future, and I would have to agree with them. You can do...-The Lab-J2ME A must-have for new and seasoned to J2ME. Excellent Text Example in J2ME ; In J2ME programming language canvas class is u...
http://www.roseindia.net/tutorialhelp/comment/60248
CC-MAIN-2015-06
en
refinedweb
GREPPER SEARCH SNIPPETS USAGE DOCS INSTALL GREPPER All Languages >> Whatever >> In the default daemon configuration on Windows , the docker client must be run elevated to connect. “In the default daemon configuration on Windows , the docker client must be run elevated to connect.” Code Answer In the default daemon conf...
https://www.codegrepper.com/code-examples/whatever/In+the+default+daemon+configuration+on+Windows+%2C+the+docker+client+must+be+run+elevated+to+connect.
CC-MAIN-2021-25
en
refinedweb
@Generated(value="OracleSDKGenerator", comments="API Version: 20160918") public class ListGroupsRequest extends BmcRequest<Void> getBody$, getInvocationCallback, getRetryConfiguration, setInvocationCallback, setRetryConfiguration clone, finalize, getClass, notify, notifyAll, wait, wait, wait public static ListGroupsReq...
https://docs.oracle.com/en-us/iaas/tools/java/1.37.2/com/oracle/bmc/identity/requests/ListGroupsRequest.html
CC-MAIN-2021-25
en
refinedweb
Binary binary literal. Binary Literals in Java This feature is very helpful to bit-oriented systems like processors, network protocols and bitmapped hardware device. Earlier the programmers used to transform from binary to decimal/hexadecimal and vice versa. Using this feature will remove this transformation and chance...
https://www.journaldev.com/603/binary-literals-in-java-java-7-feature
CC-MAIN-2021-25
en
refinedweb
Python package to easily retrain OpenAI's GPT-2 text-generating model on new texts. Project description A simple Python package that wraps existing model fine-tuning and generation scripts for OpenAI GPT-2 text generation model (specifically the "small", 124M hyperparameter version). Additionally, this package allows e...
https://pypi.org/project/gpt-2-simple/
CC-MAIN-2021-25
en
refinedweb
You are browsing the documentation for version 1.2 which is not maintained anymore. If some of your projects are still using this version, consider upgrading. Configuration Reference Configuration Reference¶ The CreateBundle can be configured under the cmf_create key in your application configuration. When using XML yo...
https://symfony.com/doc/1.2/cmf/bundles/create/configuration.html
CC-MAIN-2021-25
en
refinedweb
Decoder for the Automatic Picture Transmission protocolDecoder for the Automatic Picture Transmission protocol All you need is a (relatively inexpensive) software-defined radio and antenna for 137 MHz (following for example these instructions) to receive data from the NOAA weather satellites NOAA 15, NOAA 18 and NOAA 1...
https://juliapackages.com/p/aptdecoder
CC-MAIN-2021-25
en
refinedweb
PMPROCESSPIPE(3) Library Functions Manual PMPROCESSPIPE(3) __pmProcessPipe, __pmProcessPipeClose - support for process execution at the end of a pipe #include "pmapi.h" #include "libpcp.h" int __pmProcessPipe(__pmExecCtl_t **handle, const char *type, int toss, FILE **fp); int __pmProcessPipeClose(FILE *fp); are provide...
https://man7.org/linux/man-pages/man3/__pmProcessPipe.3.html
CC-MAIN-2021-25
en
refinedweb
How to Response.Cookies.Append() in ASP.Net Core 1.1? I am trying to add Globalization to an Intranet application, using a cookie to allow users a culture preference. The middleware is set up and running but I have run into an issue with appending to the cookie based on the UI selection. The method is straight from the...
https://thetopsites.net/article/52604397.shtml
CC-MAIN-2021-25
en
refinedweb
Why cast after an instanceOf? instanceof java how to convert string to user defined object in java java 8 instanceof java casting java checked cast java cast(object to class) cast vs instanceof In the example below (from my coursepack), we want to give to the Square instance c1 the reference of some other object p1, bu...
https://thetopsites.net/article/52417189.shtml
CC-MAIN-2021-25
en
refinedweb
Let's make an easy and simple circle progress bar from an animated SVG in a React component. We only need a SVG, some hooks and a bunch of props to make it customizable. The scope of this guide is to make a simple but customizable circle progress bar for starting at a very basic level of SVG animations. If you want to ...
https://dev.to/dastasoft/animated-circle-progress-bar-with-svg-as-react-component-28nm
CC-MAIN-2021-25
en
refinedweb
AVS Display Cards for Tablets 1.0 The guidance on this page is based on implementing the TemplateRuntime 1.0 and PlaybackController 1.0 APIs for Tablets. If you are using different versions, choose another page from the drop-down menu above. This page contains Tablet-specific Display Card design guidance. For general m...
https://developer.amazon.com/en-US/docs/alexa/alexa-voice-service/display-cards-tablets-1-0.html
CC-MAIN-2021-25
en
refinedweb
I just announced the new Spring Boot 2 material, coming in REST With Spring: 1. Overview In this tutorial, we’ll do a quick overview of the ANTLR parser generator and show some real-world applications. 2. ANTLR ANTLR (ANother Tool for Language Recognition) is a tool for processing structured text. It does this by givin...
https://www.baeldung.com/java-antlr
CC-MAIN-2018-39
en
refinedweb
Trading Strategies and Financial Models. Alexander Barinov - Daisy White - 1 years ago - Views: Transcription 1 Trading Strategies and Financial Models Alexander Barinov This version: July 2014 c 2014 Alexander Barinov 2 Contents 1 Topics in Market Efficiency EMH and Expected Returns Random Walk Hypothesis and Expected...
http://docplayer.net/27765976-Trading-strategies-and-financial-models-alexander-barinov.html
CC-MAIN-2018-39
en
refinedweb
What I am looking to do is replace a print statement with a new print statement. In layman's terms, I want the console to print Downloading... and then replace it with Downloading...done! as soon as the downloading finishes. I have tried this answer but it just prints some garbage and then the print statement on a new ...
http://www.dlxedu.com/askdetail/3/bceb36d654483f03b4aefde77e3e356d.html
CC-MAIN-2018-39
en
refinedweb
Short solution in Creative category for Non-unique Elements by inovitsky #Your optional code here #You can import some modules or create additional functions def checkio(data): #Your code here #It's main function. Don't remove this function #It's used for auto-testing and must return a result for check. return [item fo...
https://py.checkio.org/mission/non-unique-elements/publications/inovitsky/python-3/short/share/d02ab88a3cec905aaa91ffec2dc488b3/
CC-MAIN-2018-39
en
refinedweb
This is an example of a plug-in which can be dynamically loaded into stellarium. More... #include <TextUserInterface.hpp> The Text User Interface (TUI) plugin replaces the old (pre-0.10 series) text user interface. It used to be activated with M until the 0.14 series, but was changed to Alt-T for 0.15 and later (to be ...
http://stellarium.org/doc/0.18/classTextUserInterface.html
CC-MAIN-2018-39
en
refinedweb
In this post, we will see an example of how to do a Left Outer Join in LINQ and C#. In a previous post, we saw how to do an Inner join in C# and LINQ where each element of the first collection appears one time for every matching element in the second collection. If an element in the first collection has no matching ele...
https://www.devcurry.com/2011/01/linq-left-join-example-in-c.html?showComment=1352908672463
CC-MAIN-2018-39
en
refinedweb
This analysis so far has not taken into account the time value of money. One dollar received today is worth more than one dollar received five years from today. But how much more? That would depend on how much the recipient thinks he could earn on that dollar: in other words, what's an adequate rate of return? A dollar...
https://www.safaribooksonline.com/library/view/business-analysis-with/0789725525/0789725525_ch12lev1sec2.html
CC-MAIN-2018-39
en
refinedweb
How to create a new Controller in Laravel Framework web-based application ?. It is actually quite easy and it can be done in a several ways. In my opinion there is two ways to done it : 1. The first one is manually create the Controller file. This step requires everything to be done in manual. Several tasks need to be ...
http://www.dark-hamster.com/programming/create-controller-in-laravel-using-command/
CC-MAIN-2018-39
en
refinedweb
[ ] Chris Trezzo updated HDFS-9922: ------------------------------- Issue Type: Sub-task (was: Bug) Parent: HDFS-7541 > Upgrade Domain placement policy status marks a good block in violation when there are decommissioned nodes > -------------------------------------------------------------------------------------------...
http://mail-archives.apache.org/mod_mbox/hadoop-hdfs-issues/201603.mbox/%3CJIRA.12948119.1457464447000.36220.1457464600945@Atlassian.JIRA%3E
CC-MAIN-2018-39
en
refinedweb
2011-07-27 21:29:08 8 Comments When I make an SSL connection with some IRC servers (but not others - presumably due to the server's preferred encryption method) I get the following exception: Caused by: java.lang.RuntimeException: Could not generate DH keypair at com.sun.net.ssl.internal.ssl.DHCrypt.<init>(DHCrypt.java...
https://tutel.me/c/programming/questions/6851461/why+does+ssl+handshake+give+39could+not+generate+dh+keypair39+exception
CC-MAIN-2018-39
en
refinedweb
Rave JavaScript API Rave Core JS ** GOALS - rave core should have clear dependency tree; it should have no external dependencies outside of underscorejs. - rave core should be separate from the portal; it should be lightweight, built to provide rave's core functionality of managing and rendering sets of widgets and no ...
https://wiki.apache.org/rave/JSAPI
CC-MAIN-2018-39
en
refinedweb
S E P T E M B E R 1 9 9 9 The instructions above are for this month's puzzle only. See a complete introduction to clue-solving. See the solution to last month's Puzzler. 5. "Eternities" is dedicated to a civil-rights figure (8) 10. I would like names for girls (4) 11. Solicit drink in one half of duplex (4,2) 13. Compa...
http://www.theatlantic.com/past/docs/issues/99sep/9909puzz.htm
CC-MAIN-2016-40
en
refinedweb