I hereby claim:
- I am pbuyle on github.
- I am pbuyle (https://keybase.io/pbuyle) on keybase.
- I have a public key ASB9qdFh6waGTWDNPznaOoUIM--VNmb7fIDmlUEkGaEfIAo
To claim this, I am signing this object:
#!/bin/bash | |
# This file will be sourced in init.sh | |
# Namespace functions with provisioning_ | |
# https://raw.githubusercontent.com/ai-dock/stable-diffusion-webui/main/config/provisioning/default.sh | |
### Edit the following arrays to suit your workflow - values must be quoted and separated by newlines or spaces. | |
DISK_GB_REQUIRED=30 |
#!/bin/bash | |
# This file will be sourced in init.sh | |
# Namespace functions with provisioning_ | |
# https://raw.githubusercontent.com/ai-dock/stable-diffusion-webui/main/config/provisioning/default.sh | |
### Edit the following arrays to suit your workflow - values must be quoted and separated by newlines or spaces. | |
DISK_GB_REQUIRED=30 |
import com.twitter.concurrent.AsyncStream | |
object AsyncStreamHelpers { | |
implicit class RichAsyncStream[T](val stream: AsyncStream[T]) { | |
/** | |
* Partitions this stream into sequences of adjacent elements grouped according to some discriminator function. | |
* | |
* This method will evaluation of this stream until its first element not belonging to the first group (ie. if the | |
* first element of the returned stream is a size of `n` then `n + 1` first element of this stream will be | |
* evaluated). Accessing each subsequent element of the resulting stream will evaluate another group of elements |
Verifying my Blockstack ID is secured with the address 1NgvMCTCjVWieFSw47dNskw7HePTe7PNiY https://explorer.blockstack.org/address/1NgvMCTCjVWieFSw47dNskw7HePTe7PNiY |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* Implements hook_init(). | |
*/ | |
function MODULE_init() { | |
// Add Surrogate-Key headers based on path segments. | |
// E.g. if the current path is product/some-category/product-name | |
// we should end up with the following Surrogate-Keys: | |
// product product/some-category product/some-category/product-name |
{ | |
... | |
"require": { | |
... | |
"nikic/fast-route": "^1.0" | |
... | |
} | |
... | |
} |
<?php | |
/** | |
* This is project's console commands configuration for Robo task runner. | |
* | |
* @see http://robo.li/ | |
*/ | |
class RoboFile extends \Robo\Tasks { | |
use terminusLoadTasks; |
I, Pierre Buyle, have read and do accept the MuleSoft Contributor Agreement | |
at http://www.mulesoft.org/legal/contributor-agreement.html | |
Accepted on Thu Apr 23 2015 11:11:29 GMT-0400 (EDT) |
<?php | |
/** | |
* Migrate existing field content from language "undefined" to entity language. | |
*/ | |
function MODULE_update_N(&$sandbox) { | |
// Number of entities to be processed for each step. | |
$messages = array(); | |
if (!isset($sandbox['fields'])) { | |
// Initialize the array of field to process. |