text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
I'm pleased to announce that Denis Bulichenko has translated this article into Russian! It has been published in RSDN. The complete article will soon be available on-line. I'm deeply indebted to you, Denis. Standard C++ does not have true object-oriented function pointers. This is unfortunate, because object-oriented f...
http://www.codeproject.com/Articles/7150/Member-Function-Pointers-and-the-Fastest-Possible?msg=3240087
CC-MAIN-2014-52
en
refinedweb
28 January 2010 21:34 [Source: ICIS news] WASHINGTON (ICIS news)--US chemical, energy and general manufacturing firms on Thursday welcomed President Barack Obama’s new call for expanded domestic energy production and exports, and expressed hope that he has abandoned cap-and-trade climate legislation. The American Chemi...
http://www.icis.com/Articles/2010/01/28/9329860/US-chemical-energy-sectors-welcome-new-Obama-focus.html
CC-MAIN-2014-52
en
refinedweb
06 December 2010 11:20 [Source: ICIS news] SINGAPORE (ICIS)--BASF and Petronas are considering jointly investing around €1bn ($1.34bn) to produce specialty chemicals in ?xml:namespace> The German chemicals giant and the Malaysian oil and gas firm have signed a memorandum of understanding to undertake a feasibility stud...
http://www.icis.com/Articles/2010/12/06/9416766/basf-petronas-consider-1bn-malaysia-specialty-chem-investment.html
CC-MAIN-2014-52
en
refinedweb
Copy New Files Only in .NET Recently I had a client that had a need to copy files from one folder to another. However, there was a process that was running that would dump new files into the original folder every minute or so. So, we needed to be able to copy over all the files one time, then also be able to go back a ...
http://weblogs.asp.net/psheriff/copy-new-files-only-in-net
CC-MAIN-2014-52
en
refinedweb
25 April 2012 16:07 [Source: ICIS news] LONDON (ICIS)--Petroplus’s refinery in Coryton in the ?xml:namespace> PricewaterhouseCoopers (PwC) received bids for the refinery – which is located 28 miles (48km) from central London in Essex – on 2 April and said a deal could involve refinancing, a sale or an extension of its ...
http://www.icis.com/Articles/2012/04/25/9553715/petroplus-coryton-refinery-needs-deal-by-mid-may-or-risks.html
CC-MAIN-2014-52
en
refinedweb
Database Replication with Slony-I Listing 2. subscribe'; subscribe set (id = 1, provider = 1, receiver = 2, forward = yes); Much like Listing 1, subscribe.sh starts by defining the cluster namespace and the connection information for the two nodes. Once completed, the subscribe set command causes the first node to star...
http://www.linuxjournal.com/article/7834?page=0,2&quicktabs_1=0
CC-MAIN-2014-52
en
refinedweb
Candlestick Charts in Python How to make interactive candlestick charts in Python with Plotly. Six examples of candlestick charts with Pandas, time series, and yahoo finance data.. called increasing (decreasing). By default, increasing candles are drawn in green whereas decreasing are drawn in red. Simple Candlestick w...
https://plotly.com/python/candlestick-charts/
CC-MAIN-2021-39
en
refinedweb
On Thu, Nov 10, 2011 at 1:19 PM, Dimitri Fontaine <dimi...@2ndquadrant.fr> wrote: > Now the aim would be to be able to implement the operation you describe > by using the new segment map, which is an index pointing to sequential > ranges of on-disk blocks where the data is known to share a common key > range over the c...
https://www.mail-archive.com/pgsql-hackers@postgresql.org/msg187404.html
CC-MAIN-2021-39
en
refinedweb
API: Stores # Flux stores are where you keep your application's state and handle business logic that reacts to data events. Stores in Fluxible are just classes that adhere to a simple interface. Because we want stores to be able to be completely decoupled from Fluxible, we do not provide any store implementation in our...
https://fluxible.io/api/stores.html
CC-MAIN-2021-39
en
refinedweb
Wind Rose and Polar Bar Charts in Python How to graph wind rose charts in python. Wind Rose charts display wind speed and direction of a given location.. Wind Rose Chart with Plotly Express¶ A wind rose chart (also known as a polar bar chart) is a graphical tool used to visualize how wind speed and direction are typica...
https://plotly.com/python/wind-rose-charts/
CC-MAIN-2021-39
en
refinedweb
To fetch large data we can use generators in pandas and load data in chunks. import pandas as pd from sqlalchemy import create_engine from sqlalchemy.engine.url import URL # sqlalchemy engine engine = create_engine(URL( drivername="mysql" username="user", password="password" host="host" database="database" )) conn = en...
https://riptutorial.com/pandas/example/30224/to-read-mysql-to-dataframe--in-case-of-large-amount-of-data
CC-MAIN-2021-39
en
refinedweb
Terms defined: Visitor pattern, bare object, dynamic scoping, environment, lexical scoping, stack frame, static site generator Every program needs documentation in order to be usable, and the best place to put that documentation is on the web. Writing and updating pages by hand is time-consuming and error-prone, partic...
https://stjs.tech/page-templates/
CC-MAIN-2021-39
en
refinedweb
How to get object (tag) name, attribute, content, comment and other operations by using the Python crawler beautifulsop 1, Tag object 1. The tag object is the same as the tag in the XML or HTML native document. from bs4 import BeautifulSoup soup = BeautifulSoup('<b class="boldest">Extremely bold</b>','lxml') tag = soup...
https://programmer.ink/think/get-object-tag-name-property-content-comment.html
CC-MAIN-2021-39
en
refinedweb
Written by Esteban Herrera✏️ Date formatting is one of the most important aspects when preparing an application to be used in different languages. Moment.js is one of the most used JavaScript libraries to format and manipulate dates that we can use for this purpose. However, in some cases, some things about this librar...
https://practicaldev-herokuapp-com.global.ssl.fastly.net/bnevilleoneill/4-alternatives-to-moment-js-for-internationalizing-dates-401b
CC-MAIN-2021-39
en
refinedweb
GREPPER SEARCH SNIPPETS USAGE DOCS INSTALL GREPPER All Languages >> Shell/Bash >> what is meant by valence shell “what is meant by valence shell” Code Answer what is meant by valence shell shell by Lively Lynx on Jul 26 2021 Comment 1 the outermost shell of an atom containing the valence electrons. Add a Grepper Answer...
https://www.codegrepper.com/code-examples/shell/what+is+meant+by+valence+shell
CC-MAIN-2021-39
en
refinedweb
Solution 1 def find_max_char(a_string): max_found = '' for char in a_string: if char > max_found: max_found = char return max_found Time is over! You can keep submitting you assignments, but they won't compute for the score of this quiz. Fix the Max Character The function provided is broken. Your job is to figure out w...
https://learn.rmotr.com/python/base-python-track/strings/fix-the-max-character
CC-MAIN-2018-47
en
refinedweb
Using your project docs inside the application The applications I work on have markdown docs. These can be in the docs/ folder for example as docs/webhooks.md But some of these docs have value to the user of the UI not just the developer, and when we include these docs inside the application repo it is a TON easier to ...
https://alfrednutile.info/posts/157
CC-MAIN-2018-47
en
refinedweb
public class SimpleThreadScope extends java.lang.Object implements Scope Scopeimplementation. NOTE: This thread does not clean up any objects associated with it. As such, it is typically preferable to use RequestScope in web environments. For an implementation of a thread-based Scope with support for destruction callba...
https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/context/support/SimpleThreadScope.html
CC-MAIN-2018-47
en
refinedweb
F# Async Guide This is a usage guide for asynchronous programming in F# using the Async type. The content should be helpful to existing F# Async users or those approaching F# concurrency from another programming language, and is complementary to existing material such as Asynchronous Programming by Scott Wlaschin, Asyn...
https://medium.com/jettech/f-async-guide-eb3c8a2d180a?source=collection_home---4------11---------------------
CC-MAIN-2018-47
en
refinedweb
ReJSON: Redis as a JSON Store ReJSON: Redis as a JSON Store We've created ReJSON, a Redis module that provides native JSON capabilities. ReJSON should make any Redis user giddy with JSON joy. Join the DZone community and get the full member experience.Join For Free Download "Why Your MySQL Needs Redis" and discover how...
https://dzone.com/articles/redis-as-a-json-store
CC-MAIN-2018-47
en
refinedweb
The Web Cryptography API Tim Taubert explores how we can keep secrets with JavaScript Due to its nature as a dynamic language, it is surprisingly difficult to safely implement cryptographic primitives in JavaScript. To bridge this gap, a W3C working group was formed to design an API that provides these basic building b...
https://medium.com/net-magazine/the-web-cryptography-api-15d052271494
CC-MAIN-2018-47
en
refinedweb
Odoo Help Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc. Replace Session Store of odoo/werkzeug We are running odoo on two dedicated servers with the same database. A load balancer distr...
https://www.odoo.com/forum/help-1/question/replace-session-store-of-odoo-werkzeug-86843
CC-MAIN-2018-47
en
refinedweb
Messaging with RabbitMQ and .NET C# part 1: foundations and setup April 28, 2014 6 Comments Introduction Messaging is a technique to solve communication between disparate systems in a reliable and maintainable manner. You can have various platforms that need to communicate with each other: a Windows service, a Java ser...
https://dotnetcodr.com/2014/04/28/messaging-with-rabbitmq-and-net-c-part-1-foundations-and-setup/
CC-MAIN-2018-47
en
refinedweb
ESP8266 Deploying Micropython and Using REPL ESP8266 The ESP8266 is a low-cost Wi-Fi microchip with full TCP/IP stack and microcontroller capability produced by Espressif Systems. One of the coolest things about this cip is it can run Micropython. If you are new to programming or hardware/embedded systems and want to g...
http://girishjoshi.io/post/esp8266-deploying-micropython-and-using-repl/
CC-MAIN-2018-47
en
refinedweb
F# is both a parallel and a reactive language. By this we mean that running F# programs can have both multiple active evaluations (e.g. .NET threads actively computing F# results), and multiple pending reactions (e.g. callbacks and agents waiting to react to events and messages). One simple way to write parallel and re...
https://blogs.msdn.microsoft.com/dsyme/2010/01/09/async-and-parallel-design-patterns-in-f-parallelizing-cpu-and-io-computations/
CC-MAIN-2016-36
en
refinedweb
acl_set_qualifier() Set the qualifier for an ACL entry Synopsis: #include <sys/acl.h> int acl_set_qualifier( acl_entry_t entry_d, const void *tag_qualifier_p ); Since: BlackBerry 10.0.0 Arguments: - entry_d - The descriptor of the entry whose qualifier you want to set. - tag_qualifier_p - A pointer to the qualifier (se...
http://developer.blackberry.com/native/reference/core/com.qnx.doc.neutrino.lib_ref/topic/a/acl_set_qualifier.html
CC-MAIN-2016-36
en
refinedweb
#include <pthread.h> int pthread_rwlockattr_init(pthread_rwlockattr_t *attr); pthread_rwlockattr_init(3T). If successful, pthread_rwlockattr_init() returns zero. Otherwise, an error number is returned to indicate the error. Insufficient memory exists to initialize the rwlock attributes object. .
http://docs.oracle.com/cd/E19620-01/805-5080/sync-54/index.html
CC-MAIN-2016-36
en
refinedweb
On Mon, Mar 7, 2011 at 7:41 PM, Mark Brown<broonie@opensource.wolfsonmicro.com> wrote:>>,> the register is referenced. This doesn't seem ideal - it'd be much> nicer to have the register I/O functions work this out without the> callers needing to.I'm afraid it's not easy to do so.>> ?no,it makes the processor work in ma...
https://lkml.org/lkml/2011/3/9/22
CC-MAIN-2016-36
en
refinedweb
CoffeeKup template engine wrapper providing server-side compiled templates for SocketStream apps Use pre-compiled CoffeeKup client-side templates in your app. Add ss-coffeekup to your application's package.json file and then add this line to app.js: ss.client.templateEngine.use(require('ss-coffeekup')); Restart the ser...
https://www.npmjs.com/package/ss-coffeekup
CC-MAIN-2016-36
en
refinedweb
std::remainder std:. std::fmod, but not std::remainder is useful for doing silent wrapping of floating-point types to unsigned integer types: (0.0 <= (y = std::fmod( std::rint(x), 65536.0 )) ? y : 65536.0 + y) is in the range [-0.0 .. 65535.0], which corresponds to unsigned short, but std::remainder(std::rint(x), 65536...
http://en.cppreference.com/w/cpp/numeric/math/remainder
CC-MAIN-2016-36
en
refinedweb
- Author: - AndrewIngram - Posted: - February 6, 2009 - Language: - Python - Version: - 1.0 - soap soaplib wsdl web-services - Score: - 1 (after 1 ratings) This snippet is a replacement views.py for SOAP views with on-demand WSDL generation It iterates over your installed apps looking for web_service.py in each one, an...
https://djangosnippets.org/snippets/1311/
CC-MAIN-2016-36
en
refinedweb
.flow; 20 21 import java.util.Map; 22 23 import javax.faces.component.UIViewRoot; 24 25 import org.apache.myfaces.orchestra.flow.config.FlowAccept; 26 import org.apache.myfaces.orchestra.flow.config.FlowCall; 27 28 /** 29 * Holds information about a specific call to a specific flow. 30 * <p> 31 * A new instance of this...
http://myfaces.apache.org/orchestra/myfaces-orchestra-flow/xref/org/apache/myfaces/orchestra/flow/FlowInfo.html
CC-MAIN-2016-36
en
refinedweb
GameWindow Timing IssuePosted Sunday, 8 February, 2009 - 23:12 by flopoloco in I remember being said that the next OpenTK version will include a new timing mechanism, anyhow, here's a test I made in current 0.9.1 . using System; using System.Drawing; using System.Diagnostics; using OpenTK; using OpenTK.Graphics; namesp...
http://www.opentk.com/node/650
CC-MAIN-2016-36
en
refinedweb
I just started C a few days ago in class and I've been working on a problem for well over 2 hours and still cannot figure it out. I am extremely noobish in this subject, so I was hoping someone can help me with this. I ran searches for about 30 minutes but I still did not understand the programs that some wrote because...
http://cboard.cprogramming.com/c-programming/82558-find-largest-smallest-number.html
CC-MAIN-2016-36
en
refinedweb
----------------------------------------------------------------------------- -- | -- Module : Data.List.LCS.HuntSzymanski -- Copyright : (c) Ian Lynagh 2005 -- License : BSD or GPL v2 -- -- Maintainer : igloo@earth.li -- Stability : provisional -- Portability : non-portable (uses STUArray) -- -- This is an implementat...
http://hackage.haskell.org/package/lcs-0.2/docs/src/Data-List-LCS-HuntSzymanski.html
CC-MAIN-2016-36
en
refinedweb
Your message dated Tue, 18 Aug 2009 20:56:50 +0100 with message-id <1250625410.755430.4715.nullmailer@kmos.homeip.net> and subject line Package jikes has been removed from Debian has caused the Debian Bug report #170709, regarding jikes has stupid.) -- 170709: Debian Bug Tracking System Contact owner@bugs.debian.org wi...
https://lists.debian.org/debian-qa-packages/2009/08/msg00342.html
CC-MAIN-2016-36
en
refinedweb
Pugs::Doc::Hack::Style - Style guidelines for Pugs code $EDITOR src This document describes coding conventions used in Pugs code. Like any style rules, these are meant as recommendations and you should feel free to break them whenever it makes sense to do so. Avoid punning data type names and data constructors. If you ...
http://search.cpan.org/~audreyt/Perl6-Pugs-6.2.13/docs/Pugs/Doc/Hack/Style.pod
CC-MAIN-2016-36
en
refinedweb
By the way... Wow, I'm quite busy these days, haven't been writing (or reading, for that matter!) much... Mostly, it's to blame on the quest for a place to live in that's going on. I'd like to buy, this time around, so this makes it a couple of notches more complicated than what I'm used to (I've never been an owner, s...
http://www.advogato.org/person/pphaneuf/diary.html?start=323
CC-MAIN-2016-36
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 template< typename State , typename Operation > struct inserter { typedef State state; typedef Operation operation; }; A general-purpose model of the Inserter concept. ...
http://www.boost.org/doc/libs/1_32_0/libs/mpl/doc/refmanual/inserters-inserter.html
CC-MAIN-2016-36
en
refinedweb
Been made to do this task where I need to make an animal guessing game using if-else. I cannot figure out how to make this code so it will add more than four animals. The game is basically Think of an animal. Is it a bird? yes Can it fly? no Is it an emu? no Oh. Well, thank you for playing. This is all the animals I ne...
http://www.javaprogrammingforums.com/loops-control-statements/26134-guessing-game-help.html
CC-MAIN-2016-36
en
refinedweb
java.lang.Object oracle.adfinternal.model.adapter.url.SmartURLoracle.adfinternal.model.adapter.url.SmartURL public class SmartURL Handles URL connections. Different adapters and data controls will use this class to access a URL. This class can handle the HTTP and HTTPS protocols. It uses the proxy set by the applicatio...
http://docs.oracle.com/cd/E28280_01/apirefs.1111/e10653/oracle/adfinternal/model/adapter/url/SmartURL.html
CC-MAIN-2016-36
en
refinedweb
1) Write a Java application that prompts the user for pairs of inputs of a product number (1-5), and then an integer quantity of units sold (this 5 pairs of inputs are completed. You must also display the total after each new pair of input values is entered. This is what I have so far. Like I said I just need to be poi...
http://www.dreamincode.net/forums/topic/211165-inventory-program/
CC-MAIN-2016-36
en
refinedweb
- NAME - SYNOPSIS - DESCRIPTION - FEATURES AND CONVENTIONS - JUMP START FOR THE IMPATIENT - SEE ALSO - AUTHOR NAME Module::Build::WithXSpp - XS++ enhanced flavour of Module::Build SYNOPSIS In Build.PL: use strict; use warnings; use 5.006001; use Module::Build::WithXSpp; my $build = Module::Build::WithXSpp->new( # norma...
https://metacpan.org/pod/Module::Build::WithXSpp
CC-MAIN-2016-36
en
refinedweb
/* _LINE_MAP_H #define GCC_LINE_MAP_H /* Reason for adding a line change with add_line_map (). LC_ENTER is when including a new file, e.g. a #include directive in C. LC_LEAVE is when reaching a file's end. LC_RENAME is when a file name or line number changes for neither of the above reasons (e.g. a #line directive in C...
http://opensource.apple.com//source/gcc_os/gcc_os-1666/gcc/line-map.h
CC-MAIN-2016-36
en
refinedweb
1993-05-30 Richard Stallman (rms@mole.gnu.ai.mit.edu) * Version 19.10 released. 1993-05-29 Richard Stallman (rms@mole.gnu.ai.mit.edu) * term/bobcat.el: Just load term/keyswap.el. * term/vt200.el: Just load term/vt100.el. * term/apollo.el: Just load term/vt100.el. * term/vt102.el, term/vt125.el, term/vt201.el, term/vt22...
http://opensource.apple.com/source/emacs/emacs-78.2/emacs/lisp/ChangeLog.3
CC-MAIN-2016-36
en
refinedweb
The QtToolBarDialog class provides a dialog for customizing toolbars. More... #include <QtToolBarDialog> Inherits QDialog. The QtToolBarDialog class provides a dialog for customizing toolbars. QtToolBarDialog allows the user to customize the toolbars for a given main window. The dialog lets the users add, rename and re...
http://doc.qt.nokia.com/solutions/4/qttoolbardialog/qttoolbardialog.html
crawl-003
en
refinedweb
Synopsis #include <libwnck/libwnck.h> enum WnckClientType; void wnck_set_client_type ( WnckClientType ewmh_sourceindication_client_type); void wnck_shutdown ( void); Description These functions are utility functions providing some additional features to libwnck users. Details enum WnckClientType typedef enum { WNCK_CLI...
http://developer.gnome.org/libwnck/stable/libwnck-Miscellaneous-Functions.html
crawl-003
en
refinedweb
#include <MObjectHandle.h> MObjectHandle is a wrapper class for the MObject class. An MObjectHandle will provide a user with added information on the validity of an MObject. Each MObjectHandle that is created registers an entry into a table to maintain state tracking of the MObject that the handle was created for. This...
http://download.autodesk.com/us/maya/2009help/API/class_m_object_handle.html
crawl-003
en
refinedweb
for connected embedded systems mkstemp() Make a unique temporary filename, and open the file Synopsis: #include <stdlib.h> int mkstemp( char* template );: Caveats: It's possible to run out of letters. The mkstemp() function doesn't check to determine whether the file name part of template exceeds the maximum allowable ...
http://www.qnx.com/developers/docs/6.3.2/neutrino/lib_ref/m/mkstemp.html
crawl-003
en
refinedweb
mmap, munmap - map or unmap files or devices into memory Synopsis Description Notes Errors Availability #include <sys/mman.h> void * mmap(void *start, size_t length, int prot , int flags, int fd, off_t offset); int munmap(void *start, size_t length);b (formerly POSIX.4) and SUSv2. Linux also knows about the following n...
http://www.squarebox.co.uk/cgi-squarebox/manServer/usr/share/man/man2/mmap.2
crawl-003
en
refinedweb
#include <resizetrackthread.h> Inherits BC_TextBox. Definition at line 39 of file resizetrackthread.h. Definition at line 214 of file resizetrackthread.C. Reimplemented from BC_TextBox. Definition at line 223 of file resizetrackthread.C. References BC_TextBox::get_text(), gui, thread, ResizeTrackWindow::update(), and R...
http://cinelerra.org/devcorner/doxy/svn_2.1_r1056/html/classResizeTrackWidth.html
crawl-003
en
refinedweb
sched_get_priority_max, sched_get_priority_min - get static priority range Synopsis Description Errors #include <sched.h> int sched_get_priority_max(int policy); int sched_get_priority_min(int policy);, and SCHED_OTHER.b, errno is set appropriately. POSIX.1b (formerly POSIX.4) sched_setaffinity(2), sched_getaffinity(2)...
http://www.squarebox.co.uk/cgi-squarebox/manServer/usr/share/man/man2/sched_get_priority_min.2
crawl-003
en
refinedweb
Xerces-C++ is one of the most full-featured and portable XML parsers written in C++ available today. What's more, it's open source (distributed by the Apache Xerces Project) and it's fully conformant to the most important XML standards -- XML 1.0 3rd Edition, XML 1.1, and XML Schema 1.0 2nd Edition Structures and Datat...
http://www.ibm.com/developerworks/webservices/library/x-xsdxerc/index.html
crawl-003
en
refinedweb
This article assumes that you've read the first two installments of this series and are familiar with the healthcare reservation system and its architectural framework at the heart of this scenario. In this scenario, remote medical offices completely delegate the function of client office visits to a centralized system...
http://www.ibm.com/developerworks/webservices/library/ws-soa-real3/
crawl-003
en
refinedweb
©2005 Felleisen, Proulx, et. al. Once we have designed several sorting algorithms it would help if we had a method that determined whether the given collection of data (a list of Objects or an ArrayList is sorted. We know by now that we can design such methods to work for a number of possible kinds of data collections ...
http://www.ccs.neu.edu/home/vkp/csu213-sp05/Lectures/lecture24.html
crawl-003
en
refinedweb
pthread_spin_lock, pthread_spin_trylock - lock a spin lock object (ADVANCED REALTIME THREADS) [THR SPI] #include <pthread.h>. These functions may fail if: - ]. None. Applications using this function may be subject to priority inversion, as discussed in the Base Definitions volume of IEEE Std 1003.1-2001, Section 3.285,...
http://pubs.opengroup.org/onlinepubs/009695399/functions/pthread_spin_trylock.html
crawl-003
en
refinedweb
#include <itkCoreAtomImageToDistanceMatrixProcess.h> #include <itkCoreAtomImageToDistanceMatrixProcess.h> Inheritance diagram for itk::CoreAtomImageToDistanceMatrixProcess< TSourceImage >: Definition at line 38 of file itkCoreAtomImageToDistanceMatrixProcess.h. Reimplemented from itk::ProcessObject. Definition at line ...
http://www.itk.org/Doxygen16/html/classitk_1_1CoreAtomImageToDistanceMatrixProcess.html
crawl-003
en
refinedweb
#include <MPxFieldNode.h> MPxFieldNode allows the creation and manipulation of dependency graph nodes representing fields. This is the top level of a hierarchy of field node function sets. It permits manipulation of the attributes common to all types of fields. Class constructor. The class destructor. This method retur...
http://download.autodesk.com/us/maya/2009help/API/class_m_px_field_node.html
crawl-003
en
refinedweb
#include <rtt/scripting/PeerParser.hpp> #include <rtt/scripting/PeerParser.hpp> List of all members. Definition at line 59 of file PeerParser.hpp. false Create a PeerParser which starts looking for peers from a task. The locator tries to go as far as possible in the peer-to-object path and will never throw. peer() and ...
http://people.mech.kuleuven.be/~orocos/pub/stable/documentation/rtt/v1.8.x/api/html/classRTT_1_1detail_1_1PeerParser.html
crawl-003
en
refinedweb
#include <itkImageRandomIteratorWithIndex.h> Inheritance diagram for itk::ImageRandomIteratorWithIndex< TImage >: ImageRandomIteratorWithIndex is a templated class to represent a multi-dimensional iterator. ImageRandomIteratorWithIndex is templated over the image type ImageRandomIteratorWithIndex is constrained to walk...
http://www.itk.org/Doxygen16/html/classitk_1_1ImageRandomIteratorWithIndex.html
crawl-003
en
refinedweb
In a typical Web services scenario, you normally let the tooling handle all the nuances of namespaces for you. But sometimes you have to deal with namespace issues yourself, particularly if you are constructing a SOAP message for a particular Web service using the SOAP with Attachments API for Java (SAAJ). This tip is ...
http://www.ibm.com/developerworks/webservices/library/ws-tip-namespace/index.html
crawl-003
en
refinedweb
#include <itkGaussianDerivativeSpatialFunction.h> Inheritance diagram for itk::GaussianDerivativeSpatialFunction< TOutput, VImageDimension, TInput >: GaussianDerivativeSpatialFunction implements a standard derivative of gaussian curve in N-d. m_Normalized determines whether or not the Derivative 44 of file itkGaussianD...
http://www.itk.org/Doxygen16/html/classitk_1_1GaussianDerivativeSpatialFunction.html
crawl-003
en
refinedweb
Now in preview Transparent Data Encryption (TDE) with customer managed keys for Managed Instance Announces. TDE with BYOK support is offered in addition to TDE with service managed keys which is enabled on all new Azure SQL Databases, single databases, pools, and managed instances by default. Transforming your data in ...
https://azure.microsoft.com/de-de/blog/azure-source-volume-63/
CC-MAIN-2020-05
en
refinedweb
libdnet is dependency for open-vm-tools-nox11 libdnet fails to build unless PF is installed as part of base system. If you installworld minus PF (WITHOUT_PF=true), libdnet fails to find a suitable firewall (as reported), even though ipfw2 is available. On building: |------------------------------------------| |No suita...
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=239046
CC-MAIN-2020-05
en
refinedweb
I'm developing an ICN plugin with a PluginResponseFilter. The structure of my plugin looks like this: public class FilterPlugin extends Plugin { @Override public String getId() { return "FilterPlugin"; } @Override public String getName(Locale locale) { return "Filter Plugin"; } @Override public String getVersion() { re...
https://developer.ibm.com/answers/questions/444942/$%7BawardType.awardUrl%7D/
CC-MAIN-2020-05
en
refinedweb
There is a method named "Monotone Chain Method" for finding convex hull of some points. It it quite easy to understand how and why it works. We basically sort all points based on x axis. Then we find the left most points. Then we try to go clockwise as long as we can, we'll reach the right most point. These points will...
https://www.commonlounge.com/discussion/a8f953d33c4547b8863b79b18f1795cd
CC-MAIN-2020-05
en
refinedweb
OCCUtils provides Face::FromPoints() to linearly connect a set of gp_Pnt points and make a face from the resulting edges: #include <occutils/Face.hxx> using namespace OCCUtils; gp_Pnt p1, p2, p3; // Your points! TopoDS_Face face = Face::FromPoints({p1, p2, p3}); Face::FromPoints() will automatically remove duplicate co...
https://techoverflow.net/2019/07/05/how-to-make-topods_face-from-gp_pnts/
CC-MAIN-2020-05
en
refinedweb
37809/python-convert-all-sheets-of-excel-to-csv I am using the following with this code is that it takes data only from the first sheet and not other sheets. I have 4 sheets and want them to be converted to csv too. Please help. You will have to parse through the sheets and then get data. Refer to the following code:) ...
https://www.edureka.co/community/37809/python-convert-all-sheets-of-excel-to-csv
CC-MAIN-2020-05
en
refinedweb
Author of this article has published varieties of articles in the stream of java software development. In this post, you will learn the way to create an ArrayList from an Array. Author has begun the post by defining Array and ArrayList. You will also learn the steps to convert an Array to ArrayList in this guide. Featu...
https://buffercode.in/building-an-arraylist-from-an-array-in-java-software-development/
CC-MAIN-2018-13
en
refinedweb
In the article I’ll try to give an overview of the methods how you can enable operations with HTTP Cookies in WebDynpro applications running within the Portal. Short digression: Cookie and WebDynpro Questions about HTTP Cookies appear periodically when new developers begin to study WebDynpro Java and design more or les...
https://blogs.sap.com/2010/02/16/http-cookies-in-portal-webdynpro-application-part1-overview/
CC-MAIN-2018-13
en
refinedweb
NAME | SYNOPSIS | DESCRIPTION | EXAMPLES | ATTRIBUTES | SEE ALSO cc [ flag... ] file ... -lelf [ library ... ] #include <libelf.h>Elf *elf_begin(int fildes, Elf_Cmd cmd, Elf *ref); elf_begin(), elf_end(), elf_memory(), elf_next(), and elf_rand() work together to process Executable and Linking Format (ELF) object files,...
https://docs.oracle.com/cd/E19683-01/816-5218/6mbcj7nba/index.html
CC-MAIN-2018-13
en
refinedweb
Tech Brief Making your Web apps more interactive is easier than you think. It's a great concept, but one that you probably approach with some trepidation. You might think that this requires the re-write of your ASP.NET pages with hundreds or thousands of lines of JavaScript with embedded XML. Under most circumstances y...
https://visualstudiomagazine.com/articles/2008/01/01/key-ajax-control.aspx
CC-MAIN-2018-13
en
refinedweb
An ImportFileHandle for data. More... #include <ImportPlugin.h> An ImportFileHandle for data. Base class for FlacImportFileHandle, LOFImportFileHandle, MP3ImportFileHandle, OggImportFileHandle and PCMImportFileHandle. Gives API for sound file import. The Ogg format supports multiple logical bitstreams that can be chain...
http://doxy.audacityteam.org/class_import_file_handle.html
CC-MAIN-2018-13
en
refinedweb
A BlockFile that reads and writes uncompressed data using libsndfile. More... #include <SimpleBlockFile.h> A BlockFile that reads and writes uncompressed data using libsndfile. A block file that writes the audio data to an .au file and reads it back using libsndfile. There are two ways to construct a simple block file....
http://doxy.audacityteam.org/class_simple_block_file.html
CC-MAIN-2018-13
en
refinedweb
7 raco decompile: Decompiling Bytecode The raco decompile command takes the path of a bytecode file (which usually has the file extension ".zo") or a source file with an associated bytecode file (usually created with raco make) and converts the bytecode file’s content back to an approximation of Racket code. Decompiled...
https://docs.racket-lang.org/raco/decompile.html
CC-MAIN-2018-13
en
refinedweb
Odoo Help Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps: CRM | e-Commerce | Accounting | Inventory | PoS | Project management | MRP | etc. How to create a method that will display values from database to a selection type field? def _sel_warehouse(self, cr, uid, contex...
https://www.odoo.com/forum/help-1/question/how-to-create-a-method-that-will-display-values-from-database-to-a-selection-type-field-32608
CC-MAIN-2018-13
en
refinedweb
RECOMMENDED: If you have Windows errors then we strongly recommend that you download and run this (Windows) Repair Tool. "The vulnerability is caused due to an unspecified error when using the Adobe Flash Player plug. In the recent period, the battle for the most powerful browser was involving only Internet Explorer an...
http://thesecondblog.com/ie6-unspecified-error/
CC-MAIN-2018-13
en
refinedweb
Topic Listener MDB problemsKaroy Bandai Oct 19, 2009 7:56 PM MDB doesn't seem to connect to JMS Topic, message posted by j2se client to JMS Topic doesn't seem to show in Topic stats. Setup: WinXP, JBoss 5.1, Eclipse Galileo, JDK 1.6. JBoss setup seems to be functioning, as an EJB app has deployed and was tested just fi...
https://developer.jboss.org/thread/129709
CC-MAIN-2018-13
en
refinedweb
With this post, I’m starting a new series on how to use custom patterns in UI Automation. Custom patterns (and custom properties and events) are a new feature of UI Automation added in Windows 7, and I thought it would be interesting to build on my previous samples to show how to use this new feature. The samples for t...
https://blogs.msdn.microsoft.com/winuiautomation/2010/12/07/uia-custom-patterns-part-1/
CC-MAIN-2016-50
en
refinedweb
Java.lang.Runtime.exec() Method Description The java.lang.Runtime.exec(String[] cmdarray, String[] envp, File dir) method. Declaration Following is the declaration for java.lang.Runtime.exec() method public Process exec(String[] cmdarray, String[] envp, File dir) Parameters cmdarray -- array containing the command to c...
http://www.tutorialspoint.com/java/lang/runtime_exec_dir.htm
CC-MAIN-2016-50
en
refinedweb
Content-type: text/html curs_scanw, scanw, wscanw, mvscanw, mvwscanw, vw_scanw, vwscanw - Convert formatted input from a Curses window #include <curses.h> int scanw( char *fmt[, arg]... ); int wscanw( WINDOW *win, char *fmt[, arg]... ); int mvscanw( int y, int x, char *fmt[, arg]... ); int mvwscanw( WINDOW *win, int y,...
http://backdrift.org/man/tru64/man3/mvwscanw.3.html
CC-MAIN-2016-50
en
refinedweb
How to use the Service Bus WCF Relay with .NET This article describes how to use the Service Bus relay service. The samples are written in C# and use the Windows Communication Foundation (WCF) API with extensions contained in the Service Bus assembly. For more information about the Service Bus relay, see the Service Bu...
https://docs.microsoft.com/en-us/azure/service-bus-relay/service-bus-dotnet-how-to-use-relay
CC-MAIN-2016-50
en
refinedweb
The left hemisphere also reads prose passages with greater decoding accuracy, more fluency, and fewer errors potions violate the semantic and syntactic struc- ture of the sentence. In R. This led to the formulation by Wills of downward comparison theory, parents, churches and synagogues, hospitals, alternative health p...
http://newtimepromo.ru/binary-options-safe-brokers-17.html
CC-MAIN-2016-50
en
refinedweb
I'm taking a course in Java and we haven't officially learned if statements yet. I was studying and saw this question: Write a method called pay that accepts two parameters: a real number for a TA's salary, and an integer for the number hours the TA worked this week. The method should return how much money to pay the T...
https://codedump.io/share/crAnLqKV3v2T/1/writing-java-method-called-pay
CC-MAIN-2016-50
en
refinedweb
Details Description The following test fails on Harmony. (With thanks to) import java.util.IdentityHashMap; import java.util.Set; import java.util.Map.Entry; import junit.framework.TestCase; public class IHMTest extends TestCase { public void testEntrySet(){ IdentityHashMap<String, String> ihm = new IdentityHashMap<Str...
https://issues.apache.org/jira/browse/HARMONY-6419?attachmentOrder=desc
CC-MAIN-2016-50
en
refinedweb
NAME | SYNOPSIS | INTERFACE LEVEL | PARAMETERS | DESCRIPTION | RETURN VALUES | CONTEXT | SEE ALSO | NOTES #include <sys/ddi.h> #include <sys/sunddi.h); Solaris DDI specific (Solaris DDI). The DMA handle previously allocated by a call to ddi_dma_alloc_handle(9F). A pointer to an address space structure. This parameter s...
http://docs.oracle.com/cd/E19683-01/817-0720/6mggibe60/index.html
CC-MAIN-2016-50
en
refinedweb
Got new issue - due to GUID not being the same as boot.wim from source Win10 install image, mkwinpeimg creates unbootable image :( EDIT:Sorry i think i made the same mistake again - it requires mbr partition scheme to boot, no change to bcd needed Search Criteria Package Details: wimlib 1.10.0-1 Dependencies (9) - fuse...
https://aur.archlinux.org/packages/wimlib/?ID=58931&comments=all
CC-MAIN-2016-50
en
refinedweb
Bi. In the bad old days of AS2, Actionscript-to-Javascript was handled using fscomand(). In my experience with fscommand(), there were a lot of browser issues and its functionality was much more limited. Now, in AS3, we have a fully functional API that uses the ExternalInterface class. EXAMPLE Please upgrade your Flash...
https://www.viget.com/articles/bi-directional-actionscript-javascript-communication
CC-MAIN-2016-50
en
refinedweb
0 OK, here is my c++ program that i made with "Visual C++ 2005 Express Edition".... #include<cstdlib> #include<ctime> #include<iostream> using namespace std; int main() { cout << "Welcome To Danny's Game!.\n"; cout << "See if you can beat me.\n"; cout << "The First number below is your number.\n"; srand((unsigned)time(...
https://www.daniweb.com/programming/software-development/threads/68188/help-my-program
CC-MAIN-2016-50
en
refinedweb
Michael B Allen wrote:> >>b) if xattr is the right thing, shouldn't this be in the system>>namespace rather than the user namespace?> > If we're just thinking about MS-oriented discretionary access control then> I think the owner of the file is basically king and should be the only> normal user to that can read and wri...
http://lkml.org/lkml/2005/1/3/250
CC-MAIN-2016-50
en
refinedweb
UFDC Home myUFDC Home | Help | RSS <%BANNER%> TABLE OF CONTENTS HIDE Section A: Main Section A: Main: Opinion Section A: Main continued Section A: Main: Health Section A: Main continued Section B: Sports page B 3 Section B: Classified Advantage page B 4 page B 5 page B 6 Full Text On the Hardwood Columbia, Fort White g...
http://ufdc.ufl.edu/UF00028308/00042
CC-MAIN-2016-50
en
refinedweb
Opened 9 years ago Closed 8 years ago Last modified 5 years ago #7276 closed (fixed) Inherited models are not fully deleted Description With the following models: class Place (models.Model): name = models.CharField (max_length = 255, unique = True) class Store (Place): manager = models.CharField (max_length = 255) This...
https://code.djangoproject.com/ticket/7276
CC-MAIN-2016-50
en
refinedweb
Tutor.docx Download Attachment You asked: "Part 1 The ACME Company is evaluating a capital expenditure proposal that requires an initial investment of $1,040,000. The machine will improve productivity and thereby increases net...You asked: "Part 1 The ACME Company is evaluating a capital expenditure proposal that requi...
http://www.coursehero.com/tutors-problems/Accounting/6684652-Here-is-the-assignment-once-again/
CC-MAIN-2013-48
en
refinedweb
19 November 2009 16:43 [Source: ICIS news] PRAGUE (ICIS news)--The European Commission has launched a state aid investigation into the first phase of Romanian government assistance targeted at reviving chemical company Oltchim, its Competition Commissioner announced on Thursday. The Commission would decide whether a st...
http://www.icis.com/Articles/2009/11/19/9265661/european-commission-launches-investigation-into-oltchim-state.html
CC-MAIN-2013-48
en
refinedweb
#ifdef CFW_446 #include "firmware_symbols_441.h" #endif #ifdef CFW_446 #include "firmware_symbols_446.h" #endif <![if !IE]> 105 Comments - Go to Forum Thread » Download: / / To quote, roughly translated: Version 2.68u in beta testing for all of our users on the forum. Although being in beta, the version in question wor...
http://www.ps3news.com/ps3-cfw-mfw/ps3ita-manager-v1-20-iris-manager-ps3-fork-by-rancid-o-arrives/page-5/
CC-MAIN-2013-48
en
refinedweb
How to display a splash screen in Qt Article Metadata Tested with Devices(s): Emulator Compatibility Article Keywords: QSplashScreen Last edited: hamishwillee (11 Oct 2012) Overview This code snippet demonstrates how to display a splash screen before your application loaded using QSplashScreen. may usually appear in th...
http://developer.nokia.com/Community/Wiki/How_to_display_a_splash_screen_in_Qt
CC-MAIN-2013-48
en
refinedweb
16 February 2007 18:36 [Source: ICIS news] HOUSTON (ICIS news)--Two former Valero Energy units will change their names to NuStar as a result of their separation from Valero Energy, it was announced on Friday. Valero LP and Valero GP Holdings, LLC will change their names to NuStar Energy, LP and NuStar GP Holdings, LLC ...
http://www.icis.com/Articles/2007/02/16/9007435/valero-companies-rebrand-as-nustar.html
CC-MAIN-2013-48
en
refinedweb
07 September 2012 07:47 [Source: ICIS news] SINGAPORE (ICIS)--Denka ?xml:namespace> The facility, located on “The issue is limited in nature and will likely be resolved over the weekend,” the source added but did not give any details about the problem. The sudden shutdown is expected to have little impact on the compan...
http://www.icis.com/Articles/2012/09/07/9593533/denka-singapore-shuts-ps-plant-on-mechanical-issues.html
CC-MAIN-2013-48
en
refinedweb
The ODMG API is an implementation of the ODMG 3.0 Object Persistence API. The ODMG API provides a higher-level API and query language based interface over the PersistenceBroker API. More detailed information can be found in the ODMG-guide and in the other reference guides. This tutorial operates on a simple example cla...
http://db.apache.org/ojb/docu/tutorials/odmg-tutorial.html
CC-MAIN-2013-48
en
refinedweb
toString method and output Maureen Charlton Ranch Hand Joined: Oct 04, 2004 Posts: 218 posted Nov 20, 2004 07:11:00 0 Could someone explain to me what is wrong and what is currently happening with the output of using the toString( ) method in the Storage class and the output of the storeStudent in the Storage class. /...
http://www.coderanch.com/t/397788/java/java/toString-method-output
CC-MAIN-2013-48
en
refinedweb