text
stringlengths
20
1.01M
url
stringlengths
14
1.25k
dump
stringlengths
9
15
lang
stringclasses
4 values
source
stringclasses
4 values
I was having trouble with py2exe not getting the datafiles that it needed. I noticed someone else got it to work by copying all the files, but losing the directory structure. I tried that, but I still had missing datafiles at runtime. This function will return everything needed for py2exe to work correctly. Instead of ...
https://discourse.matplotlib.org/t/get-py2exe-datafiles-fix/7474
CC-MAIN-2022-21
en
refinedweb
Hi! I have a FileField which acutally stores an image. However, when the image is added or changed, I need to resize the image. Storage backend is s3botostorage. Here’s the mixin I wrote to resize the image which works well with local FileSystemStorage. class ImageResizeMixin: def resize_image(self, imageField: Union[m...
https://forum.djangoproject.com/t/django-filefield-resize-image-before-save-to-s3botostorage/7595
CC-MAIN-2022-21
en
refinedweb
....PFR is a C++14 library for a very basic reflection. It gives you access to structure elements by index and provides other std::tuple like methods for user defined types without macro or boilerplate code: #include <iostream> #include <string> #include "boost/pfr! std::cout << boost::pfr::io(val); // Outputs: {"Edgar...
https://www.boost.org/doc/libs/master/doc/html/boost_pfr.html
CC-MAIN-2022-21
en
refinedweb
A react native module that lets you to register a global error handler react. Example repo can be found here: * * Screens Without any error handling In DEV MODE In BUNDLED MODE With react-native-exception-handler in BUNDLED MODE Installation: yarn add react-native-exception-handler or npm i react-native-exception-handl...
https://reactnativeexample.com/a-react-native-module-that-lets-you-to-register-a-global-error-handler/
CC-MAIN-2019-13
en
refinedweb
When a Vue app gets large, lazy loading components, routes or Vuex modules using Webpack’s code splitting will boost it by loading pieces of code only when needed. We could apply lazy loading and code splitting in 3 different levels in a Vue app: But there is something they all have in common: they use dynamic import, ...
https://www.laravel-vuejs.com/lazy-loading-in-vue-using-webpacks-code-splitting/
CC-MAIN-2019-13
en
refinedweb
Terminals and their databases Let us go deeper into the very close relationship between console terminals and the escape/control sequences. In the old days, text terminals were Teletype hardware devices, each with its own command sequences to perform various operations. Due to this difference, not all command sequences...
https://opensourceforu.com/2011/11/spicing-up-console-for-fun-profit-2/
CC-MAIN-2019-13
en
refinedweb
Maintained by Aron Cedercrantz, John Sundell, Yunus Nedim Mehel. Welcome to the. The Hub Framework has two core concepts - Components & Content Operations.. You can choose to install the Hub Framework either manually, or through a dependency manager. HubFramework.xcprojinto Xcode as a subproject of your app project. Hu...
https://cocoapods.org/pods/HubFramework
CC-MAIN-2019-13
en
refinedweb
@Stateful @Local(EjbExampleUserStorageProvider.class) public class EjbExampleUserStorageProvider implements UserStorageProvider, UserLookupProvider, UserRegistrationProvider, UserQueryProvider, CredentialInputUpdater, CredentialInputValidator, OnUserCache { @PersistenceContext protected EntityManager em; protected Comp...
https://www.keycloak.org/docs/3.0/server_development/topics/user-storage/javaee.html
CC-MAIN-2019-13
en
refinedweb
Introduction The Python language has many advantages when it comes to scripting. The power of python can be felt when you start working with and try new things with it. It has modules which can be used to create scripts to automate stuff, play with files and folders, Image processing, controlling keyboard and mouse, we...
https://resources.infosecinstitute.com/python-security-professionals-part-1/
CC-MAIN-2019-13
en
refinedweb
How to play wma files? How to play wma files? >How to play wma files? How to search google? Seriously, this is a common question, so a decent google search will quickly give you a suitable answer. My best code is written with the delete key. Well, Windows Media Player is pretty good at playing it's own format Google Op...
https://cboard.cprogramming.com/cplusplus-programming/70321-playing-wma-files.html
CC-MAIN-2017-22
en
refinedweb
Horn Dependency: compile "org.grails.plugins:horn-jquery:1.0.57"Custom repositories: mavenRepo "" Summary Provides JS libraries and tags for embedding data in your HTML content using the HORN specification Description Provides JS libraries and tags for embedding data in your HTML content using the HORN specification.Th...
http://www.grails.org/plugin/horn-jquery
CC-MAIN-2017-22
en
refinedweb
Red Hat Bugzilla – Full Text Bug Listing Since version 1.2 of ansible, failed run ( due to connexion errors, or config error ) are listed into /var/tmp/ansible/$script_name.yml , with $script_name being the script name used ( or rather the playbook, in ansible linguo ) There is no verification on the file or directory ...
https://bugzilla.redhat.com/show_bug.cgi?format=multiple&id=998227
CC-MAIN-2017-22
en
refinedweb
The equalizer is available in pulseaudio's master git branch so instead of the git repository below, you may just want to compile from there. Getting the equalizer Binary packages are available for the following platforms:. openSUSE 11.2 and factory: Ubuntu 9.10: Add the following to your sources.list: deb karmic main ...
https://freedesktop.org/wiki/Software/PulseAudio/Documentation/User/Equalizer/?action=SpellCheck
CC-MAIN-2017-22
en
refinedweb
Skip navigation links java.lang.Object java.lang.Throwable java.lang.Exception oracle.irm.j2ee.jws.rights.context.CannotRemoveContextInstanceFault @WebFault(targetNamespace="", faultBean="oracle.irm.engine.types.rights.context.CannotRemoveContextInstanceException", name="CannotRemoveContextInstanceFault") public class ...
http://docs.oracle.com/cd/E28280_01/apirefs.1111/e12907/oracle/irm/j2ee/jws/rights/context/CannotRemoveContextInstanceFault.html
CC-MAIN-2017-22
en
refinedweb
Download presentation Presentation is loading. Please wait. Published byJerome Radcliffe Modified over 2 years ago 1 Error Handling in.NET Exceptions 2 Error Handling Old way (Win32 API and COM): MyFunction() { error_1 = doSomething(); if (error_1) display error else { continue processing if (error_2) display error els...
http://slideplayer.com/slide/3725394/
CC-MAIN-2017-22
en
refinedweb
@Target(value={METHOD,TYPE}) @Retention(value=RUNTIME) @Documented public @interface CrossOrigin By default, all origins and headers are permitted. NOTE: @CrossOrigin will only be processed if an appropriate HandlerMapping- HandlerAdapter pair is configured such as the RequestMappingHandlerMapping- RequestMappingHandle...
http://docs.spring.io/spring/docs/4.3.0.RC2/javadoc-api/org/springframework/web/bind/annotation/CrossOrigin.html
CC-MAIN-2017-22
en
refinedweb
sorry if the title is a bit unclear/ambiguous but I am unsure of how so get the following code bound via Fluent API (if it's even required) public class ChatUser { [Key] public int ChatUserId { get; set; } public string Name { get; set; } public bool IsOnline { get; set; } // other properties // navigation properties p...
http://www.dreamincode.net/forums/topic/303425-entity-framework-reference-same-entity-twice/
CC-MAIN-2017-22
en
refinedweb
#include <GameStartMenuItem.h> Inheritance diagram for UI::GameStartMenuItem: Definition at line 26 of file GameStartMenuItem.h. Create with specified label to start specified track. Definition at line 26 of file GameStartMenuItem.cpp. Definition at line 34 of file GameStartMenuItem.cpp. Start the game. This is called ...
http://racer.sourceforge.net/classUI_1_1GameStartMenuItem.html
CC-MAIN-2017-22
en
refinedweb
A logic circuit, consisting of gates, flipflops etc., performs boolean operations on it's input lines and assigns the results to it's output lines. At the very basic level, a person desirous of simulating a logic circuit will find it easy and intuitive to describe circuits at the gate level. As the circuits become larg...
http://liblcs.sourceforge.net/userguide/Continuous-Assignments.html
CC-MAIN-2017-22
en
refinedweb
You've probably heard the buzz about DB2's V9 -- IBM's first database management system to support both tabular (SQL-based) and hierarchical (XML-based) data structures. If you're curious about DB2's new native support for XML and want to get off to a fast start, you've come to the right place. To help you quickly get ...
http://www.ibm.com/developerworks/data/library/techarticle/dm-0603saracco/?S_TACT=105AGY75
CC-MAIN-2015-06
en
refinedweb
23 March 2009 11:22 [Source: ICIS news] SINGAPORE (ICIS news)--BP Petronas Acetyls (BPPA) has been shutting its 535,000 tonne/year acetic acid plant at Kerteh, Trengganu, Malaysia, intermittently since mid-March due to supply issues with the feedstock carbon monoxide (CO), a company official said on Monday. “Our produc...
http://www.icis.com/Articles/2009/03/23/9202265/bp-petronas-acetic-acid-unit-faces-intermittent-shutdowns.html
CC-MAIN-2015-06
en
refinedweb
All classes are in the same monolithic source file. USE doesn't appear to like that and searches for actual .pm files... so I used import which seems to give me the symboltables (Ticket->new works for instance... but inheritance appears to fail ( Empty sub-class test fails). So What... if anything else am I supposed to...
http://www.perlmonks.org/?node_id=670444
CC-MAIN-2015-06
en
refinedweb
Bush Learns Standup Rules Again, thanks to Steve. “So, who needs a pair?” (See also Bush Violates Standup Rules) Javascript thoughts of the day. spare time. :) Collapsing Migrations (6 Thoughts on Linus Torvalds's Git Talk) OpenSocial. Your Object Mama I. Pivots at RubyConf The). Making Ruby Look Like <strike>Smalltal...
http://pivotallabs.com/category/labs/page/143/
CC-MAIN-2015-06
en
refinedweb
Dne 8.8.2011 9:31, Michal Hocko napsal(a): > On Sun, Aug 07, 2011 at 10:50:45PM +0000, Jozef Misutka wrote: >> Update of /cvsroot/pdfedit/pdfedit/src/tools >> In directory vz-cvs-3.sog:/tmp/cvs-serv14083/tools >> >> Modified Files: >> pdf_to_text.cc >> Log Message: >> - few improvements >> - nasty not initialized bug >...
http://sourceforge.net/p/pdfedit/mailman/message/27914858/
CC-MAIN-2015-06
en
refinedweb
Rob Prime wrote:1) Use a static holder class: public class Singleton { private Singleton() { ... } private static class SingletonHolder { private static final Singleton INSTANCE = new Singleton(); } public static Singleton getInstance() { return SingletonHolder.INSTANCE; } }The SingletonHolder class is only loaded and ...
http://www.coderanch.com/t/453545/threads/java/Double-Checked-Locking
CC-MAIN-2015-06
en
refinedweb
28 August 2012 09:30 [Source: ICIS news] SINGAPORE (ICIS)--LG Chem shut one of its polyethylene (PE) plants at ?xml:namespace> The source declined to say which of the company’s PE plants at Yeosu was shut. LG Chem runs a 160,000 tonne/year low density polyethylene (LDPE) and a 300,000 tonne/year high density polyethyle...
http://www.icis.com/Articles/2012/08/28/9590210/s-koreas-lg-chem-runs-yeosu-pe-plant-at-100-after-brief-outage.html
CC-MAIN-2015-06
en
refinedweb
First, a disclaimer. Naming things in the world of programming is always a challenge. Naming this blog post was also difficult. There are all sorts of implications that come up when you claim something is "functional" or that something is a "pattern". I don't claim to be an expert on either of these topics, but what I ...
http://blog.endpoint.com/2014/01/functional-handler-pattern-in-ruby.html
CC-MAIN-2015-06
en
refinedweb
07 August 2013 14:00 [Source: ICIS news] LONDON (ICIS)--Production from industry, construction, energy and mining in ?xml:namespace> In May, productive output was down 0.8% from April. On a two-month sequential comparison – May-June versus March-April – productive output was up 1.3%, with industrial output up 1.3% as w...
http://www.icis.com/Articles/2013/08/07/9695169/germany-june-productive-output-rises-2.4-from-may.html
CC-MAIN-2015-06
en
refinedweb
In a Federation Scenario a client might want to access the services by using a SAML token that was issued to it by a STS. The service in turn might have to call other services (like a intermediary) to fulfill the request. When calling the backend service the service might want to use the SAML token that was presented t...
http://blogs.msdn.com/b/govindr/archive/2006/10/24/re-serialize-saml-token.aspx
CC-MAIN-2015-06
en
refinedweb
Patent application title: DISTRIBUTING MULTI-SOURCE PUSH NOTIFICATIONS TO MULTIPLE TARGETS Inventors: Clemens Friedrich Vasters (Kirkland, WA, US) Clemens Friedrich Vasters (Kirkland, WA, US) Assignees: Microsoft Corporation IPC8 Class: AG06F1516FI USPC Class: 709217 Class name: Electrical computers and digital process...
http://www.faqs.org/patents/app/20130067024
CC-MAIN-2015-06
en
refinedweb
You can subscribe to this list here. Showing 2 results of 2 Hi, I am running into an issue trying to use enable_on_exec in per-thread mode with an event group. My understanding is that enable_on_exec allows activation of an event on first exec. This is useful for tools monitoring other tasks and which you invoke as: to...
http://sourceforge.net/p/perfmon2/mailman/perfmon2-devel/?viewmonth=200908&viewday=20
CC-MAIN-2015-06
en
refinedweb
Manuel Petermann wrote:If the implementation for A is not likely to change Manuel Petermann wrote:When I use libraries I always hate it to use extends rather than implementing some interfaces. I now am to program such a library and i am sort of reluctant to force the user to use the extends keyword. Now lets say we hav...
http://www.coderanch.com/t/595830/java/java/Interfaces-Getters-Interface
CC-MAIN-2015-06
en
refinedweb
08 February 2012 17:27 [Source: ICIS news] LONDON (ICIS)--?xml:namespace> However, its shale gas activities would soon benefit from a very substantial increase from its own capital on the zlotych (Zl) 500m ($159.2m, €120.2m) committed to exploring for unconventional gas over the next two years, Orlen added. Orlen said ...
http://www.icis.com/Articles/2012/02/08/9530642/polands-pkn-orlen-rules-out-shale-gas-venture-with-canadas-encana.html
CC-MAIN-2015-06
en
refinedweb
Template:Temporary Protection From Uncyclopedia, the content-free encyclopedia edit Usage This template is to be used on articles that for whatever reason. They might be Works in Progress by admins, or maybe they are highly vandalised pages targeted by a particularly notorious proxy vandal. Regardless, just use this te...
http://uncyclopedia.wikia.com/wiki/Template:Temporary_Protection
CC-MAIN-2015-06
en
refinedweb
CS::Utility::iModifiableDescription Struct Reference The description of an CS::Utility::iModifiable object. More... #include <iutil/modifiable.h> Detailed Description The description of an CS::Utility::iModifiable object. It contains all the information needed in order to expose and access the properties of a iModifiab...
http://www.crystalspace3d.org/docs/online/api/structCS_1_1Utility_1_1iModifiableDescription.html
CC-MAIN-2015-06
en
refinedweb
If you get into a situation where the built-in XAML functionality doesn’t quite meet your needs but you don’t want to move the functionality to code-behind every time you need it you may need to write your own custom MarkupExtension. Built-in markup extensions include BindingExtension, StaticResourceExtension, and Rela...
http://blogs.interknowlogy.com/2007/05/16/writing-a-custom-wpf-markupextension/
CC-MAIN-2015-06
en
refinedweb
. Picasso.js has been there for a while since its first release in 2018. It is an open-source charting library that is designed for building custom, interactive, component-based powerful visualizations. Apart from the fact that Picasso.js is open-sourced, here is my take on certain other factors - Component-based visua...
https://community.qlik.com/t5/Qlik-Design-Blog/Picasso-js-What-separates-it-from-other-visualization-libraries/ba-p/1829951
CC-MAIN-2021-43
en
refinedweb
fay-dom alternatives and similar packages Based on the "Fay" category. Alternatively, view fay-dom alternatives based on common mentions on social networks and blogs. fay-base9.9 4.8 fay-dom VS fay-baseA proper subset of Haskell that compiles to JavaScript fay9.9 4.8 fay-dom VS fayA proper subset of Haskell that compil...
https://haskell.libhunt.com/fay-dom-git-alternatives
CC-MAIN-2021-43
en
refinedweb
ubakar Gataev2,226 Points I need you to write a function named product. It should take two arguments, you can call them whatever you want, and the I need you to write a function named product. It should take two arguments, you can call them whatever you want, and then multiply them together and return the result someon...
https://teamtreehouse.com/community/i-need-you-to-write-a-function-named-product-it-should-take-two-arguments-you-can-call-them-whatever-you-want-and-the-3
CC-MAIN-2021-43
en
refinedweb
function named product. It should take two arguments, you can call them whatever you want, and the product def product(salt): if salt.is() == 'sour': print("salt is", "sour") print("salt is", "taste") print("salt is", "good") 1 Answer behar10,797 Points Hey stewart, it dosent seem you have attempted to do what the cha...
https://teamtreehouse.com/community/i-need-you-to-write-a-function-named-product-it-should-take-two-arguments-you-can-call-them-whatever-you-want-and-the-4
CC-MAIN-2021-43
en
refinedweb
Tasty Test Tip: Test final and static methods with PowerMock and Mockito Two of the most famous mocking frameworks EasyMock and Mockito, don't offer out of the box support for mocking final and static methods. It is often said on forums that "you don't want that" or "your code is badly designed" etc. Well this might be...
https://blog.jdriven.com/2012/10/tasty-test-tip-testing-final-and-static-methods-with-powermock-mockito/
CC-MAIN-2021-43
en
refinedweb
-- new drivers, apparently -- (This is on AMD only; it works fine with nVidia and Intel i7 and Xeon) fails with "Error getting function data from server", but the good news is that there's much more info in the console log, including: 5/10/12 2:29:21.792 PM com.apple.cvmsCompAgent_x86_64: Both operands to a binary oper...
https://community.amd.com/t5/archives-discussions/osx-lion-10-7-4-update-killed-my-kernel/m-p/200003/highlight/true
CC-MAIN-2021-43
en
refinedweb
article Counting Queries: Basic Performance Testing in Django Filipe Ximenes • 6 January 2020 It's very common to read about testing techniques such as TDD and how to test application business logic. But testing the performance of an application is a whole different issue. There are many ways you can do it, but a commo...
https://www.vinta.com.br/blog/2020/counting-queries-basic-performance-testing-in-django/
CC-MAIN-2021-43
en
refinedweb
Enums are a double-edged sword. They are extremely useful to create a set of possible values, but they can be a versioning problem if you ever add a value to that enum. In a perfect world, an enum represents a closed set of values, so versioning is never a problem because you never add a value to an enum. However, we l...
https://dev.to/timothymcgrath/enums-apis-15n4?utm_campaign=dotNET%20Weekly&utm_medium=email&utm_source=week-37_year-2019
CC-MAIN-2021-43
en
refinedweb
std::condition_variable::wait_for. The standard recommends that a steady clock. If these functions fail to meet the postcondition (lock.owns_lock()==true and lock.mutex() is locked by the calling thread), std::terminate is called. For example, this could happen if relocking the mutex throws an exception. [edit] Paramet...
https://en.cppreference.com/w/cpp/thread/condition_variable/wait_for
CC-MAIN-2021-43
en
refinedweb
This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions. We are in the middle of migrating our SSRS 2005 server to SSRS 2014. So far all the reports are working except our barcode reports. When we try and upload the barcode reports we get the following message: : The element 'Style' in names...
https://social.msdn.microsoft.com/Forums/en-US/47a06fad-d88f-460d-8c46-7e7936e25360/reporting-service-2005-to-2014-migration?forum=sqlreportingservices
CC-MAIN-2021-43
en
refinedweb
Picobel.js Picobel.js (pronounced peek-o-bell, as in decibel) is a lightweight dependency-free Javascript tool that converts html audio tags into styleable markup. Why would I need this?Why would I need this? There are two reasons you might want to use Picobel... You want a uniform cross-browser experience for the audi...
https://www.npmjs.com/package/picobel
CC-MAIN-2021-43
en
refinedweb
- Step 1: Getting Started with Azure Command and Query - Step 2 : Setting up the Azure Environment Coding for the cloud can seem a mountainous challenge at the start. What resources do you need, how can you best use them, and just what will it cost to run your solution? In our previous step we built an application that...
https://dev.to/stacy_cash/setting-up-the-azure-environment-47fb?utm_source=cloudweekly.news
CC-MAIN-2021-43
en
refinedweb
Today I prepared a list of PHP frameworks with their pro’s and con’s described. I do hope that this list will prove useful to you. Please, enjoy! Laravel PHP Version Required 5.5.9 Laravel is a comprehensive framework designed for rapidly building applications using the MVC architecture. It is the most popular PHP fram...
https://learningactors.com/best-php-frameworks-in-2017/
CC-MAIN-2021-43
en
refinedweb
The CData Python Connector for Xero enables you to create Python applications and scripts that use SQLAlchemy Object-Relational Mappings of Xero data. The rich ecosystem of Python modules lets you get to work quickly and integrate your systems effectively. With the CData Python Connector for Xero and the SQLAlchemy too...
https://www.cdata.com/kb/tech/xero-python-sqlalchemy.rst
CC-MAIN-2021-43
en
refinedweb
So this recipe is a short example to understand vstack in python. Let's get started. import numpy as np Let's pause and look at these imports. Numpy is generally helpful in data manipulation while working with arrays. It also helps in performing mathematical operation. a = np.ones((3, 3)) b= np.array((2,2,2)) Here, we ...
https://www.projectpro.io/recipes/what-is-vstack-python
CC-MAIN-2021-43
en
refinedweb
KTextEditor::ModificationInterface #include <KTextEditor/ModificationInterface> Detailed Description External modification extension interface for the Document. Introduction The class ModificationInterface provides methods to handle modifications of all opened files caused by external programs. Whenever the modified-on...
https://api.kde.org/frameworks/ktexteditor/html/classKTextEditor_1_1ModificationInterface.html
CC-MAIN-2021-43
en
refinedweb
File manager rename and copy functions Please add features to the file manager to allow copying an existing file into a new one and renaming files. Renaming files is already possible. Open the file in the editor, tap its title and then the little rename icon. For folders, go into the folder, switch to "Edit" mode, and ...
https://forum.omz-software.com/topic/2973/file-manager-rename-and-copy-functions/1
CC-MAIN-2021-43
en
refinedweb
Drawer API API documentation for the React Drawer component. Learn about the available props and the CSS API. Import You can learn about the difference by reading this guide on minimizing bundle size. import Drawer from '@mui/material/Drawer'; // or import { Drawer } from '@mui/material'; The props of the Modal compone...
https://mui.com/api/drawer/
CC-MAIN-2021-43
en
refinedweb
It's not the same without you Join the community to find out what other Atlassian users are discussing, debating and creating. I have a Groovy custom listener in which I am trying to parse the history to see if a custom field (text type) has changed. The guts of the code I have looks like this: def chiList = chm.getAll...
https://community.atlassian.com/t5/Marketplace-Apps-questions/Not-seeing-custom-field-values-in-getFroms/qaq-p/324568
CC-MAIN-2018-51
en
refinedweb
- 1.1 Gothic Security - 1.2 The State Machine Model - 1.3 Programming Miss Grants Controller - 1.4 Languages and Semantic Model - 1.5 Using Code Generation - 1.6 Using Language Workbenches - 1.7 Visualization 1.3 Programming Miss Grant’s Controller Now that I’ve implemented the state machine model, I can program Miss G...
http://www.informit.com/articles/article.aspx?p=1592379&seqNum=3
CC-MAIN-2018-51
en
refinedweb
Cirrus Cirrus is an infrastructure for Aspect-Oriented Programming (AOP) using the Elements compiler; it is. You can read more about that in the Attributes and Aspects section under Language Concepts. Namespaces The Cirrus API is divided into these namespaces:
https://docs.elementscompiler.com/API/Cirrus/
CC-MAIN-2018-51
en
refinedweb
Hock Android LifeCycle Library for flutter For help getting started with Flutter, view our online documentation. For help on editing plugin code, view the documentation. example/lib/main.dart import 'dart:async'; import 'package:flutter/material.dart'; import 'package:flutter/services.dart'; import 'package:android_lif...
https://pub.dartlang.org/packages/android_lifecycle
CC-MAIN-2018-51
en
refinedweb
It's not the same without you Join the community to find out what other Atlassian users are discussing, debating and creating. After noticing how ScriptRunner's built-in script to clean up resolutions doesn't count as activity on the issues it touches, I wondered if similar clean-up operations could be done from the sc...
https://community.atlassian.com/t5/Jira-questions/ScriptRunner-to-clear-all-inactive-assignees-w-o-updating-issues/qaq-p/207216
CC-MAIN-2018-51
en
refinedweb
Neighbor and destination cache management. More... #include "core/net.h" #include "ipv6/icmpv6.h" #include "ipv6/ndp.h" #include "ipv6/ndp_cache.h" #include "ipv6/ndp_misc.h" #include "debug.h" Go to the source code of this file. Neighbor and destination cache ndp_cache.c. Definition at line 30 of file ndp_cache.c. Cre...
https://oryx-embedded.com/doc/ndp__cache_8c.html
CC-MAIN-2018-51
en
refinedweb
Static caching of files from Amazon S3, using baiji Project description Versioned-tracked assets and a low-level asset cache for Amazon S3, using baiji. Features - Versioned cache for version-tracked assets - Creates a new file each time it changes - Using a checked-in manifest, each revision of the code is pinned to a...
https://pypi.org/project/baiji-pod/1.0.0/
CC-MAIN-2018-51
en
refinedweb
Just a quick post on another problem I ran into while setting up PaperClip. When attempting to submit a form WITHOUT an image I received the following error message: Assets asset /tmp/stream20120218-22611-dgnkr-0.exe is not recognized by the 'identify' command. Apparently the most common cause of this issue is one of t...
https://whatibroke.com/2012/02/18/not-recognised-by-the-identify-command-paperclip/
CC-MAIN-2018-51
en
refinedweb
To get started with pandapower, just Install pandapower through pip: pip install pandapower Create a simple network import pandapower as pp net = pp.create_empty_network() b1 = pp.create_bus(net, vn_kv=20.) b2 = pp.create_bus(net, vn_kv=20.) pp.create_line(net, from_bus=b1, to_bus=b2, length_km=2.5, std_type="NAYY 4x50...
http://www.pandapower.org/
CC-MAIN-2018-51
en
refinedweb
MLD (Multicast Listener Discovery for IPv6) More... #include "core/net.h" #include "core/ip.h" #include "ipv6/ipv6.h" #include "ipv6/icmpv6.h" #include "ipv6/mld.h" #include "mibs/ip_mib_module.h" #include "debug.h" Go to the source code of this file. MLD (Multicast Listener Discovery for IPv6)LD is used by an IPv6 rou...
https://oryx-embedded.com/doc/mld_8c.html
CC-MAIN-2018-51
en
refinedweb
It was at my very first MVP Summit in February 2012 saw the light in Spring 2012, shortly after said Summit. Visual 2013, Event:EventTriggerBehavior <Core:InvokeCommandAction </Core:EventTriggerBehavior> </interactivity:Interaction.Behaviors> Update November 11, 2013 InvokeCommandAction has a CommandParameter too that ...
http://dotnetbyexample.blogspot.com/2013/10/introducing-win8nl-for-windows.html
CC-MAIN-2016-40
en
refinedweb
Issue Subscription Filter: COCOON-open-with-patch (91 issues) Subscriber: cocoon Key Summary COCOON-1976 [PATCH] NPE in POI ElementProcessorSerializer for characters between startDocument and first StartElement-1955 [Patch] Allow shielded class loading for a single block COCOON-1954 [Patch] RequestProcessor swallows ex...
http://mail-archives.apache.org/mod_mbox/cocoon-dev/200701.mbox/%3C19245617.1167846268376.JavaMail.jira@brutus%3E
CC-MAIN-2016-40
en
refinedweb
Jim Meyering wrote: "Richard W.M. Jones" <rjones redhat com> wrote:There is no uid_t or getuid in MinGW. I'm not really sure that forcing connections readonly if the user is non-root is a useful thing to be doing anyway, so perhaps this code is better off just being deleted?For the missing uid_t, you could add this to ...
https://www.redhat.com/archives/libvir-list/2007-December/msg00195.html
CC-MAIN-2016-40
en
refinedweb
Hi, I've regenerated the eve gump descriptor using a development version of the Maven Gump plugin. I'll do the others now. I reread the documentation and did the following: - stopped mapping ids (the ability is there for the project to do that in its descriptor) - removed work and mkdir (these seem irrelevant for Maven...
http://mail-archives.apache.org/mod_mbox/directory-dev/200412.mbox/%3C9e3862d8041209142148fe9875@mail.gmail.com%3E
CC-MAIN-2016-40
en
refinedweb
0 Hi Everyone ! I am newbie in C# and i have problem when start new project. My project include : One mainform and two child form ( Assetform and Loginform) and in Asset form i have a button call " Remove". here is some describe of how my program work : - At the beginning of program, the form Asset start with the main ...
https://www.daniweb.com/programming/software-development/threads/442550/how-to-control-button-with-login-form
CC-MAIN-2016-40
en
refinedweb
Hibernate.orgCommunity Documentation 2016-02-17 Validatorinstance ConstraintViolationmethods ExecutableValidatorinstance ExecutableValidatormethods ConstraintViolationmethods for method validation ResourceBundleLocator @GroupSequence @GroupSequenceProvider constraint-mappings ValidatorFactoryand Validator ValidationPro...
https://docs.jboss.org/hibernate/stable/validator/reference/en-US/html_single/
CC-MAIN-2016-40
en
refinedweb
At Thu, 25 Aug 2005 17:57:00 -0400, Daniel Jacobowitz wrote: > On Thu, Aug 25, 2005 at 05:53:05PM +0200, Zlatko Calusic wrote: > > GOTO Masanori <gotom@debian.or.jp> writes: > > > > > At Thu, 25 Aug 2005 12:56:04 +0200, > > > Zlatko Calusic wrote: > > >> rc 1119 root mem REG 8,9 217016 228931 /var/db/nscd/passwd > > No...
https://lists.debian.org/debian-glibc/2005/08/msg00645.html
CC-MAIN-2016-40
en
refinedweb
Are you looking for samples in v1.0 or v2.0? The code you quoted below is some version of v2.0 (we're still working on the final tweaks to what will become the new, final, hosting model). From: users-bounces at lists.ironpython.com [mailto:users-bounces at lists.ironpython.com] On Behalf Of Joshua J. Pearce Sent: Tuesd...
https://mail.python.org/pipermail/ironpython-users/2007-October/005759.html
CC-MAIN-2016-40
en
refinedweb
I think the issue here is the nature of the data exchange. EXI essentially provides a compression algorithm that saves information between instances of a message or file and can be seeded with what is known in advance about certain characteristics of the instances. The gzip algorithm learns the characteristics of each ...
https://mail.python.org/pipermail/xml-sig/2009-July/012131.html
CC-MAIN-2016-40
en
refinedweb
Step! When I started to learn it, I couldn’t find blogs that show “Which part of React Redux to build first?” or how to generally approach building any React-Redux apps. So I went through several example and blogs and came out with general steps as to how to approach building most React Redux Apps. Please Note: I am us...
https://medium.com/@rajaraodv/step-by-step-guide-to-building-react-redux-apps-using-mocks-48ca0f47f9a
CC-MAIN-2016-40
en
refinedweb
Agenda See also: IRC log, previous 2007-12-20 Manu: I think Mark is suggesting that @instanceof does apply to @resource in some cases ... whereas Ben and I think it is simpler if @instanceof never applies to @resource Shane: I interpret Mark's argument as saying @instanceof applies to the subject Ben: where Mark splits...
http://www.w3.org/2008/01/03-rdfa-minutes.html
CC-MAIN-2016-40
en
refinedweb
: The first thing to do is wrap a networkx graph in a PyMC stochastic, and put some penalty on vertices being too far from the root: def BDST(G, root=0, k=5, beta=1.): T = nx.minimum_spanning_tree(G) T.base_graph = G @mc.stoch(dtype=nx.Graph) def bdst(value=T, root=root, k=k, beta=beta): path_len = pl.array(nx.shortest...
https://healthyalgorithms.com/2010/12/23/mcmc-in-python-custom-stepmethods-and-bounded-depth-spanning-tree-distraction/
CC-MAIN-2016-40
en
refinedweb
30 April 2010 17:41 [Source: ICIS news] By Nigel Davis ?xml:namespace> Producers have benefited greatly from price increases in the first months of the year. Take ExxonMobil which showed on Thursday that stronger margins lifted first quarter chemicals earnings by $480m compared with the first quarter of 2009, while the...
http://www.icis.com/Articles/2010/04/30/9355688/insight+plunging+us+olefins+prices+raise+alarms.html
CC-MAIN-2013-20
en
refinedweb
Created on 2011-12-21 05:54 by Ramchandra Apte, last changed 2011-12-24 22:45 by terry.reedy. This issue is now closed.. Python isn't crashing; it's bailing out of an impossible situation. It's not clear what the correct behavior is, since you're basically preventing Python from aborting the recursive behavior. But Pyt...
http://bugs.python.org/issue13644
CC-MAIN-2013-20
en
refinedweb
May 08, 2012 04:30 PM|LINK Hi guys, I have a view in which the user can edit a collection of "heterogeneous" items, each of the item currently is implemented as an instance of class "WAttribute", for example: public class WAttributeViewModel { public string DisplayName; public string UserValue; ... other "meta" data pr...
http://forums.asp.net/p/1801520/4971229.aspx/1?Custom+Validation+on+Collection+of+heterogeneous+items
CC-MAIN-2013-20
en
refinedweb
[gforth] / gforth / tags.fs gforth: gforth/tags.fs 1 : pazsan 1.1 \ VI tags support for GNU Forth. 2 : : 45 : require search.fs 46 : require extend.fs 47 : 79 : sourcefilename r@ write-file throw 80 : #tab r> emit-file throw ; 81 : 82 : : put-tags-entry ( -- ) 83 : \ write the entry for the last name to the TAGS file 8...
http://www.complang.tuwien.ac.at/viewcvs/cgi-bin/viewcvs.cgi/gforth/tags.fs?annotate=1.1&sortby=rev&only_with_tag=MAIN
CC-MAIN-2013-20
en
refinedweb
* Read in a list of names from the user using a sentinel value of -1 to mark the end of the list. * Only add the name to the array if the name is not already on the list. (EX: If "Mary" is on the user list 3 times, it should only be in the Names array one time.) * Print out the total number of names, and print out all ...
http://www.dreamincode.net/forums/topic/300270-java-is-throwing-a-nullpointerexception-at-my-program/page__pid__1746834__st__0
CC-MAIN-2013-20
en
refinedweb
I'm doing some practice with Lists in C# to get more experience, so I thought I could do some statistics with data stored in a database. My idea: I have a Sqlite DB with some data about customers calls. Who called, when did he call, how much time did the call last, and other values that I do not care about. Now I would...
http://www.dreamincode.net/forums/topic/308010-best-way-to-create-statistics-out-of-a-db-with-listst/page__p__1786410
CC-MAIN-2013-20
en
refinedweb
] Is that accurate, albeit pessimistic? Think long-tail and conversion. Long-tail search and long-tail domain navigation tends to convert fairly well. The days of 1 word domains are over, mostly. You can still cherrypick the aftermarket from time to time, just not in the forums. You need to go direct to the registrant....
http://www.webmasterworld.com/domain_names/3136342-2-30.htm
CC-MAIN-2013-20
en
refinedweb
Is there a preference or behavior difference between using: if(obj.getClass().isArray()) {} if(obj instanceof Object[]) {} Hey anyone, I got a question about Java Reflections: I have to checkout, if a certain field of a class is an array. But my problem is: If i run isArray() on the ... I need to invoke a method withou...
http://www.java2s.com/Questions_And_Answers/Java-Collection/array/reflection.htm
CC-MAIN-2013-20
en
refinedweb
> However, along with that itertools inspired iterator pipeline based > design, I've also inherited Raymond's preference that particular *use > cases* start life as recipes in the documentation. I think it's important to remember where we are coming from. Many people complain that using os.walk is too cumbersome. Propo...
http://bugs.python.org/msg152918
CC-MAIN-2013-20
en
refinedweb
Using the Request-Acknowledge-Push Pattern to Display Progress of Long Running Tasks - Posted: Jan 17, 2013 at 11:52 AM - 2,025 Views - 10 Comments Something went wrong getting user information from Channel 9 Something went wrong getting user information from MSDN Something went wrong getting the Visual Studio Achievem...
http://channel9.msdn.com/Series/Cloud-Patterns/Episode-1-Long-running-tasks-Request-Acknowledge-Push-pattern?format=html5
CC-MAIN-2013-20
en
refinedweb
nfc_tag_transceive_raw() Write a RAW command to an ISO 14443 connection. Synopsis: #include <nfc/nfc.h> NFC_API nfc_result_t nfc_tag_transceive_raw(const nfc_target_t *tag, const uchar_t *command, size_t command_length_in_bits, uchar_t *response, size_t max_response_length_in_bytes, size_t expected_response_length_in_b...
http://developer.blackberry.com/native/reference/bb10/nfc_libref/topic/nfc_tag_transceive_raw.html
CC-MAIN-2013-20
en
refinedweb
kj wrote: > In <7figv3F2m3p0dU1 at mid.uni-berlin.de> "Diez B. Roggisch" <deets at nospam.web.de> writes: > >> Classes are not scopes. Classes are objects. In particular, they are (by default) instances of class 'type'. Unless 'scopes' were instances of some other metaclass, the statement has to be true. I understand '...
http://mail.python.org/pipermail/python-list/2009-August/549398.html
CC-MAIN-2013-20
en
refinedweb
Hi, I've finished writing a code to display the integral and fractional part of a number. It's all working fine, however, when asked to enter a number, the program continues to go down to the next line until a letter is entered. Here is the code: Here is a screenshot of the problem i'm having:Here is a screenshot of th...
http://cboard.cprogramming.com/c-programming/113850-unwanted-line.html
CC-MAIN-2013-20
en
refinedweb
CGLCreateContext() Can share be the context we are creating? Should it be? Why do we need to share name space with a context? Quote:CGLError CGLCreateContext(CGLPixelFormatObj pix, CGLContextObj share, CGLContextObj *ctx); If not NULL, the context with which to share display lists and an OpenGL texture name space. Can ...
http://idevgames.com/forums/thread-6604-post-13091.html
CC-MAIN-2013-20
en
refinedweb
New Packages (13): * mssf-certman * gupnp-dlna * mssf-crypto * policy-settings-basic-n900 * meegotouch-qt-style * policy-settings-basic-mfld * pulseaudio-policy-enforcement * libtee * nokia-usb-networking * rygel * ngfd * pacrunner * libngf Removed Packages (5): * aegis-crypto * aegis-certman * libproxy * qt-web-runtim...
http://wiki.meego.com/Release_Engineering/Plans/1.2/1.1.80.15
CC-MAIN-2013-20
en
refinedweb
mouseX property inherited The x-coordinate of the mouse relative to the local coordinate system of the display object. If you need both mouseX and mouseY, it is more efficient to use the mousePosition getter. Implementation num get mouseX { var mp = mousePosition; return (mp != null) ? mp.x : 0.0; }
https://pub.dev/documentation/stagexl/latest/stagexl/InteractiveObject/mouseX.html
CC-MAIN-2020-10
en
refinedweb
A rich set of open source UI Components for React PrimeReact PrimeReact is a rich set of open source UI Components for React. Download PrimeReact is available at npm, if you have an existing application run the following command to download it to your project. npm install primereact --save npm install primeicons --save...
https://reactjsexample.com/a-rich-set-of-open-source-ui-components-for-react/
CC-MAIN-2020-10
en
refinedweb
Here is the last part of our analysis of the Tripadvisor data. Part one is here. In order to understand this, you will need to know Python and Numpy Arrays and the basics behind tensorflow and neural networks. If you do not, you can read an introduction to tensorflow here. The code from this example is here and input d...
https://www.bmc.com/blogs/using-tensorflow-neural-network-for-machine-learning-predictions-with-tripadvisor-data/
CC-MAIN-2020-10
en
refinedweb
Prof. Dr. Frank Leymann / Olha Danylevych Institute of Architecture of Application Systems University of Stuttgart Loose Coupling and Message-based Integration WS 2012 Exercise 2 Date: 24.08.12 (13:00 – 14:30, Room 38.03 or 38.02) Task 2.1 – Guaranteed Delivery a) What does the term “guaranteed delivery” mean? b) What ...
https://www.yumpu.com/en/document/view/22406972/loose-coupling-and-message-based-integration-ws-2012-iaas
CC-MAIN-2020-10
en
refinedweb
A set of higher-order components to turn any list into an animated sortable list React Sortable (HOC) A set of higher-order components to turn any list into an animated, touch-friendly, sortable list. Features Higher Order Components – Integrates with your existing components Drag handle, auto-scrolling, locked axis, e...
https://reactjsexample.com/a-set-of-higher-order-components-to-turn-any-list-into-an-animated-sortable-list/
CC-MAIN-2020-10
en
refinedweb
So... is anyone here part of the Microsoft Creators Program? I applied and was accepted to the beta program. I've been working on updating my XNA game as a Monogame UWP, and I think I have it all working. On my local PC, at least. I don't own an Xbox One, but I feel like I'm in the right position to buy one, put it in ...
http://community.monogame.net/t/monogame-xbox-one-and-the-creators-program/8847?u=mrvalentine
CC-MAIN-2020-10
en
refinedweb
WebBrowser control. I've done things a bit differently in this article: Instead of starting off with a very limited example and then adding to it, I've create just one but more complex example. It illustrates how easy you can get a small web browser up and running. It's very basic in its functionality, but you can eas...
https://www.wpf-tutorial.com/ro/66/misc-controls/the-webbrowser-control/
CC-MAIN-2020-10
en
refinedweb
Building Extendable Oracle ADF Applications with Embedded Mule ESB Miroslav Samoilenko January 2008 Claremont is a trading name of Premiertec Consulti ng Ltd Building Extendable Oracle ADF Applications with Embedded Mule ESB Miroslav Samoilenko Building. In this article I discuss a technique of building extension point...
https://www.techylib.com/en/view/streakgrowl/building_extendable_oracle_adf_applications_with_embedded_mule_es
CC-MAIN-2018-17
en
refinedweb
ISO Updates C Standard 378 An anonymous reader writes )." First post!! (Score:5, Insightful) Actually, who cares about that? Seriously, though, am I the only one who finds it strange that one has to buy copies of the standard? Re: (Score:2) Not really, a lot of books cost money. Why would this one be different? Re:Firs...
https://developers.slashdot.org/story/11/12/24/0145238/iso-updates-c-standard
CC-MAIN-2018-17
en
refinedweb