text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
15 May 2009 05:03 [Source: ICIS news] By Bohan Loh and Peh Soo Hwee SEOUL (ICIS news)--US oil and chemicals giant ExxonMobil expects olefins and polyolefins prices to be under pressure through to the second half of the year as more supply will come in due to capacity start-ups in China and the Middle East, while demand...
http://www.icis.com/Articles/2009/05/15/9216439/APIC-09-Exxon-expects-soft-chem-market-through-H2.html
CC-MAIN-2014-42
en
refinedweb
vprintf, vfprintf, vsprintf, vsnprintf. [edit] Example Write from variables day, month, year to a null-terminated character string. Run this code #include <stdio.h> #include <stdarg.h> void putdate (char *str, const char *format, ...) { va_list args; va_start(args,format); vsprintf(str,format,args); va_end(args); } int...
http://en.cppreference.com/w/c/io/vfprintf
CC-MAIN-2014-42
en
refinedweb
The Economist explains: The spread of gay rights The Economist explains TODAY'S recommended economics writing: • Call that a budget? (New Yorker) • Current economic conditions (Econbrowser) • Two from Paul Krugman on inflation (Paul Krugman) • Don't freak out about the shrinking work force (Atlantic) • Banking union or...
http://www.economist.com/blogs/freeexchange/2012/04/recommended-economics-writing-1
CC-MAIN-2014-42
en
refinedweb
05 March 2009 18:13 [Source: ICIS news] TORONTO (ICIS news)--Canada’s Ontario province has released a final list of lawn and cosmetic pesticides that will be banned beginning on 22 April, but industry participants said on Thursday that the ban lacked a solid scientific basis and would end up harming farmers and lawn ca...
http://www.icis.com/Articles/2009/03/05/9197997/ontario-releases-list-of-pesticides-to-be-banned-from-22-april.html
CC-MAIN-2014-42
en
refinedweb
17 September 2012 07:51 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> The Chinese producer shut the 80,000 tonne/year PO facility on 9 September for a turnaround, with its second 110,000 tonne/year Befar will gradually ramp up the The prices of PO in Prices in Befar is the one of the largest domestic providers ...
http://www.icis.com/Articles/2012/09/17/9595875/chinas-befar-group-restarts-shandong-po-facility-on-16.html
CC-MAIN-2014-42
en
refinedweb
10 October 2012 09:41 [Source: ICIS news] SINGAPORE (ICIS)--?xml:namespace> The turnaround will last 10 days and the caustic soda plant was running at full capacity before it was shut, the source added. The Chinese producer has a total production capacity of 800,000dmt/year of caustic soda at the same site. It will con...
http://www.icis.com/Articles/2012/10/10/9602558/chinas-shandong-jinling-group-shuts-caustic-soda-plant-on-10.html
CC-MAIN-2014-42
en
refinedweb
Premkarthic-7WP 10-07-2019 Hi, We are having multiple communities sites with multiple domain residing on same server, is there any way to configure community site specific email from address for communities based email notifications, Any pointer to achieve this will help us lot. Thanks in advance ! Configuring Email Th...
https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/aem-communities-notification-email-address/m-p/312436
CC-MAIN-2021-04
en
refinedweb
Are there plans for theming support in Quasar? Like the IOS theme Quasar v0.x used to have. dobbel @dobbel Best posts made by dobbel - RE: Ask Razvan a Question! Q & A for Quasar.Conf - RE: How to achieve v-ripple effect on table rows? yes that fixes the ripple on the tr. Thanks! I updated the codepen with your css. - ...
https://forum.quasar-framework.org/user/dobbel
CC-MAIN-2021-04
en
refinedweb
The C++ needs logical operators to control the flow of the program. The expressions involving logical operators evaluate to boolean value – true or false. Then the program makes decisions based on the outcome. There are three types of logical operators. Note that there is difference between bitwise AND and logical AND....
https://notesformsc.org/c-plus-plus-logical-operators/
CC-MAIN-2021-04
en
refinedweb
32156/how-detach-and-delete-internet-gateway-from-vpc-using-boto3 Here is a simple implementation. You need to keep few things in mind and some prerequisite. You need to detach the ig from your VPC. You need to have the ig-id and the vpc-id to continue. import boto3 ec2 = boto3.resource('ec2') vpc = ec2.Vpc('vpc-id') g...
https://www.edureka.co/community/32156/how-detach-and-delete-internet-gateway-from-vpc-using-boto3
CC-MAIN-2021-04
en
refinedweb
Alpha Vantage DataFeed Hello, I'm pretty new to Python coding and Backtrader. However I have done some backtests using the Alpaca API and it worked without to much problems. I would to use the Alpha-Vantage API because they provide not only stock data, but also FOREX and Crypto. First I tried the Code I found here: fro...
https://community.backtrader.com/topic/3344/alpha-vantage-datafeed
CC-MAIN-2021-04
en
refinedweb
Vrije Universiteit Brussel – Belgium Faculty of Sciences In Collaboration with Ecole des Mines de Nantes – France 2005 IPSComp: Intelligent Portal for Searching Components A Thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Computer Science (Thesis research conducted in ...
https://manualzz.com/doc/48360914/vrije-universiteit-brussel-%E2%80%93-belgium-ipscomp
CC-MAIN-2021-04
en
refinedweb
Sentry catches loggings and errors from client applications. The only way I know of creating a project in Sentry is by manually submitting the form in the Web application interface. I'm searching for a way to create a project into Sentry from the command line in any way (options, config file) ? This would be greatly va...
https://codedump.io/share/eBdIpDZ2YzEq/1/create-a-project-from-command-line
CC-MAIN-2017-43
en
refinedweb
*autocmd.txt* Nvim VIM REFERENCE MANUAL by Bram Moolenaar Automatic commands *autocommand* For a basic explanation, see section |40.3| in the user manual. Type <M-]> to see the table of contents. ============================================================================== 1. Introduction *autocmd-intro* You can speci...
https://neovim.io/doc/user/autocmd.html
CC-MAIN-2017-43
en
refinedweb
Java provides a rich set of built-in operators which can be categorized as follows. - Arithmetic Operators - Relational Operators - Increment and Decrement Operators - Logical Operators - Assignment Operators Arithmetic Operations Arithmetic Operators are the operators which perform arithmetic calculations on operands ...
https://www.codesdope.com/java-operators/
CC-MAIN-2017-43
en
refinedweb
I have a prewritten java program to calculate the total of monthly bills. It should execute until the user enters "done" instead of bill type. After the user enters a bill type, he should be asked to enter the bill amount. I don't have a clue where to start. The prewritten program is as follows.... // MonthlyBills.java...
http://forums.devx.com/showthread.php?148769-accumulating-totals-in-a-loop&p=443101&mode=threaded
CC-MAIN-2017-43
en
refinedweb
3-LED Backlight: Xamarin and Arduino With HC05 Introduction: 3-LED Backlight: Xamarin and Arduino With HC05 Hello dear community, Today im gonna show you how to make a full Androidapp-controllable LED Backlight for your TV for under 10$. In this Instructable i will show you: - To use my Xamarin Bluetooth-APP(Open Sourc...
http://www.instructables.com/id/3-LED-Backlight-Xamarin-and-Arduino-With-HC05/
CC-MAIN-2017-43
en
refinedweb
Hi, I have a folder on our main network share (server 2008 OS) that permissions seem to not work. EG, let's say I'm in this folder: \\server\share\\folder1\folder2\ There are 2 folders in here. a folder called mydata1 and mydata2. so mydata1 inherits permissions and works fine. mydata2, however, does not inherit permis...
https://community.spiceworks.com/topic/459965-one-folder-in-windows-share-randomly-disappears-permissions-don-t-work
CC-MAIN-2017-43
en
refinedweb
27 August 2012 06:17 [Source: ICIS news] SINGAPORE (ICIS)--A vehicle collision between a passenger bus and a methanol tank truck on killed 36 early Sunday morning, China News Agency reported on Monday. The accident occurred at 2:00 local time ?xml:namespace> The truck was enroute to deliver about 35 tonnes of methanol ...
http://www.icis.com/Articles/2012/08/27/9590097/methanol-truck-bus-collision-kills-36-in-shaanxi-china-report.html
CC-MAIN-2015-14
en
refinedweb
This project is archived and is in readonly mode. Floats are not exactly preserved Reported by Psycopg website | January 19th, 2013 @ 08:16 PM Submitted by: Div Shekhar Python float roundtrip to & from double precision seems to be losing precision. Occurring on both Mac & Linux: - OS X 10.8.2, Postgres.app 9.2.2.0, psy...
https://psycopg.lighthouseapp.com/projects/62710/tickets/145
CC-MAIN-2015-14
en
refinedweb
public class NeverSkipItemSkipPolicy extends java.lang.Object implements SkipPolicy SkipPolicyimplementation that always returns false, indicating that an item should not be skipped. clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait public NeverSkipItemSkipPolicy() public boolea...
http://docs.spring.io/spring-batch/apidocs/org/springframework/batch/core/step/skip/NeverSkipItemSkipPolicy.html
CC-MAIN-2015-14
en
refinedweb
H ?xml:namespace> The There are expectations that this decision by Uralkali could force Canpotex to follow a course and accept that the marketplace has dramatically changed, resulting in a lower price base and reduction in profit margins for the near term. ($1 = €0.75)
http://www.icis.com/resources/news/2013/07/30/9692458/potash-markets-producers-react-to-uralkali-export-withdrawal/
CC-MAIN-2015-14
en
refinedweb
16 March 2007 06:36 [Source: ICIS news] SINGAPORE (ICIS news)--Formosa Petrochemical Corp (FPC) will not increase its ethylene dichloride (EDC) capacity after the startup of the new upstream No 3 cracker in Mailiao and increase in available feedstock, a company source said on Friday. Production at FPC’s 1m tonne/year E...
http://www.icis.com/Articles/2007/03/16/9014017/formosa-keeps-edc-capacity-despite-new-cracker.html
CC-MAIN-2015-14
en
refinedweb
Preface ======= [RT] are Ramdom Thoughts. This is a tradition in the Cocoon. (preface by Sam Ruby :) Context ======= I am looking at the experimental merlin container (avalon.apache.org/sandbox/merlin) in development @ avalon, in particular comparing it to phoenix and fortress (two other containers @ avalon). I am look...
http://mail-archives.apache.org/mod_mbox/cocoon-dev/200304.mbox/%3Cb7kj2v$i7b$1@main.gmane.org%3E
CC-MAIN-2015-14
en
refinedweb
Umbraco/Create xslt exstension like umbraco.Library in C Create a new xslt extension like umbraco.library in C#. Sometimes you need more functionality in your xslt, and most of the time umbraco.Library is enough. But what do you do if that isn’t enough? There are 2 ways to create your own functions 1. Inline code. 2. x...
http://en.wikibooks.org/wiki/Umbraco/Create_xslt_exstension_like_umbraco.Library_in_C
CC-MAIN-2015-14
en
refinedweb
This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project. "make bootstrap" for cross builds "personal" branch? 'make bootstrap' oprofile (13% on bash?) -finstrument-functions and C++ exceptions 2 suggestions 3.4.3 on Solaris9, boehm-gc probs. 4.0 regression: g++ class layout on PPC32 has changed...
http://gcc.gnu.org/ml/gcc/2005-04/subjects.html
CC-MAIN-2015-14
en
refinedweb
sd_listen_fds, SD_LISTEN_FDS_START — Check for file descriptors passed by the system manager #include <systemd/sd-daemon.h> #define SD_LISTEN_FDS_START 3 sd_listen_fds() shall be called by a daemon to check for file descriptors passed by the init system as part of the socket-based activation logic. If the unset_environ...
http://www.freedesktop.org/software/systemd/man/sd_listen_fds.html
CC-MAIN-2015-14
en
refinedweb
I'm trying to get my program to count the occurences of vector in a file in the same directory as the program. Basic stuff, I just don't know how to get the for(int i = 0; word == "vector"; i++) right i think anyone got advice. Code:#include <iostream> #include <fstream> #include <vector> #include <string> using namesp...
http://cboard.cprogramming.com/cplusplus-programming/143368-soooooo-my-word-recognition-isn%27t-right-i-think.html
CC-MAIN-2015-14
en
refinedweb
Source on "the source" Download the J2SE 5.0 Source using SCSL or JRL You can now download the Source code for J2SE 5.0 using either the Sun Community Source License (SCSL) or the Java Research License (JRL). You can find out more about the JRL here on java.net and follow the link to the J2SE source download from the J...
https://weblogs.java.net/blog/editors/archives/2004/11/source_on_the_s.html
CC-MAIN-2015-14
en
refinedweb
Fabulous Adventures In Coding Eric Lippert is a principal developer on the C# compiler team. Learn more about Eric. Here's an inconvenient truth: just about every "public surface area" change you make to your code is a potential breaking change. First off, I should clarify what I mean by a "breaking change" for the pur...
http://blogs.msdn.com/b/ericlippert/archive/2012/01/09/10250547.aspx
CC-MAIN-2015-14
en
refinedweb
Advanced Filters This sample demonstrates a Windows Communication Foundation (WCF) routing service. The routing service is a WCF component that makes it easy to include a content-based router in your application. This sample adapts the standard WCF Calculator sample to communicate using the routing service. This sample...
https://msdn.microsoft.com/en-us/library/ee667249.aspx
CC-MAIN-2015-14
en
refinedweb
The MainWindow Class The MainWindow class is responsible for displaying the main window and also functions as the controller. In a larger system I would probably split it into multiple files and maybe use some application framework, but in such a small utility I felt okay with just managing everything in a single class...
http://www.drdobbs.com/architecture-and-design/your-own-mp3-duration-calculator/222500141?pgno=4
CC-MAIN-2015-14
en
refinedweb
iOS project with your desired networks via CocoaPods and manual setup, and configure all your ad formats. Minimum requirements: - iOS 10.0 or higher. You still can integrate Appodeal SDK into a project with a lower value of minimum iOS version. However, on devices that don’t support iOS 10.0+ our SDK will just be disa...
https://wiki.appodeal.com/en/ios-beta-3-0-0/get-started
CC-MAIN-2022-27
en
refinedweb
Spark Message and Meet Widget (widget-message-meet) - THIS WIDGET CONTAINS EXPERIMENTAL CODE * The Spark Message Meet widget allows developers to easily incorporate Cisco Spark 1 on 1 messaging into an application. Table of Contents Background This widget handles the heavy lifting of coordinating between your applicati...
https://www.npmtrends.com/@ciscospark/widget-message-meet
CC-MAIN-2022-27
en
refinedweb
How to extract licenses from headers¶ Sometimes there is no license file, and you will need to extract the license from a header file, as in the following example: def package(): # Extract the License/s from the header to a file tmp = tools.load("header.h") license_contents = tmp[2:tmp.find("*/", 1)] # The license begi...
https://docs.conan.io/en/1.31/howtos/extract_licenses_from_headers.html
CC-MAIN-2022-27
en
refinedweb
Available with Spatial Analyst license. Available with Image Analyst license. Summary Returns 1 for cells where the first raster is less than the second raster and 0 if it is not. Illustration Discussion The relational less-than operation evaluates the first input value in relation to the second input value on a cell-b...
https://pro.arcgis.com/en/pro-app/latest/arcpy/spatial-analyst/relational-less-than-operator.htm
CC-MAIN-2022-27
en
refinedweb
Sample Code /* * Copyright 2019.add_a_point_scene_layer; import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.layout.StackPane; import javafx.stage.Stage; import com.esri.arcgisruntime.ArcGISRuntimeEnvironment;Style; import com.esri.arcgisruntime.mapping.view.SceneView; import com.esri...
https://developers.arcgis.com/java/sample-code/add-point-scene-layer/
CC-MAIN-2022-27
en
refinedweb
Modified from the Medium blog post by Noel Gorelick Histogram matching is a quick and easy way to "calibrate" one image to match another. In mathematical terms, it's the process of transforming one image so that the cumulative distribution function (CDF) of values in each band matches the CDF of bands in another image....
https://developers.google.cn/earth-engine/tutorials/community/histogram-matching
CC-MAIN-2022-27
en
refinedweb
Windows Subsystems¶ On Windows, you can run different subsystems that enhance the operating system with UNIX capabilities. Conan supports MSYS2, CYGWIN, WSL and in general any subsystem that is able to run a bash shell. Many libraries use these subsystems in order to use the Unix tools like the Autoconf suite that gene...
https://docs.conan.io/en/1.32/systems_cross_building/windows_subsystems.html
CC-MAIN-2022-27
en
refinedweb
Clipping images with patches# Demo of image that's been clipped by a circular patch. import matplotlib.pyplot as plt import matplotlib.patches as patches import matplotlib.cbook as cbook with cbook.get_sample_data('grace_hopper.jpg') as image_file: image = plt.imread(image_file) fig, ax = plt.subplots() im = ax.imshow(...
https://matplotlib.org/stable/gallery/images_contours_and_fields/image_clip_path.html
CC-MAIN-2022-27
en
refinedweb
Translates predefined Japanese character classes. Standard C Library (libc.a) #include <ctype.h> int atojis (Character) int Character; int jistoa (Character) int Character; int _atojis (Character) int Character; int _jistoa (Character) int Character; int tojupper (Character) int Character; int tojlower (Character) int ...
http://ps-2.kev009.com/tl/techlib/manuals/adoclib/libs/basetrf1/jconv.htm
CC-MAIN-2022-27
en
refinedweb
Typed, extensible, dependency free configuration reader for Python projects for multiple config sources and working well in IDEs for great autocomplete performance. Project description typed-config Typed, extensible, dependency free configuration reader for Python projects for multiple config sources and working well i...
https://pypi.org/project/typed-config/
CC-MAIN-2022-27
en
refinedweb
12672/how-to-exit-from-python-without-traceback shutil has many methods you can use. One ...READ MORE You are presumably encountering an exception and ...READ MORE Using the default CSV module Demo: import csv with open(filename, "r") ...READ MORE print(*names, sep = ', ') This is what ...READ MORE You can also use the...
https://www.edureka.co/community/12672/how-to-exit-from-python-without-traceback
CC-MAIN-2022-27
en
refinedweb
Get the maximum priority for the scheduling policy #include <sched.h> int sched_get_priority_max( int policy ); libc Use the -l c option to qcc to link against this library. This library is usually included automatically. The sched_get_priority_max() function returns the maximum value for the scheduling policy specifie...
http://www.qnx.com/developers/docs/qnxcar2/topic/com.qnx.doc.neutrino.lib_ref/topic/s/sched_get_priority_max.html
CC-MAIN-2022-27
en
refinedweb
Kubernetes - vi-credo/knowledge_corner Wiki ContentsContents - Architecture - Installation and configuration - Maintenance - API - Manifest - Pod - Controllers - Scheduling - Autoscaling - Resource management - Observability - Monitoring - Network - Storage - Security - kubectl - References Registration (new nodes can ...
https://github-wiki-see.page/m/vi-credo/knowledge_corner/wiki/Kubernetes
CC-MAIN-2022-27
en
refinedweb
How Amazon Keyspaces works with IAM Before you use IAM to manage access to Amazon Keyspaces, you should understand what IAM features are available to use with Amazon Keyspaces. To get a high-level view of how Amazon Keyspaces and other AWS services work with IAM, see AWS services that work with IAM in the IAM User Guid...
https://docs.aws.amazon.com/keyspaces/latest/devguide/security_iam_service-with-iam.html
CC-MAIN-2022-27
en
refinedweb
Implement a user profile service Use a User Profile Service to persist information about your users and ensure variation assignments are sticky. The User Profile Service implementation you provide will override Optimizely's default bucketing behavior in cases when an experiment assignment has been saved. When implement...
https://docs.developers.optimizely.com/full-stack/docs/implement-a-user-profile-service-go
CC-MAIN-2022-27
en
refinedweb
Documentation ¶ Overview ¶ Package buildmerge implements the build.proto tracking and merging logic for luciexe host applications. You probably want to use `go.chromium.org/luci/luciexe/host` instead. This package is separate from luciexe/host to avoid unnecessary entaglement with butler/logdog; All the logic here is i...
https://pkg.go.dev/github.com/tetrafolium/luci-go/luciexe/host/buildmerge
CC-MAIN-2022-27
en
refinedweb
Data common code for database interactions by Equinox Project description Equinox Common Code Utility for Python 3 for DB interactions! There are currently interaction classes for the following DBs and Apps: - MSSQL - MySQL - SQLite - Postgres - Redshift Quick Start Sample Usage from datacoco_db import MSSQLInteraction...
https://pypi.org/project/datacoco-db/0.1.10/
CC-MAIN-2022-27
en
refinedweb
#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> s = socket(AF_INET, SOCK_STREAM, 0); #include <paths.h> #include <fcntl.h> #include <netinet/ip_var.h> #include <netinet/tcp.h> #include <netinet/in_pcb.h> #include <netinet/tcp_timer.h> #include <netinet/tcp_var.h> fd = open(_PATH_TCP, flags); Sock...
http://osr507doc.xinuos.com/en/man/html.ADMP/tcp.ADMP.html
CC-MAIN-2019-30
en
refinedweb
Chapter 31. Customizing the Web Console 31.1. Overview Administrators can customize the web console using extensions, which let you run scripts and load custom stylesheets when the web console loads. Extension scripts allow you to override the default behavior of the web console and customize it for your needs. For exa...
https://access.redhat.com/documentation/en-us/openshift_container_platform/3.4/html/installation_and_configuration/install-config-web-console-customization
CC-MAIN-2019-30
en
refinedweb
import "k8s.io/client-go/kubernetes/typed/coordination/v1beta1/fake" Package fake has the automatically generated clients. doc.go fake_coordination_client.go fake_lease.go func (c *FakeCoordinationV1beta1) Leases(namespace string) v1beta1.LeaseInterface func (c *FakeCoordinationV1beta1) RESTClient() rest.Interface REST...
https://godoc.org/k8s.io/client-go/kubernetes/typed/coordination/v1beta1/fake
CC-MAIN-2019-30
en
refinedweb
Paul Morrow wrote: >Jeff Epler wrote: >> In your proposed model, what does the following code do? >> def f(): >> __var__ = 3 >> return __var__ >> f.__var__ += 1 >> print f() >> > > Only assignments to __xxx__ variables at the very start of a function > def would have this special semantics. So your return statement wou...
https://mail.python.org/pipermail/python-list/2004-September/278936.html
CC-MAIN-2019-30
en
refinedweb
No more null check with an dart equivalent of Maybe (Haskel, Elm) / Option (F#). The key is that you need to call the some or when to access your potential value so you are forced to check its status before using it. Maybe<T>.nothing: creating an optional item that is empty final maybe = Maybe<String>.nothing(); Maybe....
https://pub.dev/packages/maybe
CC-MAIN-2019-30
en
refinedweb
Package org.eclipse.core.runtime Class InvalidRegistryObjectException - java.lang.Object - java.lang.Throwable - java.lang.Exception - java.lang.RuntimeException - org.eclipse.core.runtime.InvalidRegistryObjectException - All Implemented Interfaces: Serializable public class InvalidRegistryObjectException extends Runti...
http://help.eclipse.org/2019-03/topic/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/runtime/InvalidRegistryObjectException.html
CC-MAIN-2019-30
en
refinedweb
This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 400,000 packages pre-installed, including stack-overflow-copy-paste with all npm packages installed. Try it out: require()any package directly from npm awaitany promise instead of using callbacks (example) This service is...
https://npm.runkit.com/stack-overflow-copy-paste
CC-MAIN-2019-30
en
refinedweb
Question: where to find detailed description and working examples of Python regular expressions? 1 2.6 years ago by natasha.sernova • 3.5k natasha.sernova • 3.5k wrote: Dear all! I know Python regexps were taken from Perl, but in my opinion they lost a lot in this transition. So far I've found several "theoretical" exa...
https://www.biostars.org/p/223755/
CC-MAIN-2019-30
en
refinedweb
AWSSDK AppleOS Version of the AWS SDK for the Swift programming language that supports Apple platforms (including iOS) as first class citizens. This repository is based off the aws-sdk-swift repository. As this version is reliant on Network.framework it only works for Apple platforms, but it does support iOS unlike aws...
https://swiftpack.co/package/swift-aws/aws-sdk-appleos
CC-MAIN-2019-30
en
refinedweb
[ ] Timothy M. Rodriguez commented on LUCENE-8000: ---------------------------------------------- Makes sense, agreed on both points. > Document Length Normalization in BM25Similarity correct? > -------------------------------------------------------- > > Key: LUCENE-8000 > URL: > Project: Lucene - Core > Issue Type: B...
http://mail-archives.us.apache.org/mod_mbox/lucene-dev/201710.mbox/%3CJIRA.13110693.1508425995000.9331.1508429581168@Atlassian.JIRA%3E
CC-MAIN-2019-30
en
refinedweb
Dave Yeo <daveryeo at telus.net> writes: > libavformat now has a dependency on libavutil causing this error on a libavformat has depended on libavutil for as long as libavutil has existed. Nothing has changed there. > static build (similar error building a shared libavformat) > [...] > R:\tmp\ldconv_libavformat_s_a_744...
http://ffmpeg.org/pipermail/ffmpeg-devel/2010-June/090962.html
CC-MAIN-2017-17
en
refinedweb
A BGP update packet can have many NLRIs. More... #include <trie_payload.hh> A BGP update packet can have many NLRIs. Each NLRI is stored in a trie node. Rather than keep multiple copies of a BGP update packet. A single reference counted copy is kept in TrieData. A TriePayload is stored in the trie and holds a pointer t...
http://xorp.org/releases/current/docs/kdoc/html/classTrieData.html
CC-MAIN-2017-17
en
refinedweb
> lib > > > This generally means that 'using namespace std;' needs to be added to the top of the file. But why wouldn't this have been fixed for hppa or ia64? ===== James Morrison University of Waterloo Computer Science - Digital Hardware 2A co-op Anyone refering this as 'Open Source' shall be eaten by a GNU __________...
https://lists.debian.org/debian-hurd/2002/05/msg00095.html
CC-MAIN-2017-17
en
refinedweb
hi, Through getter setter methods we can indirectly access private data members of the class as shown in the below code. Then what is the significance of encapsulation in OOPS concept. I am not getting the appropiate answer for that. Can anyone help me? Thanks in advance #include<iostream> using namespace std; class Te...
https://www.daniweb.com/programming/software-development/threads/289946/encapsulation
CC-MAIN-2017-17
en
refinedweb
extend traitwillMessagewQueuewrappedQueuewrappedQueuewrapped in an akka.util.PriorityQueueStabilizerMessagewith higher priority - Backed by two java.util.concurrent.ConcurrentLinkedQueueand blocking on enqueue if capacity has been reached - Blocking: Yes if used with non-zero mailbox-push-timeout-time, otherwise No - ...
http://doc.akka.io/docs/akka/current/scala/mailboxes.html
CC-MAIN-2017-17
en
refinedweb
mmap, mmap64 mmap(), mmap64() Map a memory region into a process's address space Synopsis: #include <sys/mman.h> void * mmap( void * addr, size_t len, int prot, int flags, int fildes, off_t off ); void * mmap64( void * addr, size_t len, int prot, int flags, int fildes, off64_t off ); Arguments: - addr - NULL, or a poin...
http://www.qnx.com/developers/docs/6.4.1/neutrino/lib_ref/m/mmap.html
CC-MAIN-2017-17
en
refinedweb
Opened 8 years ago Closed 7 years ago Last modified 17 months ago #8486 closed enhancement (fixed) make trac.web.auth.LoginModule cookie path configurable Description (last modified by ) Currently, the LoginModule sets (and deletes) a cookie on req.base_path: req.outcookie['trac_auth'] = cookie req.outcookie['trac_auth...
https://trac.edgewall.org/ticket/8486
CC-MAIN-2017-17
en
refinedweb
hello people, its the very first time im doing programming stuff.And i have done nothing so far.I found a booklet in my bookcase,it's about C++.,ts just the first booklet of a serie. i use visual c++ 2008 express,i did new>file>C++ i used the same codes as in the booklet,here it is //File Name: Source1.cpp //This is my...
https://www.daniweb.com/programming/software-development/threads/169032/i-cant-compile-help
CC-MAIN-2017-17
en
refinedweb
Tk_GetScrollInfoObj man page Tk_GetScrollInfoObj, Tk_GetScrollInfo — parse arguments for scrolling commands Synopsis #include <tk.h> int Tk_GetScrollInfoObj(interp, objc, objv, dblPtr, intPtr) int Tk_GetScrollInfo(interp, argc, argv, dblPtr, intPtr) Arguments - Tcl_Interp *interp (in) Interpreter to use for error repor...
https://www.mankier.com/3/Tk_GetScrollInfoObj
CC-MAIN-2017-17
en
refinedweb
A class that encapsulates a newick string description of a tree and metadata about the tree. More... #include <nxstreesblock.h> A class that encapsulates a newick string description of a tree and metadata about the tree. the NxsTreesBlock stores the trees as NxsFullTreeDescription because during its parse and validatio...
http://phylo.bio.ku.edu/ncldocs/v2.1/funcdocs/classNxsFullTreeDescription.html
CC-MAIN-2017-17
en
refinedweb
To turn C++ code into a runnable program, you need to compile and link the code. Compiling the code puts it together into things called libraries (lib files). Linking the code uses the information in these libraries to build a program. The program is the ultimate goal of the compile-and-link stage. The programs are usu...
http://www.slac.stanford.edu/BFROOT/www/doc/workbook/compile/compile.html
CC-MAIN-2017-17
en
refinedweb
Processing Atom 1.0 September 14, 2005 In the fast-moving world of weblogs and Web-based marketing, the approval of the Atom Format 1.0 by the Internet Engineering Task Force (IETF) as a Proposed Standard is a significant and lasting development. Atom is a very carefully designed format for syndicating the contents of ...
http://www.xml.com/pub/a/2005/09/14/processing-atom-in-python.html
CC-MAIN-2017-17
en
refinedweb
Difference between revisions of "Chatlog 2013-02-25" From Linked Data Platform Latest revision as of 19:00, 25 February 2013 See original RRSAgent log or preview nicely formatted version. Please justify/explain all edits to this page, in your "edit summary" text. 14:58:37 <RRSAgent> RRSAgent has joined #ldp 14:58:37 <R...
http://www.w3.org/2012/ldp/wiki/index.php?title=Chatlog_2013-02-25&curid=108&diff=2248&oldid=2247
CC-MAIN-2014-35
en
refinedweb
The base Teuchos class. More... #include <Teuchos_Object.hpp> The Object class provides capabilities common to all Teuchos objects, such as a label that identifies an object instance, constant definitions, enum types. Definition at line 56 of file Teuchos_Object.hpp. Default Constructor. Object is the primary base clas...
http://trilinos.sandia.gov/packages/docs/r10.4/packages/teuchos/doc/html/classTeuchos_1_1Object.html
CC-MAIN-2014-35
en
refinedweb
13 June 2012 05:42 [Source: ICIS news] SINGAPORE (ICIS)--China Resources will start up its new 300,000 tonne/year polyethylene terephthalate (PET) bottle chip line at Zhuhai on 15 June, a company source said on Friday. The company is running its two newer PET bottle chip lines at ?xml:namespace> The company has another...
http://www.icis.com/Articles/2012/06/13/9568812/china-resources-to-start-up-pet-bottle-chip-line-at.html
CC-MAIN-2014-35
en
refinedweb
On Wed, Mar 04, 2009 at 09:31:44PM +0100, Fons Adriaensen wrote: > On Wed, Mar 04, 2009 at 05:06:08PM +0100, Michael Niedermayer. What i meant was that following the first time things behave somehow "asymetrically" giving the first time a much higher effective weight ... > > > and then "add" future times slowly into th...
http://ffmpeg.org/pipermail/ffmpeg-devel/2009-March/072359.html
CC-MAIN-2014-35
en
refinedweb
Previous article I'm using the same example as in my previous article, so the following are all the terms and code from the previous example: //Simple delegate declaration public delegate int BinaryOp(int x, int y); //An Add() method that do some simple arithamtic operation public int Add(int a, int b) { Console.WriteL...
http://www.c-sharpcorner.com/UploadFile/vendettamit/delegate-and-async-programming-C-Sharp-asynccallback-and-object-state/
CC-MAIN-2014-35
en
refinedweb
29 July 2011 13:01 [Source: ICIS news] SHANGHAI (ICIS)--Offers for 57% diammonium phosphate (DAP) on the Chinese domestic market have reached yuan (CNY) 3,050/tonne EXW (ex-works), up by CNY50–100/tonne in the past month on strong demand, industry sources said on Friday. Currently, Chinese producers are providing a lim...
http://www.icis.com/Articles/2011/07/29/9481164/chinas-domestic-57-dap-prices-continue-to-rise-on-strong.html
CC-MAIN-2014-35
en
refinedweb
#!/usr/bin/env python # authored by shane lindberg # This script makes configuration files for mplayer. In particular it makes a configuration that crops widescreen # avi files so they will better fit your 4:3 aspect tv or computer moniter # to run this program you need to to be in the directory that contains your avi ...
http://www.linuxquestions.org/questions/linux-software-2/watch-your-widescreen-movies-more-full-screen-349052/
CC-MAIN-2014-35
en
refinedweb
10 July 2008 18:56 [Source: ICIS news] LONDON (ICIS news)--?xml:namespace> With Chinese exports all but excluded, granular urea supply for the As a result, the forward urea market is strong. Following this, CF Industries increased its list prices, quoting $800/short ton FOB for August, $810/short ton for September, $82...
http://www.icis.com/Articles/2008/07/10/9139405/us-urea-hits-record-high-800-for-q1-2009.html
CC-MAIN-2014-35
en
refinedweb
Supplies NOX with the set nonlinear equations. More... #include <NOX_Epetra_Interface_Required.H> Supplies NOX with the set nonlinear equations. This is the minimum required information to solve a nonlinear problem using the NOX::Epetra objects for the linear algebra implementation. Used by NOX::Epetra::Group to provid...
http://trilinos.sandia.gov/packages/docs/r10.12/packages/nox/doc/html/classNOX_1_1Epetra_1_1Interface_1_1Required.html
CC-MAIN-2014-35
en
refinedweb
COSMOSDataCollectionMeeting20071113 From Eclipsepedia Agenda - Status updates and agenda changes - Review action items - F2F wrapup and followup items: - Code Refactoring (Hubert) - Annotations (Joel) - Error Logging (Jack/ Martin) Attendees - Don Ebright - Joel Hawkins - Hubert Leung - Jack Devine - Martin Simmonds - ...
http://wiki.eclipse.org/COSMOSDataCollectionMeeting20071113
CC-MAIN-2014-35
en
refinedweb
Difference between revisions of "Hammer LCD 8bit Color STN" Revision as of 17:50, 13 May 2011 This is a "HowTo" for the Panasonic EDMGRB8KJF (Datasheet) available from EarthLCD to be used with the Hammer development module from TinCanTools NOTE: This screen is an 8-bit STN screen, however in order to use it on the S3C2...
http://elinux.org/index.php?title=Hammer_LCD_8bit_Color_STN&diff=47581&oldid=15609
CC-MAIN-2014-35
en
refinedweb
I write perl for fun and profit. My namespace. I've had the chance to meet some of thee. Please let me know if I've forgotten anyone: Tron Wargames Hackers (boo!) The Net Antitrust (gahhh!) Electric dreams (yikes!) Office Space Jurassic Park 2001: A Space Odyssey None of the above, please specify Results (109 votes), p...
http://www.perlmonks.org/?node_id=140506
CC-MAIN-2014-35
en
refinedweb
I actually just started trying the C++ tutorials on the main site last night, and I'm now completely and utterly engrossed. I don't know why I suddenly decided I wanted to learn a programming language, but anyway, that's not important. I've hit a snag somewhere, well, it's probably something really simple that I'm too ...
http://cboard.cprogramming.com/cplusplus-programming/86988-never-programmed-before-got-problem.html
CC-MAIN-2014-35
en
refinedweb
« Return to documentation listing #include <mpi.h> MPI_Put(const void *origin_addr, int origin_count, MPI_Datatype origin_datatype, int target_rank, MPI_Aint target_disp, int target_count, MPI_Datatype target_datatype, MPI_Win win) INCLUDE ’mpif.h’ MPI_PUT(ORIGIN_ADDR, ORIGIN_COUNT, ORIGIN_DATATYPE, TARGET_RANK, TARGET...
http://icl.cs.utk.edu/open-mpi/doc/v1.7/man3/MPI_Put.3.php
CC-MAIN-2014-35
en
refinedweb
.subject.support; 20 21 import org.apache.shiro.subject.Subject; 22 import org.apache.shiro.util.ThreadState; 23 24 /** 25 * A {@code SubjectRunnable} ensures that a target/delegate {@link Runnable Runnable} will execute such that any 26 * call to {@code SecurityUtils.}{@link org.apache.shiro.SecurityUtils#getSubject()...
http://shiro.apache.org/static/1.2.2/xref/org/apache/shiro/subject/support/SubjectRunnable.html
CC-MAIN-2014-35
en
refinedweb
If you have not already read my first article (from several years ago), please do so now. Now that you are done, welcome back! I've received a lot of positive feedback regarding the first article, and had always intended on writing another one on the topic, but years passed. Well, here it finally is, long overdue! The ...
http://www.codeproject.com/Articles/21118/Plug-ins-in-C-Generics-Enabled-Extension-Libra?msg=2319280
CC-MAIN-2014-35
en
refinedweb
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 #include "stdafx.h" #include <iostream> #include <string> using namespace std; int main() { string name; double Total_amount_of_money, Remainder; double const One_Dollar = 100, Dollarv = 1, HDollarv = .50, Quarterv = .25, Dimev = .1...
http://www.cplusplus.com/forum/beginner/1685/
CC-MAIN-2014-35
en
refinedweb
perlmeditation agianni <readmore> <table width="100%"><tr> <td align="left"> <i>[node://622705|<#1 - Extract Method]</i> </td> <td align="center"><i><a href="?node_id=3989&n0=0&BIT=&BIS=+&BH=1&HIT=refactoring+perl&HIS=+&xa=0&a=agianni&nf=0&yr=&mo=&dy=&xs=0&M=1&BET=&BES=+&HET=&HES=+&xr=0&re=N&xpa=0&pa=&go=Search&as_user...
http://www.perlmonks.org/?displaytype=xml;node_id=623470
CC-MAIN-2014-35
en
refinedweb
If. Introduction to Clojure v2 A fun and gentle introduction to the Clojure language, functional programming, and data-drive programming, through the eyes of baking robot X5. 3 Functional Tools Learn these three tools -- map, filter, and reduce-- and you'll be well on your way to developing a functional mindset. If you...
https://purelyfunctional.tv/learning-paths/object-oriented-programmer/
CC-MAIN-2020-34
en
refinedweb
Important changes to forums and questions All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com. 1 year, 11 months ago. Playing with sleep modes. Why does this code perform as it does. It starts out in a sleep mode pulling around 600uA as measured on the...
https://os.mbed.com/questions/82109/Playing-with-sleep-modes/
CC-MAIN-2020-34
en
refinedweb
Managing the Compute Grid¶ Overview¶ Users in Domino assign their Runs to Domino Hardware Tiers. A hardware tier defines the type of machine a job will run on, and the resource requests and limits for the pod that the Run will execute in. When configuring a hardware tier, you will specify the machine type by providing ...
https://admin.dominodatalab.com/en/4.1/compute/compute-grid.html
CC-MAIN-2020-34
en
refinedweb
import "github.com/hyperledger/fabric/core/ledger/ledgermgmt" ErrLedgerAlreadyOpened is thrown by a CreateLedger call if a ledger with the given id is already opened ErrLedgerMgmtNotInitialized is thrown when ledger mgmt is used before initializing this type Initializer struct { CustomTxProcessors map[common.HeaderType...
https://godoc.org/github.com/hyperledger/fabric/core/ledger/ledgermgmt
CC-MAIN-2020-34
en
refinedweb
SD_BUS_IS_OPEN(3) sd_bus_is_open SD_BUS_IS_OPEN(3) sd_bus_is_open, sd_bus_is_ready - Check whether the bus connection is open or ready #include <systemd/sd-bus.h> int sd_bus_is_open(sd_bus *bus); int sd_bus_is_ready(sd_bus *bus);._start(3), sd_bus_close_IS_OPEN(3) Pages that refer to this page: sd_bus_get_connected_sig...
https://www.man7.org/linux/man-pages/man3/sd_bus_is_ready.3.html
CC-MAIN-2020-34
en
refinedweb
#include <qgsattributeform.h> Definition at line 29 of file qgsattributeform.h. Definition at line 41 of file qgsattributeform.cpp. Definition at line 67 of file qgsattributeform.cpp. Definition at line 153 of file qgsattributeform.h. Takes ownership. Definition at line 95 of file qgsattributeform.cpp. Notifies about c...
https://api.qgis.org/2.12/classQgsAttributeForm.html
CC-MAIN-2020-34
en
refinedweb
Alias analysis pass. More... #include <alias_analysis.h> Alias analysis pass. This pass produces an AliasDb that contains aliasing and mutation information about the graph. Users can use this information to determine whether mutations to the graph are safe, i.e. they don't reorder/change nodes in a way that affects out...
https://caffe2.ai/doxygen-c/html/classtorch_1_1jit_1_1_alias_db.html
CC-MAIN-2020-34
en
refinedweb
The following forum(s) have migrated to Microsoft Q&A: All English Microsoft Azure forums! Visit Microsoft Q&A to post new questions. I have added ApplicationInsights to my application and can host it locally and see the telemetry reaching my Application Insight Resource. However, when I deploy my application to the Az...
https://social.msdn.microsoft.com/Forums/azure/en-US/af020fe2-8418-4057-ab74-4f1f83839d7e/applicationinsightsconfig-is-not-being-used-in-azure-app-service?forum=ApplicationInsights
CC-MAIN-2020-34
en
refinedweb
When a Yii application starts processing a requested URL, the first step it takes is to parse the URL into a route. The route is then used to instantiate the corresponding controller action to handle the request. This whole process is called routing. The reverse process of routing is called URL creation, which creates ...
https://www.yiiframework.com/doc/guide/2.0/pl/runtime-routing
CC-MAIN-2020-34
en
refinedweb
Hi all, I just started using the Hadoop DFS last night, and it has already solved a big performance problem we were having with throughput from our shared NFS storage. Thanks for everyone who has contributed to that project. I wrote my own MapReduce implementation, because I needed two features that Hadoop didn't have:...
http://mail-archives.apache.org/mod_mbox/hadoop-common-user/200610.mbox/%3C2BB66C30-2DD8-48F8-BFC6-A3A7D02CFC70@cs.umass.edu%3E
CC-MAIN-2020-34
en
refinedweb
A custom service for token management (previously, one extending InstanceIDListenerService) is no longer required and should be removed. If you want to access the FCM token instead override the onNewToken method on FirebaseMessagingService. This is needed if you want to Manage device tokens to send a messages to single...
https://developers.google.com/cloud-messaging/android/android-migrate-iid-service?hl=ja
CC-MAIN-2020-34
en
refinedweb