code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/vmm_mad/remotes/vcenter/migrate b/src/vmm_mad/remotes/vcenter/migrate @@ -55,8 +55,8 @@ begin
VCenterDriver::VirtualMachine.migrate_routine(vm_id, src_host, dst_host)
end
rescue StandardError => e
- message = "Cannot migrate for VM #{vm_id}"\
- 'failed due to '\
+ message = "Cannot migrate for VM #{vm_... | 7 |
diff --git a/pages/_app.tsx b/pages/_app.tsx @@ -63,9 +63,12 @@ const WebApp = ({ Component, pageProps }: AppProps<BasePageProps>) => {
return (
<ErrorBoundary>
<ApolloProvider client={apolloClient}>
+ <MeContextProvider>
<UserAgentProvider providedValue={providedUserAgent}>
<MediaProgressContext>
- <IconContextProvide... | 5 |
diff --git a/BokehPass.js b/BokehPass.js @@ -17,7 +17,8 @@ import {
import { Pass, FullScreenQuad } from 'three/examples/jsm/postprocessing/Pass.js';
import { BokehShader } from './BokehShader.js';
-const _nop = () => {};
+const oldParentCache = new WeakMap();
+const oldMaterialCache = new WeakMap();
/**
* Depth-of-fie... | 0 |
diff --git a/token-metadata/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/metadata.json b/token-metadata/0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671/metadata.json "symbol": "NMR",
"address": "0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/package.json b/package.json "main": "index.js",
"dependencies": {
"babel-core": "^6.18.2",
- "babel-plugin-transform-amd-system-wrapper": "^0.1.0",
+ "babel-plugin-transform-amd-system-wrapper": "github:systemjs/babel-plugin-transform-amd-system-wrapper#^0.2.0",
"babel-plugin-transform-cjs-system-wrapper":... | 3 |
diff --git a/test/unit/specs/main.spec.js b/test/unit/specs/main.spec.js @@ -129,8 +129,7 @@ describe("Startup Process", () => {
LOGGING: "false",
COSMOS_NETWORK: "app/networks/basecoind-2",
COSMOS_HOME: testRoot,
- NODE_ENV: "testing",
- BINARY_PATH: null // binary path is set for e2e tests but for some reason confuse... | 13 |
diff --git a/edit.js b/edit.js @@ -1808,13 +1808,6 @@ const [
accept();
});
});
- w.requestReleaseMine = subparcelSharedPtr => new Promise((accept, reject) => { // XXX
- /* callStack.allocRequest(METHODS.releaseUpdate, 1, true, offset => {
- callStack.u32[offset] = subparcelSharedPtr;
- }, offset => {
- accept();
- });... | 2 |
diff --git a/token-metadata/0x8888889213DD4dA823EbDD1e235b09590633C150/metadata.json b/token-metadata/0x8888889213DD4dA823EbDD1e235b09590633C150/metadata.json "symbol": "MBC",
"address": "0x8888889213DD4dA823EbDD1e235b09590633C150",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/lib/windshaft/renderers/plain/image_renderer.js b/lib/windshaft/renderers/plain/image_renderer.js @@ -20,13 +20,43 @@ ImageRenderer.prototype.getTile = function(z, x, y, callback) {
timer.start('render');
timer.end('render');
- var TILE_SIZE = this.options.tileSize;
-
+ try {
mapnik.Image.fromBytes(this.im... | 9 |
diff --git a/src/track.js b/src/track.js @@ -45,9 +45,9 @@ var getSlideStyle = function (spec) {
if (spec.fade) {
style.position = 'relative';
if (spec.vertical) {
- style.top = -spec.index * spec.slideHeight;
+ style.top = -spec.index * parseInt(spec.slideHeight);
} else {
- style.left = -spec.index * spec.slideWidth;... | 2 |
diff --git a/ItsATrap_theme_5E_Shaped/script.json b/ItsATrap_theme_5E_Shaped/script.json {
"name": "It's a Trap! - D&D 5E Shaped theme",
"script": "theme.js",
- "version": "3.0.2",
+ "version": "3.0.1",
"previousversions": ["1.0", "1.1", "1.2", "3.0"],
"description": "# It's A Trap! - 5th Edition (Shapedv2) theme (Depr... | 1 |
diff --git a/scoper.inc.php b/scoper.inc.php @@ -76,7 +76,8 @@ return array(
Finder::create()
->files()
->ignoreVCS( true )
- ->name( "#($google_services)\.php#" )
+ ->name( "#^($google_services)\.php$#" )
+ ->depth( '== 0' )
->in( 'vendor/google/apiclient-services/src/Google/Service' ),
),
'files-whitelist' => array(
| 7 |
diff --git a/vis/js/list.js b/vis/js/list.js @@ -432,6 +432,9 @@ list.filterListByKeyword = function(keyword) {
d3.selectAll("#list_holder")
.filter(function(x) {
+ if (typeof x.subject_orig === "undefined") {
+ x.subject_orig = "";
+ }
let keywords = x.subject_orig.split("; ");
let contains_keyword = keywords.includes... | 14 |
diff --git a/src/renderer/component/common/file-selector.jsx b/src/renderer/component/common/file-selector.jsx @@ -9,6 +9,8 @@ type Props = {
type: string,
currentPath: ?string,
onFileChosen: (string, string) => void,
+ fileLabel: ?string,
+ directoryLabel: ?string,
};
class FileSelector extends React.PureComponent<Pro... | 11 |
diff --git a/cmd/yagpdb/static/css/custom.css b/cmd/yagpdb/static/css/custom.css @@ -218,16 +218,16 @@ html.sidebar-left-collapsed #nav-footer {
/*Proper Design, f**king bootztrap*/
-.bg-success,
-.bg-info,
-.bg-warning,
-.bg-danger {
+.card-body.bg-success,
+.card-body.bg-info,
+.card-body.bg-warning,
+.card-body.bg-d... | 1 |
diff --git a/lib/assets/core/javascripts/cartodb3/editor/editor-pane.js b/lib/assets/core/javascripts/cartodb3/editor/editor-pane.js @@ -241,9 +241,7 @@ module.exports = CoreView.extend({
var nodeModel = model.getAnalysisDefinitionNodeModel();
var query = nodeModel.querySchemaModel.get('query');
- zoomToData(this._conf... | 2 |
diff --git a/packages/next/README.md b/packages/next/README.md @@ -1593,23 +1593,26 @@ Note: we recommend putting `.next`, or your [custom dist folder](https://github.
<details>
<summary><b>Examples</b></summary>
<ul>
- <li><a href="https://github.com/zeit/now-examples/tree/master/nextjs">Now.sh</a></li>
+ <li><a href=... | 7 |
diff --git a/services/datasources/lib/datasources/url/bigquery.rb b/services/datasources/lib/datasources/url/bigquery.rb @@ -240,9 +240,7 @@ module CartoDB
{
error: false,
total_bytes_processed: resp.total_bytes_processed,
- cache_hit: resp.cache_hit,
- location: resp.location,
- job_complete: resp.job_complete
+ cache... | 2 |
diff --git a/contracts/Court.sol b/contracts/Court.sol @@ -115,7 +115,7 @@ We might consider updating the contract with any of these features at a later da
-----------------------------------------------------------------
*/
-pragma solidity ^0.4.19;
+pragma solidity ^0.4.20;
import "contracts/Owned.sol";
@@ -370,7 +37... | 10 |
diff --git a/packages/wast-parser/src/fsm.js b/packages/wast-parser/src/fsm.js @@ -10,7 +10,8 @@ type TransitionList<Q> = { [Q]: Array<TransitionEdge<Q>> };
function makeTransition<Q>(
regex: RegExp,
nextState: Q,
- { n = 1, allowedSeparator }: { n: number, allowedSeparator: ?string } = {}
+ // $FlowIgnore
+ { n = 1, a... | 8 |
diff --git a/README.md b/README.md -## Hack OR Front-End Starter
-
This is a starter kit for Hack Oregon front-end development using React + Redux.
-This repo should help get started and keep the different projects aligned.
+This is a clone of the [Hack Oregon Starter kit](https://github.com/hackoregon/hackoregon-front... | 3 |
diff --git a/test/testnet/index.js b/test/testnet/index.js @@ -517,6 +517,13 @@ program
gasLimitForTransfer * gasPrice
).toString();
+ // set minimumStakeTime back to 1 minute on testnets
+ console.log(gray(`set minimumStakeTime back to 60 seconds on testnets`));
+ txns.push(
+ await Issuer.methods.setMinimumStakeTime(... | 3 |
diff --git a/src/rss/logic/LinkLogic.js b/src/rss/logic/LinkLogic.js const { EventEmitter } = require('events')
const ArticleIDResolver = require('../../structs/ArticleIDResolver.js')
const dbCmds = require('../db/commands.js')
-const log = require('../../util/logger.js')
+// const log = require('../../util/logger.js')... | 1 |
diff --git a/helpers/gifcap.json b/helpers/gifcap.json "desc": "Capture a video of your screen, create a screencast and export as a Gif. No installation. Client-side only, no data is uploaded",
"url": "https://gifcap.dev",
"tags": [
- "Animations",
- "Illustration",
"Images",
"Videos"
],
| 2 |
diff --git a/lib/dynamic.js b/lib/dynamic.js @@ -137,6 +137,10 @@ export default function dynamicComponent (p, o) {
this.loadBundle(nextProps)
}
+ componentWillUnmount () {
+ this.mounted = false
+ }
+
render () {
const { AsyncComponent, asyncElement } = this.state
const { LoadingComponent } = this
| 12 |
diff --git a/src/map/handler/Map.Drag.js b/src/map/handler/Map.Drag.js @@ -123,6 +123,7 @@ class MapDragHandler extends Handler {
if (!this.startDragTime) {
return;
}
+ const isTouch = param.domEvent.type === 'touchend';
const map = this.target;
let t = now() - this.startDragTime;
const mx = param['mousePos'].x,
@@ -13... | 7 |
diff --git a/README.md b/README.md @@ -402,7 +402,7 @@ Say thanks!
<td>Backbone<br><img src="https://edent.github.io/SuperTinyIcons/images/svg/backbone.svg" width="125" title="Backbone" /><br>463 Bytes</td>
</tr>
<tr>
-<td>Vue<br><img src="https://edent.github.io/SuperTinyIcons/images/svg/vue.svg" width="125" title="Vu... | 3 |
diff --git a/runtime/opensbp/opensbp.js b/runtime/opensbp/opensbp.js @@ -1161,6 +1161,9 @@ SBPRuntime.prototype._setUnits = function(units) {
this.maxjerk_a = convert(this.jogspeed_a);
this.maxjerk_b = convert(this.jogspeed_b);
this.maxjerk_c = convert(this.jogspeed_c);
+ this.cmd_posx = convert(this.cmd_posx);
+ this.... | 0 |
diff --git a/src/lib/API/api.js b/src/lib/API/api.js @@ -30,11 +30,32 @@ class API {
log.info('initializing api...')
AsyncStorage.getItem('GoodDAPP_jwt').then(async jwt => {
this.jwt = jwt
- this.client = await axios.create({
+ let instance = axios.create({
baseURL: Config.serverUrl,
timeout: 30000,
headers: { Authoriz... | 0 |
diff --git a/struts2-jquery-grid-showcase/pom.xml b/struts2-jquery-grid-showcase/pom.xml <velocity.version>1.7</velocity.version>
<velocity-tools.version>2.0</velocity-tools.version>
<derby.version>10.11.1.1</derby.version>
- <c3p0.version>0.9.1.2</c3p0.version>
+ <c3p0.version>0.9.5.5</c3p0.version>
<hibernate-validat... | 3 |
diff --git a/src/commands/utility/ServerInfoCommand.js b/src/commands/utility/ServerInfoCommand.js @@ -29,6 +29,7 @@ class ServerInfoCommand extends Command{
const embed = new Discord.MessageEmbed()
.setTitle(`Info of ${guild.name}`)
+ .setColor(0xf04747)
.setThumbnail(guild.iconURL({dynamic: true, size: 2048}))
.setFo... | 12 |
diff --git a/src/client/styles/scss/_mixins.scss b/src/client/styles/scss/_mixins.scss @mixin expand-modal-fullscreen($hasModalHeader: true, $hasModalFooter: true) {
// full-screen modal
- width: 97%;
- height: 95%;
+ width: auto;
+ height: calc(100vh - 30px);
+ margin: 15px;
+
.modal-content {
- height: 95%;
+ height:... | 7 |
diff --git a/apps/waypointer/app.js b/apps/waypointer/app.js @@ -5,6 +5,7 @@ var pal_bb = new Uint16Array([0x0000,0x07ff],0,1); // black, blue
// having 3 2 color pallette keeps the memory requirement lower
var buf1 = Graphics.createArrayBuffer(160,160,1, {msb:true});
var buf2 = Graphics.createArrayBuffer(80,40,1, {msb... | 5 |
diff --git a/_data/conferences.yml b/_data/conferences.yml year: 2019
id: neurips19
link: https://neurips.cc/Conferences/2019
- deadline: '2019-05-23 18:00:00'
+ deadline: '2019-05-23 13:00:00'
timezone: America/Los_Angeles
date: December 9-14, 2019
place: Vancouver Convention Centre, Canada
| 1 |
diff --git a/test/expr-update.spec.js b/test/expr-update.spec.js @@ -765,6 +765,70 @@ describe("Expression Update Detect", function () {
});
});
+ it("array literal with spread, in multi-line attr", function (done) {
+ var List = san.defineComponent({
+ template: '<ul><li s-for="item in list">{{item}}</li></ul>'
+ });
... | 11 |
diff --git a/core/algorithm-operator/lib/templates/algorithm-builder.js b/core/algorithm-operator/lib/templates/algorithm-builder.js @@ -122,6 +122,14 @@ const openshiftVolumes = {
{
name: 'workspace',
mountPath: '/tmp/workspace'
+ },
+ {
+ name: 'uploads',
+ mountPath: '/hkube/algorithm-builder/uploads'
+ },
+ {
+ nam... | 0 |
diff --git a/token-metadata/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/metadata.json b/token-metadata/0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9/metadata.json "symbol": "YFR",
"address": "0xD6940A1FfD9F3B025D1F1055AbCfd9F7CdA81eF9",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/compiler/theme.imba b/src/compiler/theme.imba @@ -177,28 +177,28 @@ export const variants =
easings:
"sine-in": "cubic-bezier(0.47, 0, 0.745, 0.715)",
"sine-out": "cubic-bezier(0.39, 0.575, 0.565, 1)",
- "sine-out-in": "cubic-bezier(0.445, 0.05, 0.55, 0.95)",
+ "sine-in-out": "cubic-bezier(0.445, 0.05,... | 10 |
diff --git a/test/unit/collection/validations.js b/test/unit/collection/validations.js @@ -6,6 +6,7 @@ var Waterline = require('../../../lib/waterline');
describe('Collection Validator ::', function() {
describe('.validate()', function() {
var person;
+ var car;
before(function(done) {
var waterline = new Waterline();
... | 0 |
diff --git a/db/migrations/20181221164327-create-deleted-subscription.js b/db/migrations/20181221164327-create-deleted-subscription.js @@ -2,7 +2,6 @@ module.exports = {
up: (queryInterface, Sequelize) => queryInterface.createTable('DeletedSubscriptions', {
id: {
allowNull: false,
- autoIncrement: true,
primaryKey: tru... | 4 |
diff --git a/token-metadata/0x749826F1041CAF0Ea856a4b3578Ba327B18335F8/metadata.json b/token-metadata/0x749826F1041CAF0Ea856a4b3578Ba327B18335F8/metadata.json "symbol": "TIG",
"address": "0x749826F1041CAF0Ea856a4b3578Ba327B18335F8",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/util.js b/util.js @@ -384,3 +384,20 @@ export function parseCoord(s) {
return null;
}
}
+
+export function parseExtents(s) {
+ if (s) {
+ const split = s.match(/^\[\[(-?[0-9\.]+),(-?[0-9\.]+),(-?[0-9\.]+)\],\[(-?[0-9\.]+),(-?[0-9\.]+),(-?[0-9\.]+)\]\]$/);
+ let x1, y1, z1, x2, y2, z2;
+ if (split && !isNaN... | 0 |
diff --git a/avatars/vrarmik/LegsManager.js b/avatars/vrarmik/LegsManager.js import THREE from '../../three.module.js';
import {Helpers} from './Unity.js';
+const avatarHeightFactor = 0.95;
const stepRate = 0.2;
const stepHeight = 0.2;
const stepMinDistance = 0;
@@ -262,7 +263,7 @@ class LegsManager {
this.rightLeg.ste... | 0 |
diff --git a/src/schemas/json/appveyor.json b/src/schemas/json/appveyor.json "enum": [
"x86",
"x64",
+ "ARM",
"Any CPU"
]
},
"configuration": {
- "enum": [
- "Debug",
- "Release"
- ]
+ "type": "string"
},
- "jobScalars": {
- "type": "object",
- "properties": {
- "image": {
- "description": "Build worker image (VM templ... | 7 |
diff --git a/src/Eleventy.js b/src/Eleventy.js @@ -1018,6 +1018,11 @@ Arguments:
ret = this.logger.closeStream(to);
}
+ // Passing the processed output to the eleventy.after event is new in 2.0
+ let [passthroughCopyResults, ...templateResults] = ret;
+ let processedResults = templateResults.flat().filter((entry) => !!... | 0 |
diff --git a/token-metadata/0xAEA5E11E22E447fA9837738A0cd2848857748ADF/metadata.json b/token-metadata/0xAEA5E11E22E447fA9837738A0cd2848857748ADF/metadata.json "symbol": "SOFI",
"address": "0xAEA5E11E22E447fA9837738A0cd2848857748ADF",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/server/src/errors/index.js b/server/src/errors/index.js -export class AuthentificationError extends Error {
+import * as Sentry from '@sentry/node';
+
+class ClientError extends Error {
+ constructor(args) {
+ super(args);
+ Sentry.configureScope((scope) => {
+ scope.setLevel('info');
+ });
+ Sentry.captur... | 12 |
diff --git a/articles/quickstart/spa/_includes/_token_renewal_server_setup.md b/articles/quickstart/spa/_includes/_token_renewal_server_setup.md @@ -53,5 +53,5 @@ console.log('Listening on http://localhost:${serverPort}');
```
::: note
-Add `http://localhost:$(serverPort)/silent` to the **Callback URLs** section in you... | 0 |
diff --git a/src/styles/cascader.less b/src/styles/cascader.less cursor: not-allowed;
}
+ &:not(&-disabled) {
&-focus &-close,
&-result:hover &-close {
display: block;
}
+ }
&-multiple {
.@{cascader-prefix}-close {
| 1 |
diff --git a/SECURITY.md b/SECURITY.md | Version | Supported Until |
| ------- | --------------- |
| <= 2.3 | Unsupported |
-| 2.4 | 30/06/2022 |
+| 2.4 | Best effort |
| 2.5 | Best effort |
| 2.6 | 06/01/2023 |
| 2.7 | To be defined |
| 12 |
diff --git a/src/js/components/Tiles.js b/src/js/components/Tiles.js @@ -92,11 +92,6 @@ export default class Tiles extends Component {
componentDidUpdate (prevProps, prevState) {
const { direction, onMore, selectable } = this.props;
- const { selected } = this.state;
- if (JSON.stringify(selected) !==
- JSON.stringify(... | 1 |
diff --git a/articles/api-auth/tutorials/multifactor-resource-owner-password.md b/articles/api-auth/tutorials/multifactor-resource-owner-password.md @@ -29,10 +29,19 @@ The flow starts by collecting end-user credentials and sending them to Auth0, as
5. The Client will then make a request to the [MFA challenge](/api/aut... | 0 |
diff --git a/README.md b/README.md @@ -12,11 +12,11 @@ _Follow steps as necessary. If you already have Reaction installed, you may be a
0. Prerequesites
- Install [Docker](https://docs.docker.com/install/) and [Docker Compose](https://docs.docker.com/compose/install/). Docker Compose is included when installing Docker ... | 3 |
diff --git a/src/components/signup/SignupState.js b/src/components/signup/SignupState.js @@ -140,7 +140,6 @@ const Signup = ({ navigation, screenProps }: { navigation: any, screenProps: any
// saved to the `state`
await API.addUser(state)
// Stores creationBlock number into 'lastBlock' feed's node
- const creationBlock... | 2 |
diff --git a/app/views/navbar.scala.html b/app/views/navbar.scala.html <a class="navbarBtn navbarStartBtn" href="@routes.AuditController.audit()">Start Mapping</a>
</li>
<li class="active navbarLink">
- <a class="navbarBtn navbarStartBtn" href="@routes.ApplicationController.labelingGuide">Labeling Guide</a>
+ <a class=... | 10 |
diff --git a/packages/gatsby/src/internal-plugins/query-runner/__tests__/pages-writer.js b/packages/gatsby/src/internal-plugins/query-runner/__tests__/pages-writer.js const _ = require(`lodash`)
const { writePages, resetLastHash } = require(`../pages-writer`)
+const { joinPath } = require(`../../../utils/path`)
const j... | 4 |
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -1817,17 +1817,6 @@ axes.doTicks = function(gd, axid, skipTitle) {
}
}
- // make sure we only have allowed options for exponents
- // (others can make confusing errors)
- if(!ax.tickformat) {
- if(['none', 'e', 'E', 'power', 'SI', 'B'].indexOf(ax... | 2 |
diff --git a/src/screens/HomeScreen/component.js b/src/screens/HomeScreen/component.js @@ -187,7 +187,8 @@ const styles = StyleSheet.create({
backgroundColor: bgColor
},
partnershipBar: {
- height: 42
+ height: 42,
+ marginBottom: 4
},
innerBar: {
backgroundColor: lightNavyBlueColor,
| 0 |
diff --git a/app/views/comments/_comments.html.erb b/app/views/comments/_comments.html.erb <%-
parent ||= comments
hide_form ||= false
- hide_form = true if current_user.blocked_by?( parent.try(:user) )
+ hide_form = true if current_user && current_user.blocked_by?( parent.try(:user) )
remote ||= nil
header_tag ||= "h3... | 1 |
diff --git a/public/viewjs/productform.js b/public/viewjs/productform.js @@ -431,5 +431,6 @@ $('#qu_id_purchase').blur(function(e)
var QuIdPurchase = $('#qu_id_purchase');
if (QuIdStock[0].selectedIndex === 0 && QuIdPurchase[0].selectedIndex !== 0) {
QuIdStock[0].selectedIndex = QuIdPurchase[0].selectedIndex;
+ Grocy.F... | 0 |
diff --git a/articles/api/authentication/_multifactor-authentication.md b/articles/api/authentication/_multifactor-authentication.md @@ -106,8 +106,8 @@ If OTP is supported by the user and you don't want to request a different factor
| `client_id` <br/><span class="label label-danger">Required</span> | Your application... | 2 |
diff --git a/src/pages/dashboard/_StateCumulativeTestsContainer.js b/src/pages/dashboard/_StateCumulativeTestsContainer.js @@ -209,8 +209,8 @@ export default function CumulativeTestsByStateContainer() {
.toLowerCase()
.replace(/\s/g, '-')}`}
>
- See all data from
- {` ${stateName.replace(/\s/g, ' ')}`}
+ View data from... | 1 |
diff --git a/styles/modules/modals/_editListing.scss b/styles/modules/modals/_editListing.scss border-style: solid;
padding: $pad;
word-break: break-word;
- min-width: 120px;
+ min-width: 90px;
max-width: 125px;
input[type=text] {
width: 100%;
}
- &:last-child {
- border-right-width: 0;
- }
-
&.unconstrainedWidth {
whi... | 9 |
diff --git a/src/gltf/camera.js b/src/gltf/camera.js @@ -47,7 +47,8 @@ class gltfCamera extends GltfObject
}
}
- if(this.node === undefined)
+ // cameraIndexStays undefined if camera is not assigned to any node
+ if(this.node === undefined && cameraIndex !== undefined)
{
console.error("Invalid node for camera " + camer... | 2 |
diff --git a/src/core/vdom/patch.js b/src/core/vdom/patch.js @@ -327,6 +327,7 @@ export function createPatchFunction (backend) {
function removeAndInvokeRemoveHook (vnode, rm) {
if (isDef(rm) || isDef(vnode.data)) {
+ let i
const listeners = cbs.remove.length + 1
if (isDef(rm)) {
// we have a recursively passed down rm... | 7 |
diff --git a/lib/instrumentation/core/globals.js b/lib/instrumentation/core/globals.js var asyncHookInstrumentation = require('./async_hooks')
var events = require('events')
-var wrap = require('../../shimmer').wrapMethod
+var logger = require('../../logger').child({component: 'globals'})
+var shimmer = require('../../... | 7 |
diff --git a/cravat/util.py b/cravat/util.py import re
import os
+import importlib
+import sys
def get_ucsc_bins (start, stop=None):
if stop is None:
@@ -151,7 +153,10 @@ def get_caller_name (path):
def load_class(class_name, path):
"""Load a class from the class's name and path. (dynamic importing)"""
+ path_dir = os.... | 12 |
diff --git a/src/utils/utils.js b/src/utils/utils.js @@ -452,16 +452,21 @@ export function checkSimpleConditional(component, condition, row, data) {
if (_.isNil(value)) {
value = '';
}
+
+ value = String(value);
+ const eq = String(condition.eq);
+ const show = String(condition.show);
+
// Special check for selectboxes... | 7 |
diff --git a/userscript.user.js b/userscript.user.js @@ -81052,7 +81052,82 @@ var $$IMU_EXPORT$$;
if (domain === "assets-jpcust.jwpsrv.com") {
// https://assets-jpcust.jwpsrv.com/thumbnails/ere54hzk-320.jpg
// https://assets-jpcust.jwpsrv.com/thumbnails/ere54hzk.jpg
- return src.replace(/(\/thumbnails\/+[^-./]+)-[0-9]+... | 7 |
diff --git a/src/index.js b/src/index.js @@ -236,7 +236,9 @@ class Dayjs {
return date
}
if (['y', C.Y].indexOf(unit) > -1) {
- return this.set(C.Y, this.$y + number)
+ let date = this.set(C.DATE, 1).set(C.Y, this.$y + number)
+ date = date.set(C.DATE, Math.min(this.$D, date.daysInMonth()))
+ return date
}
let step
swi... | 1 |
diff --git a/data.js b/data.js @@ -1394,6 +1394,14 @@ module.exports = [{
url: "https://github.com/Cedriking/is.js",
source: "https://raw.githubusercontent.com/Cedriking/is.js/master/is.js"
},
+ {
+ name: "wavyjs",
+ github: "northeastnerd/wavyjs",
+ tags: ["audio", "wav", "sound", "html5", "RIFF"],
+ description: "Zer... | 0 |
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/fileupload/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/fileupload/template.vue @@ -82,9 +82,14 @@ export default {
setUploadProgress(percentCompleted){
this.uploadProgress = percentCompleted
if(percentC... | 7 |
diff --git a/package.json b/package.json "babel-loader": "^6.2.1",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-syntax-object-rest-spread": "^6.3.13",
- "babel-plugin-tailcall-optimization": "^1.0.11",
+ "babel-plugin-tailcall-optimization": "^1.0.12",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
... | 7 |
diff --git a/assets/js/googlesitekit/widgets/components/WidgetRenderer.test.js b/assets/js/googlesitekit/widgets/components/WidgetRenderer.test.js /**
* Internal dependencies
*/
-import Widget from './WidgetRenderer';
+import WidgetRenderer from './WidgetRenderer';
import { STORE_NAME } from '../datastore/constants';
i... | 10 |
diff --git a/framer/Layer.coffee b/framer/Layer.coffee @@ -58,6 +58,7 @@ layerProperty = (obj, name, cssProperty, fallback, validator, transformer, optio
elementContainer = @
if cssProperty in @_stylesAppliedToParent
elementContainer = @parent
+ @_parent._properties[name] = fallback
mainElement = elementContainer._elem... | 12 |
diff --git a/src/components/lights/HemisphereLight.js b/src/components/lights/HemisphereLight.js @@ -2,11 +2,15 @@ import {HemisphereLight as HemisphereLightNative, HemisphereLightHelper} from 't
import {LightComponent} from '../../core/LightComponent';
class HemisphereLight extends LightComponent {
- // static helpers... | 3 |
diff --git a/src/components/victory-line/helper-methods.js b/src/components/victory-line/helper-methods.js @@ -60,7 +60,7 @@ export default {
dataset = [];
}
- const dataSegments = this.getDataSegments(dataset, props.sortKey);
+ const dataSegments = this.getDataSegments(dataset);
const range = {
x: Helpers.getRange(pro... | 4 |
diff --git a/elements/simple-login/lib/simple-camera-snap.js b/elements/simple-login/lib/simple-camera-snap.js @@ -93,6 +93,15 @@ class SimpleCameraSnap extends HTMLElement {
const selfie = this.shadowRoot.querySelector("#selfie");
selfie.innerHTML = "";
selfie.appendChild(img);
+ // throw up event for other things to ... | 11 |
diff --git a/src/Appwrite/Utopia/Request/Filters/V12.php b/src/Appwrite/Utopia/Request/Filters/V12.php @@ -9,53 +9,121 @@ class V12 extends Filter
// Convert 0.11 params format to 0.12 format
public function parse(array $content, string $model): array
{
- $parsedResponse = [];
+ // TODO: Double-check!
switch ($model) {... | 7 |
diff --git a/package.json b/package.json "url": "https://opencollective.com/redom",
"logo": "https://opencollective.com/redom/logo.txt"
},
+ "funding": [
+ {
+ "type": "opencollective",
+ "url": "https://opencollective.com/redom"
+ }
+ ],
"types": "index.d.ts"
}
| 0 |
diff --git a/generators/server/templates/pom.xml.ejs b/generators/server/templates/pom.xml.ejs <%_ } _%>
<!-- Plugin versions -->
<maven-clean-plugin.version>3.1.0</maven-clean-plugin.version>
+ <maven-site-plugin.version>3.7.1</maven-site-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.vers... | 3 |
diff --git a/token-metadata/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/metadata.json b/token-metadata/0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7/metadata.json "symbol": "DOS",
"address": "0x0A913beaD80F321E7Ac35285Ee10d9d922659cB7",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/item-spec/json-schema/item.json b/item-spec/json-schema/item.json "title": "STAC Item",
"type": "object",
"description": "This object represents the metadata for an item in a SpatioTemporal Asset Catalog.",
- "additionalProperties": true,
"allOf": [
{
"$ref": "#/definitions/core"
| 2 |
diff --git a/tests/connectors/kollekt.js b/tests/connectors/kollekt.js 'use strict';
-module.exports = function(driver, connectorSpec) {
- // Auth is required
- connectorSpec.shouldLoadWebsite(driver, {
+module.exports = (driver, spec) => {
+ spec.shouldLoadWebsite(driver, {
url: 'https://kollekt.fm/'
});
+
+ spec.shou... | 7 |
diff --git a/src/govuk/components/accordion/accordion.js b/src/govuk/components/accordion/accordion.js @@ -94,7 +94,7 @@ Accordion.prototype.initSectionHeaders = function () {
nodeListForEach(this.$sections, function ($section, i) {
// Set header attributes
var $header = $section.querySelector('.' + this.sectionHeaderC... | 10 |
diff --git a/src/lib/realmdb/feedSource/NewsSource.js b/src/lib/realmdb/feedSource/NewsSource.js @@ -111,6 +111,8 @@ export default class NewsSource extends FeedSource {
if ('DOCUMENT_NOT_FOUND' !== exception.name) {
throw exception
}
+
+ log.warn('imported ceramic feed item not exists', exception.message, exception, {... | 0 |
diff --git a/controls_fhemtabletui.txt b/controls_fhemtabletui.txt @@ -52,7 +52,7 @@ UPD 2017-12-22_09:57:40 5722 www/tablet/js/widget_select.js
UPD 2018-08-16_07:43:39 9665 www/tablet/js/widget_popup.js
UPD 2018-12-03_21:14:03 2672 www/tablet/js/widget_tts.js
UPD 2018-11-06_22:35:11 9772 www/tablet/js/widget_html.js
-... | 1 |
diff --git a/app/core/src/navigation/HotelsStack.js b/app/core/src/navigation/HotelsStack.js @@ -75,8 +75,8 @@ export default {
onGoToHotelGallery={goToGalleryGrid}
search={{
// FIXME: we need to solve how to pass these data from search or map
- // After GraphQL merge-request !564 is merged, change this to aG90ZWw6MjUy... | 4 |
diff --git a/src/utils.js b/src/utils.js @@ -378,6 +378,8 @@ const extractUrls = ({ string, urlRegExp = URL_NO_COMMAS_REGEX }) => {
/**
* Returns a randomly selected User-Agent header out of a list of the most common headers.
+ * @returns {String}
+ * @memberOf utils
*/
const getRandomUserAgent = () => {
const index = ... | 7 |
diff --git a/token-metadata/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/metadata.json b/token-metadata/0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e/metadata.json "symbol": "MOD",
"address": "0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e",
"decimals": 0,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/src/parser/vast_parser.js b/src/parser/vast_parser.js @@ -312,7 +312,8 @@ export class VASTParser extends EventEmitter {
this.emit('VAST-ad-parsed', {
type: result.type,
url,
- wrapperDepth
+ wrapperDepth,
+ adIndex: ads.length - 1
});
} else {
// VAST version of response not supported.
| 0 |
diff --git a/metaverse-modules.js b/metaverse-modules.js @@ -19,6 +19,7 @@ const moduleUrls = {
cameraPlaceholder: './metaverse_modules/camera-placeholder/',
targetReticle: './metaverse_modules/target-reticle/',
halo: './metaverse_modules/halo/',
+ meshLodItem: './metaverse_modules/mesh-lod-item/',
};
const modules = {... | 0 |
diff --git a/src/os/layer/preset/layerpresetmanager.js b/src/os/layer/preset/layerpresetmanager.js @@ -156,13 +156,16 @@ class LayerPresetManager extends Disposable {
* @protected
*/
onLayerStyleChanged(layerId, layer, check, event) {
- const meta = /** @type {!LayerPresetsMetaData} */ (this.presets_.entry(layerId)[2])... | 1 |
diff --git a/packages/yoroi-extension/features/support.feature b/packages/yoroi-extension/features/support.feature @@ -8,7 +8,7 @@ Feature: Wallet UI Support
Then Revamp. I switch to revamp version
And I should see the Support button
-@support-1
+@support-1 @ignore
Scenario: Contact Support successful
When I click on S... | 8 |
diff --git a/framer/TextLayer.coffee b/framer/TextLayer.coffee @@ -38,6 +38,7 @@ class exports.TextLayer extends Layer
fontSize: 40
fontWeight: 400
lineHeight: 1.25
+ font: options.fontFamily ? @defaultFont()
super options
@@ -51,11 +52,6 @@ class exports.TextLayer extends Layer
# Reset width and height
@autoSize()
- p... | 12 |
diff --git a/src/traces/contour/plot.js b/src/traces/contour/plot.js @@ -273,8 +273,16 @@ function makeLinesAndLabels(plotgroup, pathinfo, gd, cd0, contours, perimeter) {
lineContainer.enter().append('g')
.classed('contourlines', true);
+ var showLines = contours.showlines !== false;
+ var showLabels = contours.showlab... | 11 |
diff --git a/extensions/README.md b/extensions/README.md @@ -43,7 +43,8 @@ the Item Asset objects contained in the Item, but may also be used in an individ
## Core STAC Extensions
-These extensions are considered stable, and are included directly in this repository.
+These extensions are considered stable and are widel... | 2 |
diff --git a/src/core/core.js b/src/core/core.js @@ -1384,6 +1384,7 @@ Crafty._addCallbackMethods(Crafty);
Crafty.extend({
// Define Crafty's id
0: "global",
+
/**@
* #Crafty.init
* @category Core
@@ -1426,6 +1427,64 @@ Crafty.extend({
return this;
},
+ /**@
+ * #Crafty.initAsync
+ * @category Core
+ * @kind Method
+ *... | 0 |
diff --git a/app/models/daos/slick/UserDAOSlick.scala b/app/models/daos/slick/UserDAOSlick.scala @@ -486,7 +486,7 @@ object UserDAOSlick {
// Map(user_id: String -> (most_recent_sign_in_time: Option[Timestamp], sign_in_count: Int)).
val signInTimesAndCounts =
- WebpageActivityTable.activities.filter(_.activity inSet Li... | 13 |
diff --git a/src/utils/wallet.js b/src/utils/wallet.js @@ -932,7 +932,7 @@ class Wallet {
}
}
- async signAndSendTransactions(transactions, accountId) {
+ async signAndSendTransactions(transactions, accountId = this.accountId) {
const account = await this.getAccount(accountId);
store.dispatch(setSignTransactionStatus('... | 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.