-
Updated
Feb 22, 2020 - Swift
reactive
Here are 1,500 public repositories matching this topic...
References #6802, #3629
The problematic code is in
https://github.com/playframework/playframework/blob/6df5da49c1ddc334e92b5d5f856d99995ff09a30/transport/server/play-server/src/main/scala/play/core/server/common/PathAndQueryParser.scala#L36
Play Version
2.8.1 (and earlier)
Expected Behavior
The URI double slash .// should be interpreted to be just /
The illegal URL
It would be useful in javadocs and docs to have a quick overview of the ReadStream state machines when in regular push vs (new) pull/fetch mode.
-
Updated
Feb 22, 2020 - Java
This is to fix: Nozbe/WatermelonDB#186
Right now, deleting records is not very efficient in WatermelonDB.
Say you have models like this: Blog has_many Post has_many Comment. If you want to delete a blog post, you also have to delete all its posts, and all their comments. This happens one-by-one currently. What we need is the ability to efficiently (and atomically if
I want to translate the docs to Chinese, How can I start?
I prefer add some language identifier folders (en-us, zh-cn and so on) to place the translated docs.
看了fish-redux的todoList demo,发现里面连接全局状态的方法是使用visitor
visitor: (String path, Page<Object, dynamic> page) {
/// 只有特定的范围的 Page 才需要建立和 AppStore 的连接关系
/// 满足 Page<T> ,T 是 GlobalBaseState 的子类
if (page.isTypeof<GlobalBaseState>()) {
/// 建立 AppStore 驱动 PageStore 的单向数据连接
/// 1. 参数1 AppStore
/// 2. 参数2 当 AppStore.state 变化时, PageStore.state 该如何变化
Context
We are discussing implementing Good Actions Hygiene from @MikeRyanDev in our project and found one place in example app that seems does not fit this pattern.
Here is the place: https://github.com/ngrx/platform/blob/master/projects/example-app/src/app/books/containers/collection-page.component.ts#L43
It's a common practice to dispatch some action in component's onInit. So, from ac
-
Updated
Feb 22, 2020
It seems that Shiny chooses random ports from 3000-8000 for connections. Some possible improvements that would be desirable:
- document that this is the random port range
- allow specifying a different random port range
- some mechanism for determining if the port is available before it is selected?
- a way to exclude ports from the range
The context here is RStudio Server and users who w
Need to document the changes that were added here akkadotnet/akka.net#3863 and put them up on the website inside one of the clustering pages.
Hi! I am just getting into ReactiveX but am really enjoying it so far. With 3.0 coming out a lot of the old code snippets are out of data and although it's not too difficult to transpose, a lot of the old examples don't cover things like creating Observable from scratch etc.
Are there any plans to work on some training material? If so, I would be happy to send across a list of things that would
Hi!
The Javadoc for createBoundedObjectPool says that if wrapConnection is true one should call StatefulConnection#close(). Yet the documentation [here](https://lettuce.io/core/release/reference/index.html#connection-pooling.asynchronous.connection-pool-suppor
According to the generated build
The commands to launch are the following :
docker pull andypetrella/spark-notebook:0.7.0-scala-2.11.8-spark-2.1.1-hadoop-2.7.2-with-hive
docker run -p 9001:9001 andypetrella/spark-notebook:0.7.0-scala-2.11.8-spark-2.1.1-hadoop-2.7.2-with-hive
Using that image (and I think it i
See also #2007
Motivation
Some particularities of dealing with window* operators and their produced windows are not exposed explicitly enough. Most notably, the fact that a window should be "consumed" (subscribed to at least) as often as possible.
One flavor that is particularly exposed is windowUntil/windowWhile, with its prefetch. Other windows generally ensure enough request
I am struggling to test a verticle isolated and all documentation and examples found only show how to test rest endpoints.
Something as simple as this, always fails with timeout
@Rule
public RunTestOnContext rule = new RunTestOnContext();
@Rule
public Timeout timeout = Timeout.seconds(5L);
@Test
public void should_run_verticle(TestContext context) {-
Updated
Feb 16, 2020 - JavaScript
Allowing to add metadata support for producers was already mentioned in lagom/lagom#1047, but it was not yet implemented.
map(fn: (state: State, lastState?: T) => T)
We discussed this question a bit in community.
From my point of view lastState is not the best name for the second fn argument, because it actually contains NOT the last (previous as someone may think) state of current store, but current state of a computed one. Th
In Objective-C loadIfNeeded is expected to return a value and gives a warning:
Ignoring return value of function declared with "warn_unused_result" attribute
Basically, we don't need to have kafka-console-consumer, we have mill instead: https://github.com/ThreeDotsLabs/watermill/tree/master/tools/mill
It would be nice to replace it in all examples.
-
Updated
Feb 22, 2020 - TypeScript
-
Updated
Feb 20, 2020 - Swift
-
Updated
Feb 22, 2020 - TypeScript
Improve this page
Add a description, image, and links to the reactive topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the reactive topic, visit your repo's landing page and select "manage topics."
Case
Suggestion
Issue
Typed database with predefined collection should enforce schema when create that collection.
Code