Group Name | Campaign group type ID | GCG group type ID |
---|---|---|
None | not applicable | 0 |
Target | 0 | 2 |
Random | 1 | not applicable |
Control | 2 | 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Script to (selectively) save/load multiple Docker images to/from a directory. | |
# Run ./save-load-docker-images.sh for help. | |
set -e | |
directory=$PWD | |
filter="" | |
compress=0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module 'lodash/array/chunk' { export = _.chunk } | |
declare module 'lodash/array/compact' { export = _.compact } | |
declare module 'lodash/array/difference' { export = _.difference } | |
declare module 'lodash/array/drop' { export = _.drop } | |
declare module 'lodash/array/dropRight' { export = _.dropRight } | |
declare module 'lodash/array/dropRightWhile' { export = _.dropRightWhile } | |
declare module 'lodash/array/dropWhile' { export = _.dropWhile } | |
declare module 'lodash/array/fill' { export = _.fill } | |
declare module 'lodash/array/findIndex' { export = _.findIndex } | |
declare module 'lodash/array/findLastIndex' { export = _.findLastIndex } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function(req, res, next) { | |
const ACTIVATION = 1; | |
const EXPIRATION = 2; | |
const OFFER = 3; | |
const CHARGE = 4; | |
const EXTERNAL = 5; | |
const getAutoGroup = ({ groupId, name }) => { | |
if (groupId) return groupId; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* WARNINIG works with ojdbc7 only | |
* | |
* @param rs | |
* @param columnName | |
* @param columnType | |
* @param reader | |
* @throws SQLException | |
*/ | |
protected static <T> void readOptionalColumn( |