This Gist was moved into its own Repository at https://github.com/dploeger/godot-migrationnotes
Please fork that repository and send pull request for updates. Thanks!
In ladon/compat.py: | |
add to first lines: | |
from datetime import datetime | |
and in line #24: | |
type_to_xsd = { | |
int: 'long', | |
long: 'long', |
String encodedPassword = acct.getAttr(Provisioning.A_userPassword); | |
if (acct instanceof LdapEntry) { | |
LdapProvisioning prov = (LdapProvisioning) acct.getProvisioning(); | |
prov.zimbraLdapAuthenticate(acct, password, context); | |
return; // good password, RETURN |
# | |
# Clustering | |
# | |
clustermode=true | |
cluster.id=0 | |
cluster.maxid=1 | |
cluster.broadcast.methods=jgroups | |
cluster.broadcast.method.jgroups=de.hybris.platform.cluster.jgroups.JGroupsBroadcastMethod | |
# Local cluster-IP (WARNING! Change on other node!) | |
cluster.broadcast.method.jgroups.tcp.bind_addr=172.16.1.5 |
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster" | |
channelSendOptions="8"> | |
<Manager className="org.apache.catalina.ha.session.DeltaManager" | |
expireSessionsOnShutdown="false" | |
notifyListenersOnReplication="true"/> | |
<Channel className="org.apache.catalina.tribes.group.GroupChannel"> | |
<Membership className="org.apache.catalina.tribes.membership.McastService" | |
address="228.0.0.4" |
Index: bitshifter.c | |
=================================================================== | |
--- bitshifter.c (revision 637) | |
+++ bitshifter.c (working copy) | |
@@ -439,13 +439,25 @@ | |
// > 0 <= C <= 7 (see above) | |
// > *b = Next bit position to be copied from 'db' (1 <= B <= 8) | |
// > [ ((Q << C) & 0xff00) + new bits from db ] >> C | |
- **q = ( ( (__int32)((**q) >> (8-*c)) << 8) | (((__int32)db << (*b-1)) & 0xff) ) >> *c; | |
+ **q = ( ( (int32_t)((**q) >> (8-*c)) << 8) | (((int32_t)db << (*b-1)) & 0xff) ) >> *c; |
{ | |
"BTTPresetName" : "Touchbar System Stats", | |
"BTTPresetUUID" : "5BCAEC41-D306-4BB6-B172-F9EBB974D4D3", | |
"BTTPresetContent" : [ | |
{ | |
"BTTAppBundleIdentifier" : "BT.G", | |
"BTTAppName" : "Global", | |
"BTTAppSpecificSettings" : { | |
}, |
import Bluebird = require('bluebird'); | |
import {UnirestError} from './UnirestError'; | |
/** | |
* A tool for converting a unirest object into a promise | |
* @param unirest The unirest instance | |
* @returns {Bluebird<any>} | |
*/ | |
export function unirestAsPromise(unirest: any): Bluebird<any> { | |
return new Bluebird( |
let Vaulted = require('vaulted'); | |
let fs = require('fs'); | |
let myVault = new Vaulted({ | |
vault_host: 'localhost', | |
vault_port: 8200, | |
vault_ssl: false | |
}); | |
myVault.prepare() |
This Gist was moved into its own Repository at https://github.com/dploeger/godot-migrationnotes
Please fork that repository and send pull request for updates. Thanks!
package de.dieploegers.develop.idea.custommark.annotators | |
import com.intellij.lang.annotation.AnnotationHolder | |
import com.intellij.lang.annotation.Annotator | |
import com.intellij.lang.annotation.HighlightSeverity | |
import com.intellij.openapi.editor.markup.EffectType | |
import com.intellij.openapi.editor.markup.TextAttributes | |
import com.intellij.psi.PsiElement | |
import java.awt.Color |