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
FROM ghcr.io/linkerd/cni-plugin:stable-2.13.3 | |
# Override default install-cni.sh due to https://github.com/linkerd/linkerd2/issues/10375 | |
COPY --chmod=0755 install-cni.sh /linkerd/install-cni.sh |
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
==> Checking that code complies with gofmt requirements... | |
TF_ACC=1 go test "./helm" -v -timeout 120m -parallel=4 | |
=== RUN TestAccDataRepository_basic | |
--- PASS: TestAccDataRepository_basic (10.72s) | |
=== RUN TestProvider | |
--- PASS: TestProvider (0.00s) | |
=== RUN TestAccResourceRelease_basic | |
=== PAUSE TestAccResourceRelease_basic | |
=== RUN TestAccResourceRelease_import | |
=== PAUSE TestAccResourceRelease_import |
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
### | |
Angular Directive for eonasdan's bootstrap-datetimepicker | |
### | |
angular.module('someApp') | |
.directive 'dateTimePicker', ($parse)-> | |
restrict: 'A' | |
link: (scope, element, attrs)-> | |
modelAccessor = $parse(attrs.ngModel) |
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
ro: | |
views: | |
pagination: | |
first: "« Prima" | |
last: "Ultima »" | |
previous: "‹ Precedenta" | |
next: "Următoarea ›" | |
truncate: "…" | |
helpers: | |
page_entries_info: |
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
--- /src/include/bcmutils.h~ 2011-10-22 18:55:54.000000000 +0200 | |
+++ /src/include/bcmutils.h 2013-02-21 09:08:19.947034424 +0100 | |
@@ -555,7 +555,11 @@ extern void printbig(char *buf); | |
extern void prhex(const char *msg, uchar *buf, uint len); | |
extern bcm_tlv_t *BCMROMFN(bcm_next_tlv)(bcm_tlv_t *elt, int *buflen); | |
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 8, 0) | |
extern bcm_tlv_t *BCMROMFN(bcm_parse_tlvs)(void *buf, int buflen, uint key); | |
+#else | |
+extern bcm_tlv_t *BCMROMFN(bcm_parse_tlvs)(const void *buf, int buflen, uint key); |
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
# Contributor: Austin ( doorknob60 [at] gmail [dot] com ) | |
# Maintainer: Gaetan Bisson <bisson@archlinux.org> | |
pkgname=broadcom-wl | |
pkgver=5.100.82.112 | |
pkgrel=10 | |
pkgdesc='Broadcom 802.11abgn hybrid Linux networking device driver' | |
url='http://www.broadcom.com/support/802.11/linux_sta.php' | |
arch=('i686' 'x86_64') | |
license=('custom') |
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
<?php | |
class WP { | |
private $methods = array( | |
'getPost', | |
'getPosts', | |
'newPost', | |
'editPost', | |
'deletePost', |
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
<!-- | |
You would first need to add id's to your date fields | |
Shortcodes would look like: | |
[date ... id:date1] | |
[date ... id:date2] | |
--> | |
<script> | |
jQuery(function($){ | |
var $date1 = $('#date1'), |
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
<?php | |
/** | |
* Add these few lines of code to your theme's | |
* functions.php to enable HTML excerpts | |
* | |
* Tested with WordPress 3.3.1 | |
*/ | |
remove_filter('get_the_excerpt', 'wp_trim_excerpt'); |