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
<?xml version="1.0" encoding="UTF-8"?> | |
<workspaceFilter version="1.0"> | |
<filter root="/content"> | |
<exclude pattern="/content/jcr:system"/> | |
<exclude pattern="/content/var/classes"/> | |
<exclude pattern="^.*/rep:accessControl"/> | |
</filter> | |
</workspaceFilter> |
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
Resource resource; | |
ValueMap mainProperties; | |
ValueMap assetMetadataProperties; | |
Resource metadataResource; | |
ValueMap jcrProperties; | |
Resource jcrdataResource; | |
ValueMap allProperties; | |
for (Hit hit : result.getHits()) { | |
//LOGGER.info("nHit path="+hit.getPath()+", title="+hit.getTitle()); resource = hit.getResource(); |
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
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
List<TagBean> superCategories = new ArrayList<>(); | |
List<TagBean> categories = new ArrayList<>(); | |
List<TagBean> channels = new ArrayList<>(); | |
List<TagBean> shows = new ArrayList<>(); | |
String filePath = "/etc/tags/namespace/shows/super-category/category/channel/show/show-name" |
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
<div class="row"> | |
<div class="col-md-4" *ngFor="let key of blobsList | keys"> | |
<p><img src="{{blobsList[key].blobURL}}" height="100" width="100"></p> | |
<p><a class="btn btn-default" href="#">{{blobsList[key].blobName}}</a></p> | |
</div> | |
</div> |
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 6.
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
No,Eclipse Foundation Project Name,Scope,Related Oracle Java EE Project,JSR | |
1,Eclipse Project for JAX-WS,Eclipse Project for JAX-WS provides the API and TCK for,Java API for XML-Based Web Services (JAX-WS) 2.2,JSR 224 | |
2,Eclipse Project for Interceptors,"Eclipse Project for Interceptors provides the API and TCK for Interceptors, starting from the specification defined by JSR-318",Interceptors 1.2,JSR 318 | |
3,Eclipse Project for JASPIC,"Eclipse Project for JASPIC provides the API and TCK for Java Authentication Service Provider Interface for Containers, starting from the specification defined by JSR-196.",Java Authentication Service Provider Interface for Containers 1.1,JSR 196 | |
4,Eclipse Project for Interceptors,"Eclipse Project for Interceptors provides the API and TCK for Interceptors, starting from the specification defined by JSR-318.",Interceptors 1.2,JSR 318 | |
5,Eclipse Project for JASPIC,"Eclipse Project for JASPIC provides the API and TCK for Java Authentication Service Provider Interface for Containers, st |
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
# Sample build file | |
# @author Suren Konathala | |
# ----- | |
image: node:8 | |
pipelines: | |
default: | |
- step: | |
caches: | |
- node |
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
Feature: Add a measurement | |
In order to have source information to examine later | |
I want to be able to capture a measurement of several metrics at a specific time | |
Scenario: Add a measurement with valid (numeric) values | |
# POST /measurements | |
When I submit a new measurement as follows: | |
| timestamp | temperature | dewPoint | precipitation | | |
| "2015-09-01T16:00:00.000Z" | 27.1 | 16.7 | 0 | | |
Then the response has a status code of 201 |
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
package com.weathertracker; | |
import static springfox.documentation.builders.PathSelectors.regex; | |
import java.util.Collections; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import springfox.documentation.builders.ApiInfoBuilder; | |
import springfox.documentation.builders.PathSelectors; | |
import springfox.documentation.builders.RequestHandlerSelectors; | |
import springfox.documentation.service.ApiInfo; |
OlderNewer