This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <pthread.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ |
This file contains 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 | |
/** | |
* @file | |
* | |
* Contains Drupal\newsletter_view\Controller\NewsletterViewNodeController | |
*/ | |
namespace Drupal\newsletter_view\Controller; |
This file contains 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
{# | |
/** | |
* @file | |
* Template for a 2 column layout. | |
* | |
* This template provides a two column display layout, with each column | |
* roughly equal in width. | |
* | |
* Variables: | |
* - attributes: Attributes to use for the layout like additional classes and id. |
This file contains 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
{# | |
/** | |
* @file | |
* Returns HTML for a breadcrumb trail. | |
* | |
* @param $variables | |
* An associative array containing: | |
* - breadcrumb: An array containing the breadcrumb links. | |
* | |
* @ingroup themeable |
This file contains 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
{% if breadcrumb is defined %} | |
<nav class="breadcrumb" role="navigation"> | |
<h2 class="element-invisible">{{ 'You are here'|t }}</h2> | |
<ol> | |
{% for item in breadcrumb %} | |
{% if loop.last %} | |
<li>{{ item }}</li> | |
{% else %} | |
<li>{{ item }} » </li> | |
{% endif %} |