Skip to content
#

web

Here are 10,164 public repositories matching this topic...

njacharya
njacharya commented Aug 16, 2019

A description is incomplete. It should mention:

These patterns are not competing, but complementing each other. To achieve availability, one needs both fail-over and replication.

right after

"There are two main patterns to support high availability: fail-over and replication. "

techsin
techsin commented Apr 22, 2019

Tell us about your environment:

  • Puppeteer version: 1.14
  • Platform / OS version: Windows
  • Node.js version: 10

What steps will reproduce the problem?
try to pass a promise to await page.waitForResponse(response => condition) instead of urlOrPredicate.

What is the expected result?
expect async function to work

What happens instead?
no waiting as promise

pnfcre
pnfcre commented Nov 18, 2019

🐛 Bug Report

I tried passing --open to the parcel src/index.html command, but nothing happened. This feature works perfectly in the latest stable parcel-bundler package.

🎛 Configuration (package.json)

{
  "scripts": {
    "start": "parcel src/index.html --open"
  }
}

🤔 Expected Behavior

Parcel should open http://localhost:1234 in my default web brow

exterkamp
exterkamp commented Jan 31, 2020

The double dollar assertion: https://github.com/GoogleChrome/lighthouse/blob/e87a8b76e66208be0266c6e3a3b648dbebe79521/lighthouse-core/scripts/i18n/collect-strings.js#L344

Is a bit aggressive, it should check for basic $$ but allow $ICU_0$$ICU_1$. This should be validated with regex like \$([^$]*?)\$ and asserting that each capture group isn't empty instead of a more basic \$\$.

medyagh
medyagh commented Jan 4, 2020

followed the docs for has manyhttp://gorm.io/docs/has_many.html for sqlilite

package main

import (
	"fmt"

	"github.com/jinzhu/gorm"
	_ "github.com/mattn/go-sqlite3"
)


type User struct {
	Id          string
	Name        string
	CreditCards []CreditCard `gorm:"FOREIGNKEY:user_id;ASSOCIATION_FOREIGNKEY:id"`
}

type CreditCard struct {
	Id     int
	Number string
	UserID 
sanic
fabioluz
fabioluz commented Jul 10, 2017

Hi! I'm creating this issue to list Aurelia features that are not documented yet.

I can make the PR's to update the docs, but I want to be sure that I'm right before doing anything. So please, tell me if these changes are welcome.

Let's keep this list up to date!

Documentation Improvement List

Build Systems

  • CLI
    • CLI now supports SystemJS and Webpack. Update the
jstarry
jstarry commented Feb 10, 2020

The message sending api for ComponentLink<_> could be more flexible and user-friendly if it accepted Into<Msg> instead of Msg.

pub fn batch_callback<F, IN>(&self, function: F) -> Callback<IN>
where
    F: Fn(IN) -> Vec<COMP::Message> + 'static;

pub fn callback<F, IN>(&self, function: F) -> Callback<IN>
where
    F: Fn(IN) -> COMP::Message + 'static;

pub fn send_message(
fastapi

Improve this page

Add a description, image, and links to the web topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the web topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.