DPD icon indicating copy to clipboard operation
DPD copied to clipboard

Repository for the FutureLearn MOOC "Defensive programming and debugging"

Results 3 DPD issues
Sort by recently updated
recently updated
newest added

**** #!/bin/sh sed -i "s/\$SENTINEL_QUORUM/$SENTINEL_QUORUM/g" /etc/redis/sentinel.conf sed -i "s/\$SENTINEL_DOWN_AFTER/$SENTINEL_DOWN_AFTER/g" /etc/redis/sentinel.conf sed -i "s/\$SENTINEL_FAILOVER/$SENTINEL_FAILOVER/g" /etc/redis/sentinel.conf exec docker-entrypoint.sh redis-server /etc/redis/sentinel.conf --sentinel

const areEqualInUpperCase = (str1, str2) => str1.toUpperCase() === str2.toUpperCase(); const areEqualInLowerCase = (str1, str2) => str1.toLowerCase() === str2.toLowerCase(); areEqualInUpperCase("ß", "ss"); // true;应该为 false areEqualInLowerCase("ı", "I"); // false;应该为 true

OPEN MAIN MENU Web API 接口参考 CSS 自定义高亮 API 此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。 Filter sidebar Filter In this article 概念与用法 接口 示例 规范 浏览器兼容性 参见 CSS Custom Highlight API...