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
# Copyright (c) 2012 NetApp, Inc. | |
# All Rights Reserved. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may | |
# not use this file except in compliance with the License. You may obtain | |
# a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software |
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
#!/bin/bash | |
# | |
# Updates a hosted zone in Route53 to point to the current IP address | |
# of this host. | |
# | |
# Usage: route53-identity.sh ZTDR0AEDW myhost.mydomain.com | |
# | |
ZONE_ID=$1 | |
DOMAIN_NAME=$2 |
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
#ifndef MALLOC_OVERRIDE_OSX_H | |
#define MALLOC_OVERRIDE_OSX_H | |
/* Overrides memory allocation functions so that allocation amounts can be | |
* tracked. Note that the malloc'd size is not necessarily equal to the | |
* size requested, but is indicative of how much memory was actually | |
* allocated. | |
* | |
* If MALLOC_DEBUG_OUTPUT is defined, extra logging will be done to stderr | |
* whenever a memory allocation is made/freed. Turning this on will add |
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
define('scriptrunner/auto-reviewers', [ | |
'jquery', | |
'underscore', | |
'bitbucket/util/events', | |
'exports' | |
], function ($, | |
_, | |
events, | |
exports) { |