commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
9b8b87009cbe064d577ed53e0bae519770197eee
spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/system-requirements.adoc
spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/system-requirements.adoc
[[getting-started.system-requirements]] == System Requirements Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to and including Java 17. {spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required. Explicit build support is provided for the following build tools: |=== | Build Tool | Version | Maven | 3.5+ | Gradle | 6.8.x, 6.9.x, and 7.x |=== [[getting-started.system-requirements.servlet-containers]] === Servlet Containers Spring Boot supports the following embedded servlet containers: |=== | Name | Servlet Version | Tomcat 9.0 | 4.0 | Jetty 9.4 | 3.1 | Jetty 10.0 | 4.0 | Undertow 2.0 | 4.0 |=== You can also deploy Spring Boot applications to any Servlet 3.1+ compatible container.
[[getting-started.system-requirements]] == System Requirements Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to and including Java 18. {spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required. Explicit build support is provided for the following build tools: |=== | Build Tool | Version | Maven | 3.5+ | Gradle | 6.8.x, 6.9.x, and 7.x |=== [[getting-started.system-requirements.servlet-containers]] === Servlet Containers Spring Boot supports the following embedded servlet containers: |=== | Name | Servlet Version | Tomcat 9.0 | 4.0 | Jetty 9.4 | 3.1 | Jetty 10.0 | 4.0 | Undertow 2.0 | 4.0 |=== You can also deploy Spring Boot applications to any Servlet 3.1+ compatible container.
Document support for Java 18
Document support for Java 18 Closes gh-30548
AsciiDoc
apache-2.0
michael-simons/spring-boot,htynkn/spring-boot,vpavic/spring-boot,mdeinum/spring-boot,chrylis/spring-boot,scottfrederick/spring-boot,htynkn/spring-boot,dreis2211/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,scottfrederick/spring-boot,spring-projects/spring-boot,scottfrederick/spring-boot,aahlenst/spring-boot,dreis2211/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,wilkinsona/spring-boot,chrylis/spring-boot,scottfrederick/spring-boot,michael-simons/spring-boot,aahlenst/spring-boot,aahlenst/spring-boot,vpavic/spring-boot,chrylis/spring-boot,mdeinum/spring-boot,wilkinsona/spring-boot,dreis2211/spring-boot,chrylis/spring-boot,wilkinsona/spring-boot,michael-simons/spring-boot,vpavic/spring-boot,michael-simons/spring-boot,vpavic/spring-boot,wilkinsona/spring-boot,aahlenst/spring-boot,chrylis/spring-boot,mdeinum/spring-boot,scottfrederick/spring-boot,htynkn/spring-boot,aahlenst/spring-boot,wilkinsona/spring-boot,spring-projects/spring-boot,htynkn/spring-boot,chrylis/spring-boot,scottfrederick/spring-boot,dreis2211/spring-boot,michael-simons/spring-boot,spring-projects/spring-boot,mdeinum/spring-boot,spring-projects/spring-boot,dreis2211/spring-boot,htynkn/spring-boot,michael-simons/spring-boot,vpavic/spring-boot,spring-projects/spring-boot,htynkn/spring-boot,aahlenst/spring-boot,mdeinum/spring-boot,wilkinsona/spring-boot
fa03fb01d9d34ebb07ddd8c6c978d59e60b68d9e
src/main/asciidoc/installation.adoc
src/main/asciidoc/installation.adoc
[[installation]] == Installation === Dependency ```xml <dependency> <groupId>net.ttddyy</groupId> <artifactId>datasource-assert</artifactId> <version>[LATEST_VERSION]</version> </dependency> ``` {datasource-proxy}[datasource-proxy] is the only transitive dependency library. + {assertj}[AssertJ] and {hamcrest}[Hamcrest] are optional. If you need to use their assertions, you need to explicitly specify dependency in your project. ==== Snapshot Snapshot is available via {oss-snapshot-repository}[oss sonatype snapshot repository]. To download snapshot jars, enable sonatype snapshot repository: ```xml <repositories> <repository> <id>sonatype-snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> ``` === Supported Java Versions `datasource-assert` works with java 1.7+.
[[installation]] == Installation === Dependency ```xml <dependency> <groupId>net.ttddyy</groupId> <artifactId>datasource-assert</artifactId> <version>[LATEST_VERSION]</version> </dependency> ``` {datasource-proxy}[datasource-proxy] is the only transitive dependency library. + {assertj}[AssertJ] and {hamcrest}[Hamcrest] are optional. If you need to use their assertions, you need to explicitly specify dependency in your project. ==== Snapshot (via Sonatype OSSRH) Snapshot is available via {oss-snapshot-repository}[oss sonatype snapshot repository]. To download snapshot jars, enable sonatype snapshot repository: ```xml <repositories> <repository> <id>sonatype-snapshots-repo</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> ``` ==== Snapshot (via JitPack) ```xml <repositories> <repository> <id>jitpack.io</id> <url>https://jitpack.io</url> </repository> </repositories> ``` ```xml <dependency> <groupId>om.github.ttddyy</groupId> <artifactId>datasource-assert</artifactId> <version>master-SNAPSHOT</version> </dependency> ``` === Supported Java Versions `datasource-assert` works with java 1.7+.
Document snapshot download from JitPack
Document snapshot download from JitPack
AsciiDoc
apache-2.0
ttddyy/datasource-assert,ttddyy/datasource-assert,ttddyy/datasource-assert
21f9876d879aefaad125c269a52d9b137c2b70e0
docs/manual/src/docs/asciidoc/_includes/about/whats-new.adoc
docs/manual/src/docs/asciidoc/_includes/about/whats-new.adoc
[[new]] == What's New in Spring Security 5.5 Spring Security 5.5 provides a number of new features. Below are the highlights of the release. [[whats-new-servlet]] === Servlet * OAuth 2.0 Client ** Added support for https://github.com/spring-projects/spring-security/pull/9520[Jwt Client Authentication] `private_key_jwt` and `client_secret_jwt` ** Added https://github.com/spring-projects/spring-security/pull/9535[Jwt Bearer Authorization Grant] support ** Added https://github.com/spring-projects/spring-security/pull/8765[R2DBC implementation] of `ReactiveOAuth2AuthorizedClientService` * Configuration ** Introduced https://github.com/spring-projects/spring-security/issues/9205[DispatcherType request matcher] * Kotlin DSL ** Added https://github.com/spring-projects/spring-security/issues/9319[rememberMe support]
[[new]] == What's New in Spring Security 5.5 Spring Security 5.5 provides a number of new features. Below are the highlights of the release. [[whats-new-servlet]] === Servlet * OAuth 2.0 Client ** Added support for https://github.com/spring-projects/spring-security/pull/9520[Jwt Client Authentication] `private_key_jwt` and `client_secret_jwt` ** Added https://github.com/spring-projects/spring-security/pull/9535[Jwt Bearer Authorization Grant] support ** Added https://github.com/spring-projects/spring-security/pull/8765[R2DBC implementation] of `ReactiveOAuth2AuthorizedClientService` * Configuration ** Introduced https://github.com/spring-projects/spring-security/issues/9205[DispatcherType request matcher] * Kotlin DSL ** Added https://github.com/spring-projects/spring-security/issues/9319[rememberMe support] [[whats-new-webflux]] === WebFlux ** Added https://github.com/spring-projects/spring-security/issues/8143[Kotlin coroutine support] for `EnableReactiveMethodSecurity`
Add WebFlux section to What's New
Add WebFlux section to What's New Closes gh-9590
AsciiDoc
apache-2.0
djechelon/spring-security,spring-projects/spring-security,jgrandja/spring-security,rwinch/spring-security,rwinch/spring-security,djechelon/spring-security,spring-projects/spring-security,rwinch/spring-security,djechelon/spring-security,jgrandja/spring-security,jgrandja/spring-security,rwinch/spring-security,jgrandja/spring-security,djechelon/spring-security,rwinch/spring-security,djechelon/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,jgrandja/spring-security,spring-projects/spring-security,rwinch/spring-security,spring-projects/spring-security,jgrandja/spring-security
48b554c95aaf4c4554981152227880603a5e2933
README.adoc
README.adoc
= rhq-metrics Project to implement a MaaS and CaaS * MaaS: Metrics as a Service * CaaS: Charts as a Service
= rhq-metrics Project to implement a MaaS and CaaS * MaaS: Metrics as a Service * ChaaS: Charts as a Service
Change Charting as a Service from CaaS to ChaaS. Pronounced Chaz. More unique chan CaaS and sounds better.
Change Charting as a Service from CaaS to ChaaS. Pronounced Chaz. More unique chan CaaS and sounds better.
AsciiDoc
apache-2.0
jshaughn/hawkular-metrics,jshaughn/hawkular-metrics,spadgett/hawkular-metrics,vrockai/hawkular-metrics,Jiri-Kremser/hawkular-metrics,hawkular/hawkular-metrics,140293816/Hawkular-fork,tsegismont/hawkular-metrics,ppalaga/hawkular-metrics,mwringe/hawkular-metrics,pilhuhn/rhq-metrics,hawkular/hawkular-metrics,jshaughn/hawkular-metrics,burmanm/hawkular-metrics,tsegismont/hawkular-metrics,jsanda/hawkular-metrics,mwringe/hawkular-metrics,burmanm/hawkular-metrics,spadgett/hawkular-metrics,jshaughn/hawkular-metrics,jsanda/hawkular-metrics,mwringe/hawkular-metrics,spadgett/hawkular-metrics,pilhuhn/rhq-metrics,140293816/Hawkular-fork,ppalaga/hawkular-metrics,ppalaga/hawkular-metrics,tsegismont/hawkular-metrics,jsanda/hawkular-metrics,tsegismont/hawkular-metrics,vrockai/hawkular-metrics,Jiri-Kremser/hawkular-metrics,vrockai/hawkular-metrics,Jiri-Kremser/hawkular-metrics,jotak/hawkular-metrics,pilhuhn/rhq-metrics,vrockai/hawkular-metrics,jotak/hawkular-metrics,burmanm/hawkular-metrics,vrockai/hawkular-metrics,140293816/Hawkular-fork,Jiri-Kremser/hawkular-metrics,pilhuhn/rhq-metrics,jsanda/hawkular-metrics,spadgett/hawkular-metrics,jsanda/hawkular-metrics,ppalaga/hawkular-metrics,jotak/hawkular-metrics,jotak/hawkular-metrics,hawkular/hawkular-metrics,hawkular/hawkular-metrics,burmanm/hawkular-metrics,140293816/Hawkular-fork,spadgett/hawkular-metrics,Jiri-Kremser/hawkular-metrics,mwringe/hawkular-metrics
d2a407f93fe7f6db2ea387c6322aa34ca2d8fefd
docs/src/docs/asciidoc/json/installation.adoc
docs/src/docs/asciidoc/json/installation.adoc
To activate JSON views, add the following dependency to the `dependencies` block of your `build.gradle` where `VERSION` is the version of the plugin you plan to use: [source,groovy] compile "org.grails.plugins:views-json:VERSION" To enable Gradle compilation of JSON views for production environment add the following to the `buildscript` `dependencies` block: [source,groovy] buildscript { ... dependencies { ... classpath "org.grails.plugins:views-gradle:VERSION" } } Then apply the `org.grails.plugins.views-json` Gradle plugin after any Grails core gradle plugins: [source,groovy] ... apply plugin: "org.grails.grails-web" apply plugin: "org.grails.plugins.views-json" This will add a `compileGsonViews` task to Gradle that is executed when producing a JAR or WAR file.
To activate JSON views, add the following dependency to the `dependencies` block of your `build.gradle`: [source,groovy,subs="attributes"] compile "org.grails.plugins:views-json:{version}" To enable Gradle compilation of JSON views for production environment add the following to the `buildscript` `dependencies` block: [source,groovy,subs="attributes"] buildscript { ... dependencies { ... classpath "org.grails.plugins:views-gradle:{version}" } } Then apply the `org.grails.plugins.views-json` Gradle plugin after any Grails core gradle plugins: [source,groovy] ... apply plugin: "org.grails.grails-web" apply plugin: "org.grails.plugins.views-json" This will add a `compileGsonViews` task to Gradle that is executed when producing a JAR or WAR file.
Use project version number in docs
Use project version number in docs
AsciiDoc
apache-2.0
grails/grails-views
f011a404f6b261af2579fcb8bb7c434924265aef
subprojects/docs/src/docs/userguide/licenses.adoc
subprojects/docs/src/docs/userguide/licenses.adoc
// Copyright 2017 the original author or authors. // // 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 // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. [[licenses]] = License Information [[sec:gradle_documentation]] == Gradle Documentation _Copyright Β© 2007-2018 Gradle, Inc._ Gradle build tool source code is open-source and licensed under the link:https://github.com/gradle/gradle/blob/master/LICENSE[Apache License 2.0]. Gradle user manual and DSL references are licensed under link:http://creativecommons.org/licenses/by-nc-sa/4.0/[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License]. [[licenses:build_scan_plugin]] == Gradle Build Scan Plugin Use of the link:https://scans.gradle.com/plugin/[build scan plugin] is subject to link:https://gradle.com/legal/terms-of-service/[Gradle's Terms of Service].
// Copyright 2017 the original author or authors. // // 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 // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. [[licenses]] = License Information [[sec:gradle_documentation]] == Gradle Documentation _Copyright Β© 2007-2019 Gradle, Inc._ Gradle build tool source code is open-source and licensed under the link:https://github.com/gradle/gradle/blob/master/LICENSE[Apache License 2.0]. Gradle user manual and DSL references are licensed under link:http://creativecommons.org/licenses/by-nc-sa/4.0/[Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License]. [[licenses:build_scan_plugin]] == Gradle Build Scan Plugin Use of the link:https://scans.gradle.com/plugin/[build scan plugin] is subject to link:https://gradle.com/legal/terms-of-service/[Gradle's Terms of Service].
Adjust year in copyright notice
Adjust year in copyright notice
AsciiDoc
apache-2.0
gradle/gradle,blindpirate/gradle,blindpirate/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,gradle/gradle,gradle/gradle,gradle/gradle,blindpirate/gradle,gradle/gradle,blindpirate/gradle
0e121b6123cfbea21fdab0cbd903ef1b1b9228a7
docs/index.adoc
docs/index.adoc
= tick Malcolm Sparks <[email protected]>; Henry Widd; Johanna Antonelli <[email protected]> 0.4.10-alpha, 2019-03-27 :toc: left :toclevels: 4 :docinfo: shared :sectnums: true :sectnumlevels: 2 :xrefstyle: short :nofooter: :leveloffset: +1 include::intro.adoc[] include::setup.adoc[] include::api.adoc[] include::dates.adoc[] include::durations.adoc[] include::clocks.adoc[] include::intervals.adoc[] include::calendars.adoc[] include::schedules.adoc[] include::formatting.adoc[] include::cookbook/index.adoc[] include::bibliography.adoc[]
= tick Malcolm Sparks <[email protected]>; Henry Widd; Johanna Antonelli <[email protected]> 0.4.25-alpha, 2020-10-01 :toc: left :toclevels: 4 :docinfo: shared :sectnums: true :sectnumlevels: 2 :xrefstyle: short :nofooter: :leveloffset: +1 include::intro.adoc[] include::setup.adoc[] include::api.adoc[] include::dates.adoc[] include::durations.adoc[] include::clocks.adoc[] include::intervals.adoc[] include::calendars.adoc[] include::schedules.adoc[] include::formatting.adoc[] include::cookbook/index.adoc[] include::bibliography.adoc[]
Increment docs version to align with current code tag
Increment docs version to align with current code tag
AsciiDoc
mit
juxt/tick,juxt/tick
ca07dd2e5856933a2f5711f37de8193e087e40c3
README.adoc
README.adoc
= SpringBoot WebApp Demo https://projects.spring.io/spring-boot[Spring Boot] looks like a nice way to get started. This is a trivial webapp created using SpringBoot. == HowTo mvn spring-boot:run Or, in Eclipse with Spring plugin (or "Spring Tool Suite"), right-click Application.java, then RunAs->Spring Boot Application then connect to http://localhost:8000/ Note: that is port 8000, _not_ the usual 8080 to avoid conflicts. Change this in application.properties if you don't like it. Fill in the form and click Submit. == War Deployment It seems that you can't have both the instant-deployment convenience of Spring Boot AND the security of a full WAR deployment in the same POM file. You will need to make several changes to deploy as a WAR file. See the section entitled "Traditional Deployment"--"Create a deployable war file" in the spring-boot reference manual (Section 73.1 in the current snapshot as of this writing).
= SpringBoot WebApp Demo https://projects.spring.io/spring-boot[Spring Boot] looks like a nice way to get started. This is a trivial webapp created using SpringBoot. == HowTo mvn spring-boot:run Or, in Eclipse with Spring plugin (or "Spring Tool Suite"), right-click Application.java, then RunAs->Spring Boot Application then connect to http://localhost:8000/ Note: that is port 8000, _not_ the usual 8080 to avoid conflicts. Change this in application.properties if you don't like it. Fill in the form and click Submit. == War Deployment It seems that you can't have both the instant-deployment convenience of Spring Boot AND the security of a full WAR deployment in the same POM file. You will need to make several changes to deploy as a WAR file. See the section entitled "Traditional Deployment"--"Create a deployable war file" in the spring-boot reference manual (Section 73.1 in the current snapshot as of this writing).
Revert indent of link, formatting failure
Revert indent of link, formatting failure
AsciiDoc
bsd-2-clause
IanDarwin/springbootdemo,IanDarwin/springbootdemo
ccc0dd800fc561a8edbfa33bc748527fcb694a7d
docs/reference/migration/index.asciidoc
docs/reference/migration/index.asciidoc
[[breaking-changes]] = Breaking changes [partintro] -- This section discusses the changes that you need to be aware of when migrating your application from one version of Elasticsearch to another. As a general rule: * Migration between minor versions -- e.g. `5.x` to `5.y` -- can be performed by <<rolling-upgrades,upgrading one node at a time>>. * Migration between consecutive major versions -- e.g. `2.x` to `5.x` -- requires a <<restart-upgrade,full cluster restart>>. * Migration between non-consecutive major versions -- e.g. `1.x` to `5.x` -- is not supported. See <<setup-upgrade>> for more info. -- include::migrate_5_0.asciidoc[]
[[breaking-changes]] = Breaking changes [partintro] -- This section discusses the changes that you need to be aware of when migrating your application from one version of Elasticsearch to another. As a general rule: * Migration between minor versions -- e.g. `5.x` to `5.y` -- can be performed by <<rolling-upgrades,upgrading one node at a time>>. * Migration between consecutive major versions -- e.g. `2.x` to `5.x` -- requires a <<restart-upgrade,full cluster restart>>. * Migration between non-consecutive major versions -- e.g. `1.x` to `5.x` -- is not supported. See <<setup-upgrade>> for more info. -- include::migrate_5_1.asciidoc[] include::migrate_5_0.asciidoc[]
Include 5.1 migration docs in migration docs
Include 5.1 migration docs in migration docs The migration docs need to include a copy of the migration docs for all versions.
AsciiDoc
apache-2.0
strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc
0891b3c927aaf8e690c9be59204d4daa6cd71025
docs/java-api/query-dsl/script-query.asciidoc
docs/java-api/query-dsl/script-query.asciidoc
[[java-query-dsl-script-query]] ==== Script Query See {ref}/query-dsl-script-query.html[Script Query] [source,java] -------------------------------------------------- QueryBuilder qb = scriptQuery( new Script("doc['num1'].value > 1") <1> ); -------------------------------------------------- <1> inlined script If you have stored on each data node a script named `myscript.painless` with: [source,painless] -------------------------------------------------- doc['num1'].value > params.param1 -------------------------------------------------- You can use it then with: [source,java] -------------------------------------------------- QueryBuilder qb = scriptQuery( new Script( "myscript", <1> ScriptType.FILE, <2> "painless", <3> Collections.singletonMap("param1", 5)) <4> ); -------------------------------------------------- <1> Script name <2> Script type: either `ScriptType.FILE`, `ScriptType.INLINE` or `ScriptType.INDEXED` <3> Scripting engine <4> Parameters as a `Map` of `<String, Object>`
[[java-query-dsl-script-query]] ==== Script Query See {ref}/query-dsl-script-query.html[Script Query] [source,java] -------------------------------------------------- QueryBuilder qb = scriptQuery( new Script("doc['num1'].value > 1") <1> ); -------------------------------------------------- <1> inlined script If you have stored on each data node a script named `myscript.painless` with: [source,painless] -------------------------------------------------- doc['num1'].value > params.param1 -------------------------------------------------- You can use it then with: [source,java] -------------------------------------------------- QueryBuilder qb = scriptQuery( new Script( ScriptType.FILE, <1> "painless", <2> "myscript", <3> Collections.singletonMap("param1", 5)) <4> ); -------------------------------------------------- <1> Script type: either `ScriptType.FILE`, `ScriptType.INLINE` or `ScriptType.INDEXED` <2> Scripting engine <3> Script name <4> Parameters as a `Map` of `<String, Object>`
Update script query doc for 5.1
Update script query doc for 5.1 From 5.1, we changed the order of Script class ctor. Related to https://github.com/elastic/elasticsearch/pull/21321#issuecomment-266432519 Backport of #22161 in 5.x branch
AsciiDoc
apache-2.0
strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc
cba2424eccb8dd02f0a7ebe9d920a49fd7e75d20
HACKING.asciidoc
HACKING.asciidoc
HACKING ======= HOMEPAGE -------- The master source code repository, bug tracking, etc for _pvpn_ is https://www.github.com/halhen/pvpn. Please report issues here, or to [email protected]. CONTRIBUTING ------------ * To contribute, send a patch as a github pull request or using +git format-patch+ to [email protected]. * Keep your patches atomic and complete. Remember documentation. * Add yourself to _AUTHORS_. * Unless you have a good reason to, rebase your changes to the latest master before submitting. * Spend an extra minute to write a proper commit message ** Describe the effect of the patch, rather than the contents. ** Use imperative form (e.g. +Change foo+ rather than +Changed foo+) ** Reference the issue (+#NNN+ or, if fixed, +fixes #NNN+) if applicable. ** Max 50 characters in the title. ** Max 72 characters wide lines. Don't be discouraged or annoyed if I ask you to change your patch before I accept it. The reason is probably that I have not been specific enough about how I would like patches to be. CHECKLISTS ---------- Create a new version ~~~~~~~~~~~~~~~~~~~~ * Update +VERSION+ in +Makefile+ * Describe changes +NEWS.asciidoc+ * Commit with version bump commit message * +git tag <VERSION>+
HACKING ======= HOMEPAGE -------- The master source code repository, bug tracking, etc for _pvpn_ is https://www.github.com/halhen/pvpn. Please report issues here, or to [email protected]. CONTRIBUTING ------------ * To contribute, send a patch as a github pull request or using +git format-patch+ to [email protected]. * Keep your patches atomic and complete. Remember documentation. * Add yourself to _AUTHORS_. * Unless you have a good reason to, rebase your changes to the latest master before submitting. * Spend an extra minute to write a proper commit message ** Describe the effect of the patch, rather than the contents. ** Use imperative form (e.g. +Change foo+ rather than +Changed foo+) ** Reference the issue (+#NNN+ or, if fixed, +fixes #NNN+) if applicable. ** Max 50 characters in the title. ** Max 72 characters wide lines. Don't be discouraged or annoyed if I ask you to change your patch before I accept it. The reason is probably that I have not been specific enough about how I would like patches to be. CHECKLISTS ---------- Create a new version ~~~~~~~~~~~~~~~~~~~~ * Update +VERSION+ in +Makefile+ * Describe changes +NEWS.asciidoc+ * Commit with version bump commit message * +git tag <VERSION>+ * +git push+ * +git push --tags+ * make and upload new PKGBUILD to AUR
Document more steps to do when bumbing version
Document more steps to do when bumbing version
AsciiDoc
bsd-3-clause
halhen/pvpn,halhen/pvpn
4e7f0bf9b169a8cee2ddf8a87f38d7fe4c111529
docs/Development-i18n.adoc
docs/Development-i18n.adoc
== Internationalization (i18n)
= Internationalization (i18n) == Intro Translation messages for Beavy core, as well as Beavy apps and modules, use the [ICU syntax](http://userguide.icu-project.org/formatparse/messages). The translation messages themselves are managed with the [transifex](http://docs.transifex.com/introduction/) localization platform, using English as the default language. Please see BeavyHQ's transifex dashboard here: [www.transifex.com/beavy/beavy/](https://www.transifex.com/beavy/beavy/) If you would like to help us translate Beavy, please let us know or click the "Help Translate Beavy" button on the link above. == Python Translations Backend translations in python are accomplished using the following functions (supported by [Flask-ICU](https://github.com/beavyHQ/flask-icu)): * `format()` * `format_date()` * `format_time()` * `format_datetime()` * `format_number()` * `format_decimal()` * `format_currency()` * `format_scientific()` * `format_percent()` == How to use it in Javascript == Working with translations files == Extracting & pushing to transifex To extract messages == Updating from transifex == Shipping your own translations (for your app)
Add draft of i18n docs
Add draft of i18n docs
AsciiDoc
mpl-2.0
beavyHQ/beavy,beavyHQ/beavy,beavyHQ/beavy,beavyHQ/beavy
b64ce82800eb50fcff700a59c705fa701b6353df
docs/guide/developer/index.adoc
docs/guide/developer/index.adoc
## Developer Info [discrete] ### Source https://github.com/wildfly-extras/wildfly-camel [discrete] ### Issues https://github.com/wildfly-extras/wildfly-camel/issues [discrete] ### Jenkins https://ci.fabric8.io/job/wildfly-camel [discrete] ### Downloads https://github.com/wildfly-extras/wildfly-camel/releases [discrete] ### Forums, Lists, IRC #wildfly-camel channel on irc.freenode.net
## Developer Info [discrete] ### Source https://github.com/wildfly-extras/wildfly-camel [discrete] ### Issues https://github.com/wildfly-extras/wildfly-camel/issues [discrete] ### CI Build https://github.com/wildfly-extras/wildfly-camel/actions [discrete] ### Downloads https://github.com/wildfly-extras/wildfly-camel/releases [discrete] ### Forums, Lists, IRC #wildfly-camel channel on irc.freenode.net
Update link to CI build
Update link to CI build
AsciiDoc
apache-2.0
wildfly-extras/wildfly-camel,wildfly-extras/wildfly-camel,wildfly-extras/wildfly-camel,wildfly-extras/wildfly-camel
704a84d00cf8390f7ad603e988614a8426229953
mock-mission.adoc
mock-mission.adoc
= How to Run a Mock Mission 1. Start MavProxy at the location of the first sample waypoint. $ cd <path-to-ardupilot>/APMrover2 $ sim_vehicle.py -l 37.659984,-121.8874624,0,45 2. Start the simulation. Zoom and center the waypoints, if you like. Mouse wheel or 2-finger scroll zooms, control-shift-drag moves the map around. $ roslaunch robo_magellan mock_mission.launch 3. In MavProxy, load the waypoint sample. rosrun mavros mavwp load data/sample.qgc-wpl.txt 4. Start the mission by arming the throttle and going into AUTO mode. $ rosservice call /mavros/cmd/arming "value: true" success: True result: 0 $ rosservice call /mavros/set_mode "{custom_mode: 'AUTO'}" mode_sent: True In rviz, you should see the rover follow the waypoints. When a cone is visible, the heading to the cone is shown with a red arrow. You can move the robot back to the starting point (approximately) using the command: $ rosservice call /mavros/set_mode "{custom_mode: 'RTL'}" Then you can restart the mock mission by setting the mode to AUTO again, in step 4.
= How to Run a Mock Mission 1. Start MavProxy at the location of the first sample waypoint. $ cd <path-to-ardupilot>/APMrover2 $ sim_vehicle.py -l 37.659984,-121.8874624,0,45 2. Start the simulation. Zoom and center the waypoints, if you like. Mouse wheel or 2-finger scroll zooms, control-shift-drag moves the map around. $ roslaunch robo_magellan mock_mission.launch 3. In MavProxy, load the waypoint sample. You should then see the robot and the waypoints in rviz. If you don't, try it again after a few seconds. (MavProxy can still be waiting for SITL to start up.) rosrun mavros mavwp load data/sample.qgc-wpl.txt 4. Start the mission by arming the throttle and going into AUTO mode. $ rosservice call /mavros/cmd/arming "value: true" success: True result: 0 $ rosservice call /mavros/set_mode "{custom_mode: 'AUTO'}" mode_sent: True In rviz, you should see the rover follow the waypoints. When a cone is visible, the heading to the cone is shown with a red arrow. You can move the robot back to the starting point (approximately) using the command: $ rosservice call /mavros/set_mode "{custom_mode: 'RTL'}" Then you can restart the mock mission by setting the mode to AUTO again, in step 4.
Add information about failure to load waypoints
Add information about failure to load waypoints
AsciiDoc
apache-2.0
ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan
57e55bfd2c7fb7ca970a664176341673c81595e7
docs/reference/analysis/tokenfilters/truncate-tokenfilter.asciidoc
docs/reference/analysis/tokenfilters/truncate-tokenfilter.asciidoc
[[analysis-truncate-tokenfilter]] === Truncate Token Filter The `truncate` token filter can be used to truncate tokens into a specific length. This can come in handy with keyword (single token) based mapped fields that are used for sorting in order to reduce memory usage. It accepts a `length` parameter which control the number of characters to truncate to, defaults to `10`.
[[analysis-truncate-tokenfilter]] === Truncate Token Filter The `truncate` token filter can be used to truncate tokens into a specific length. It accepts a `length` parameter which control the number of characters to truncate to, defaults to `10`.
Update truncate token filter to not mention the keyword tokenizer
Update truncate token filter to not mention the keyword tokenizer The advice predates the existence of the keyword field Closes #22650
AsciiDoc
apache-2.0
strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc,strapdata/elassandra5-rc
76bc85b61fa26e235aeb5190cc5ed84de4a07247
opennms-doc/guide-admin/src/asciidoc/text/operation/daemon-config-files/notifd.adoc
opennms-doc/guide-admin/src/asciidoc/text/operation/daemon-config-files/notifd.adoc
// Allow GitHub image rendering :imagesdir: ../../../images [[ga-opennms-operation-daemon-config-files-pollerd]] ==== Notifd [options="header, autowidth"] |=== | Internal Daemon Name | Reload Event | _Notifd_ | `uei.opennms.org/internal/reloadDaemonConfig -p 'daemonName Notifd'` |=== .Notifd configuration file overview [options="header, autowidth"] |=== | File | Restart Required | Reload Event | Description | `notifd-configuration.xml` | no | yes | Describes auto-acknowledge prefix, e.g. prefix "RESOLVED: " for nodeUp/nodeDown events. | `notificationCommands.xml` | no | no | Configuration for notification media, e.g. scripts, XMPP or HTTP Post, immediately applied. | `notifications.xml` | no | no | Event notification definitions and changes are immediately applied. | `destinationPaths.xml` | no | no | Contains paths for notification targets, e.g. JavaMail, XMPP or external scripts. | `users.xml` | no | no | Contain pager and address information for notification destination paths. | `groups.xml` | no | no | Groups can be used as target for notifications. | `javamail-configuration.properties` | no | no | Configuration to send notification mails via specific mail servers. |===
// Allow GitHub image rendering :imagesdir: ../../../images [[ga-opennms-operation-daemon-config-files-notifd]] ==== Notifd [options="header, autowidth"] |=== | Internal Daemon Name | Reload Event | _Notifd_ | `uei.opennms.org/internal/reloadDaemonConfig -p 'daemonName Notifd'` |=== .Notifd configuration file overview [options="header, autowidth"] |=== | File | Restart Required | Reload Event | Description | `notifd-configuration.xml` | no | yes | Describes auto-acknowledge prefix, e.g. prefix "RESOLVED: " for nodeUp/nodeDown events. | `notificationCommands.xml` | no | no | Configuration for notification media, e.g. scripts, XMPP or HTTP Post, immediately applied. | `notifications.xml` | no | no | Event notification definitions and changes are immediately applied. | `destinationPaths.xml` | no | no | Contains paths for notification targets, e.g. JavaMail, XMPP or external scripts. | `users.xml` | no | no | Contain pager and address information for notification destination paths. | `groups.xml` | no | no | Groups can be used as target for notifications. | `javamail-configuration.properties` | no | no | Configuration to send notification mails via specific mail servers. |===
Fix copy & paste error
Fix copy & paste error
AsciiDoc
agpl-3.0
aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms,aihua/opennms
1fde128c40b115a95d006e919e091f9c2f11c842
docs/reference/snapshot-restore/apis/snapshot-restore-apis.asciidoc
docs/reference/snapshot-restore/apis/snapshot-restore-apis.asciidoc
[[snapshot-restore-apis]] == Snapshot and restore APIs You can use the following APIs to set up snapshot repositories, manage snapshot backups, and restore snapshots to a running cluster. For more information, see <<snapshot-restore>>. [NOTE] ==== We are working on including more snapshot and restore APIs in this section. Some content may not be included yet. ==== [discrete] [[snapshot-restore-repo-apis]] === Snapshot repository management APIs * <<clean-up-snapshot-repo-api,Clean up snapshot repository>> * <<delete-snapshot-repo-api,Delete snapshot repository>> * <<put-snapshot-repo-api,Put snapshot repository>> include::clean-up-repo-api.asciidoc[] include::delete-repo-api.asciidoc[] include::get-repo-api.asciidoc[] include::put-repo-api.asciidoc[]
[[snapshot-restore-apis]] == Snapshot and restore APIs You can use the following APIs to set up snapshot repositories, manage snapshot backups, and restore snapshots to a running cluster. For more information, see <<snapshot-restore>>. [NOTE] ==== We are working on including more snapshot and restore APIs in this section. Some content may not be included yet. ==== [discrete] [[snapshot-restore-repo-apis]] === Snapshot repository management APIs * <<clean-up-snapshot-repo-api,Clean up snapshot repository>> * <<delete-snapshot-repo-api,Delete snapshot repository>> * <<get-snapshot-repo-api,Get snapshot repository>> * <<put-snapshot-repo-api,Put snapshot repository>> include::clean-up-repo-api.asciidoc[] include::delete-repo-api.asciidoc[] include::get-repo-api.asciidoc[] include::put-repo-api.asciidoc[]
Fix snapshot repo API jump list
[DOCS] Fix snapshot repo API jump list
AsciiDoc
apache-2.0
gingerwizard/elasticsearch,robin13/elasticsearch,GlenRSmith/elasticsearch,nknize/elasticsearch,gingerwizard/elasticsearch,robin13/elasticsearch,uschindler/elasticsearch,gingerwizard/elasticsearch,scorpionvicky/elasticsearch,gingerwizard/elasticsearch,uschindler/elasticsearch,uschindler/elasticsearch,GlenRSmith/elasticsearch,GlenRSmith/elasticsearch,scorpionvicky/elasticsearch,gingerwizard/elasticsearch,robin13/elasticsearch,gingerwizard/elasticsearch,nknize/elasticsearch,uschindler/elasticsearch,scorpionvicky/elasticsearch,uschindler/elasticsearch,robin13/elasticsearch,nknize/elasticsearch,nknize/elasticsearch,GlenRSmith/elasticsearch,robin13/elasticsearch,gingerwizard/elasticsearch,scorpionvicky/elasticsearch,scorpionvicky/elasticsearch,GlenRSmith/elasticsearch,nknize/elasticsearch
15cf55c4c6814c5ba9c0ad4d5faa433ec1035e9a
docs/reference/index.asciidoc
docs/reference/index.asciidoc
[[elasticsearch-reference]] = Reference :version: 1.5.2 :branch: 1.5 :jdk: 1.8.0_25 :defguide: https://www.elastic.co/guide/en/elasticsearch/guide/current include::getting-started.asciidoc[] include::setup.asciidoc[] include::migration/index.asciidoc[] include::api-conventions.asciidoc[] include::docs.asciidoc[] include::search.asciidoc[] include::indices.asciidoc[] include::cat.asciidoc[] include::cluster.asciidoc[] include::query-dsl.asciidoc[] include::mapping.asciidoc[] include::analysis.asciidoc[] include::modules.asciidoc[] include::index-modules.asciidoc[] include::testing.asciidoc[] include::glossary.asciidoc[]
[[elasticsearch-reference]] = Elasticsearch Reference :version: 1.5.2 :branch: 1.5 :jdk: 1.8.0_25 :defguide: https://www.elastic.co/guide/en/elasticsearch/guide/current include::getting-started.asciidoc[] include::setup.asciidoc[] include::migration/index.asciidoc[] include::api-conventions.asciidoc[] include::docs.asciidoc[] include::search.asciidoc[] include::indices.asciidoc[] include::cat.asciidoc[] include::cluster.asciidoc[] include::query-dsl.asciidoc[] include::mapping.asciidoc[] include::analysis.asciidoc[] include::modules.asciidoc[] include::index-modules.asciidoc[] include::testing.asciidoc[] include::glossary.asciidoc[]
Rename reference docs to Elasticsearch Reference
Docs: Rename reference docs to Elasticsearch Reference
AsciiDoc
apache-2.0
fubuki/elasticsearch,fubuki/elasticsearch,fubuki/elasticsearch,fubuki/elasticsearch,fubuki/elasticsearch,fubuki/elasticsearch
a27e28b7a4e0059c69d811e01583790abd60252a
docs/include.adoc
docs/include.adoc
:author: Peter Niederwieser, The Spock Framework Team :revnumber: X-replaced-by-gradle :sourcedir: ../spock-specs/src/test/groovy/org/spockframework/docs :sourcedir-spring: ../spock-spring/src/test/groovy/org/spockframework/spring/docs :resourcedir-spring: ../spock-spring/src/test/resources/org/spockframework/spring/docs :sourcedir-spring-boot: ../spock-spring/boot-test/src/test/groovy/org/spockframework/boot
:author: Peter Niederwieser, The Spock Framework Team :revnumber: X-replaced-by-gradle :sourcedir: ../spock-specs/src/test/groovy/org/spockframework/docs :sourcedir-spring: ../spock-spring/src/test/groovy/org/spockframework/spring/docs :resourcedir-spring: ../spock-spring/src/test/resources/org/spockframework/spring/docs :sourcedir-spring-boot: ../spock-spring/boot-test/src/test/groovy/org/spockframework/boot :sectlinks: true
Use `sectlinks` in docs to make linking to sections easier
Use `sectlinks` in docs to make linking to sections easier
AsciiDoc
apache-2.0
spockframework/spock,leonard84/spock
176e6b60003f14179dfecd8ff96fe5294676807a
docs/modules/ROOT/pages/index.adoc
docs/modules/ROOT/pages/index.adoc
= Overview Spring Security is a framework that provides authentication, authorization, and protection against common attacks. With first class support for both imperative and reactive applications, it is the de-facto standard for securing Spring-based applications.
= Spring Security Spring Security is a framework that provides xref:features/authentication/index.adoc[authentication], xref:features/authorization/index.adoc[authorization], and xref:features/exploits/index.adoc[protection against common attacks]. With first class support for securing both xref:servlet/index.adoc[imperative] and xref:reactive/index.adoc[reactive] applications, it is the de-facto standard for securing Spring-based applications. For a complete list of features, see the xref:features/index.adoc[Features] section of the reference. == Getting Started If you are ready to start securing an application see the Getting Started sections for xref:servlet/getting-started.adoc[servlet] and xref:reactive/getting-started.adoc[reactive]. These sections will walk you through creating your first Spring Security applications. If you want to understand how Spring Security works, you can refer to the xref:servlet/architecture.adoc[Architecture] section. // FIXME add link to reactive architecture If you have any questions, there is a wonderful xref:community.adoc[community] that would love to help you!
Add additional info to overview
Add additional info to overview
AsciiDoc
apache-2.0
spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,rwinch/spring-security,rwinch/spring-security,rwinch/spring-security,spring-projects/spring-security,spring-projects/spring-security,rwinch/spring-security,spring-projects/spring-security,rwinch/spring-security,rwinch/spring-security
c0cc9719d2d3deee9e114b96cf9797e4eb191d8a
learn/rhpds/index.adoc
learn/rhpds/index.adoc
= RHPDS instructions for OptaPlanner demos :awestruct-description: How to demo OptaPlanner with RHPDS :awestruct-layout: normalBase :awestruct-priority: 0.1 :showtitle: == Visit RHPDS https://rhpds.redhat.com/[Visit RHPDS] == Available demos on RHPDS * link:optaweb-vehicle-routing.adoc[OptaWeb Vehicle Routing] * link:optaweb-employee-rostering.adoc[OptaWeb Employee Rostering]
= RHPDS instructions for OptaPlanner demos :awestruct-description: How to demo OptaPlanner with RHPDS :awestruct-layout: normalBase :awestruct-priority: 0.1 :showtitle: == Visit RHPDS https://rhpds.redhat.com/[Visit RHPDS] == Available demos on RHPDS * link:optaweb-vehicle-routing.html[OptaWeb Vehicle Routing] * link:optaweb-employee-rostering.html[OptaWeb Employee Rostering]
Fix links to RHPDS demo guides
Fix links to RHPDS demo guides
AsciiDoc
apache-2.0
droolsjbpm/optaplanner-website,droolsjbpm/optaplanner-website,droolsjbpm/optaplanner-website
5fb10412dd97335bdd33424d81f758281e1fbd4a
modules/installation-osp-enabling-swift.adoc
modules/installation-osp-enabling-swift.adoc
//Module included in the following assemblies: // // * installing/installing_openstack/installing-openstack-installer.adoc // * installing/installing_openstack/installing-openstack-installer-custom.adoc // * installing/installing_openstack/installing-openstack-installer-kuryr.adoc [id="installation-osp-enabling-swift_{context}"] = Enabling Swift on OpenStack {product-title} on {rh-openstack-first} uses https://docs.openstack.org/security-guide/object-storage.html[OpenStack Object Storage (Swift)] to store and serve user configuration files. Swift is operated by a user account with the `swiftoperator` role and `temp-url` support. .Prerequisites * A {rh-openstack} administrator account on the target environment * On Ceph RGW, https://docs.ceph.com/docs/master/radosgw/config-ref/#swift-settings[the `account in url` option must be enabled] .Procedure To enable Swift on {rh-openstack}: . As an administrator in the {rh-openstack} CLI, add the `swiftoperator` role to the account that will access Swift: + ---- $ openstack role add --user <user> --project <project> swiftoperator ---- . As the account with the `swiftoperator` role, set a temporary URL property for the account: + ---- $ openstack object store account set --property Temp-URL-Key=superkey ---- Your {rh-openstack} deployment can now use Swift to store and serve files.
//Module included in the following assemblies: // // * installing/installing_openstack/installing-openstack-installer.adoc // * installing/installing_openstack/installing-openstack-installer-custom.adoc // * installing/installing_openstack/installing-openstack-installer-kuryr.adoc [id="installation-osp-enabling-swift_{context}"] = Enabling Swift on OpenStack {product-title} on {rh-openstack-first} uses https://docs.openstack.org/security-guide/object-storage.html[OpenStack Object Storage (Swift)] to store and serve user configuration files. Swift is operated by a user account with the `swiftoperator` role. .Prerequisites * A {rh-openstack} administrator account on the target environment * On Ceph RGW, https://docs.ceph.com/docs/master/radosgw/config-ref/#swift-settings[the `account in url` option must be enabled] .Procedure To enable Swift on {rh-openstack}: . As an administrator in the {rh-openstack} CLI, add the `swiftoperator` role to the account that will access Swift: + ---- $ openstack role add --user <user> --project <project> swiftoperator ---- Your {rh-openstack} deployment can now use Swift to store and serve files.
Remove Temp-URL step from Swift procedure - BZ 1805176
Remove Temp-URL step from Swift procedure - BZ 1805176
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
33eca477df6f1e887c559b0bd6b399460b6e62bf
modules/identity-provider-registering-github.adoc
modules/identity-provider-registering-github.adoc
// Module included in the following assemblies: // // * authentication/identity_providers/configuring-github-identity-provider.adoc [id="identity-provider-registering-github_{context}"] = Registering a GitHub application To use GitHub or GitHub Enterprise as an identity provider, you must register an application to use. .Procedure . Register an application on GitHub: ** For GitHub, click https://github.com/settings/profile[Settings] -> https://github.com/settings/developers[Developer settings] -> https://github.com/settings/applications/new[Register a new OAuth application]. ** For GitHub Enterprise, go to your GitHub Enterprise home page and then click *Settings -> Developer settings -> Register a new application*. . Enter an application name, for example `My OpenShift Install`. . Enter a homepage URL, such as `\https://oauth-openshift.apps.<cluster-name>.<cluster-domain>`. . Optional: Enter an application description. . Enter the authorization callback URL, where the end of the URL contains the identity provider `name`: + ---- https://oauth-openshift.apps.<cluster-name>.<cluster-domain>/oauth2callback/<idp-provider-name> ---- + For example: + ---- https://oauth-openshift.apps.example-openshift-cluster.com/oauth2callback/github/ ---- . Click *Register application*. GitHub provides a Client ID and a Client Secret. You need these values to complete the identity provider configuration.
// Module included in the following assemblies: // // * authentication/identity_providers/configuring-github-identity-provider.adoc [id="identity-provider-registering-github_{context}"] = Registering a GitHub application To use GitHub or GitHub Enterprise as an identity provider, you must register an application to use. .Procedure . Register an application on GitHub: ** For GitHub, click https://github.com/settings/profile[Settings] -> https://github.com/settings/apps[Developer settings] -> https://github.com/settings/developers[OAuth Apps] -> https://github.com/settings/applications/new[Register a new OAuth application]. ** For GitHub Enterprise, go to your GitHub Enterprise home page and then click *Settings -> Developer settings -> Register a new application*. . Enter an application name, for example `My OpenShift Install`. . Enter a homepage URL, such as `\https://oauth-openshift.apps.<cluster-name>.<cluster-domain>`. . Optional: Enter an application description. . Enter the authorization callback URL, where the end of the URL contains the identity provider `name`: + ---- https://oauth-openshift.apps.<cluster-name>.<cluster-domain>/oauth2callback/<idp-provider-name> ---- + For example: + ---- https://oauth-openshift.apps.example-openshift-cluster.com/oauth2callback/github/ ---- . Click *Register application*. GitHub provides a Client ID and a Client Secret. You need these values to complete the identity provider configuration.
Add oauth apps section to path, in case users are reading the text and not clicking the links. Choosing the Developer settings optiion on GitHub brings users to the GitHub Apps section (settings/apps) and not the OAuth Apps section (/settings/developers)
Add oauth apps section to path, in case users are reading the text and not clicking the links. Choosing the Developer settings optiion on GitHub brings users to the GitHub Apps section (settings/apps) and not the OAuth Apps section (/settings/developers)
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
d9a24961c55b80d64a10f12ea1ad97d04d9d9e16
docs/reference/analysis/tokenfilters/delimited-payload-tokenfilter.asciidoc
docs/reference/analysis/tokenfilters/delimited-payload-tokenfilter.asciidoc
[[analysis-delimited-payload-tokenfilter]] === Delimited Payload Token Filter Named `delimited_payload_filter`. Splits tokens into tokens and payload whenever a delimiter character is found. Example: "the|1 quick|2 fox|3" is split per default int to tokens `fox`, `quick` and `the` with payloads `1`, `2` and `3` respectively. Parameters: `delimiter`:: Character used for splitting the tokens. Default is `|`. `encoding`:: The type of the payload. `int` for integer, `float` for float and `identity` for characters. Default is `float`.
[[analysis-delimited-payload-tokenfilter]] === Delimited Payload Token Filter Named `delimited_payload_filter`. Splits tokens into tokens and payload whenever a delimiter character is found. Example: "the|1 quick|2 fox|3" is split by default into tokens `the`, `quick`, and `fox` with payloads `1`, `2`, and `3` respectively. Parameters: `delimiter`:: Character used for splitting the tokens. Default is `|`. `encoding`:: The type of the payload. `int` for integer, `float` for float and `identity` for characters. Default is `float`.
Fix minor issues in delimited payload token filter docs
Fix minor issues in delimited payload token filter docs This commit addresses a few minor issues in the delimited payload token filter docs: - the provided example reversed the payloads associated with the tokens "the" and "fox" - two additional typos in the same sentence - "per default" -> "by default" - "default int to" -> "default into" - adds two serial commas
AsciiDoc
apache-2.0
ThiagoGarciaAlves/elasticsearch,davidvgalbraith/elasticsearch,camilojd/elasticsearch,winstonewert/elasticsearch,mohit/elasticsearch,clintongormley/elasticsearch,jimczi/elasticsearch,nezirus/elasticsearch,polyfractal/elasticsearch,JervyShi/elasticsearch,spiegela/elasticsearch,markwalkom/elasticsearch,henakamaMSFT/elasticsearch,martinstuga/elasticsearch,gfyoung/elasticsearch,sreeramjayan/elasticsearch,kalimatas/elasticsearch,naveenhooda2000/elasticsearch,elasticdog/elasticsearch,markharwood/elasticsearch,ThiagoGarciaAlves/elasticsearch,HonzaKral/elasticsearch,ThiagoGarciaAlves/elasticsearch,umeshdangat/elasticsearch,HonzaKral/elasticsearch,JervyShi/elasticsearch,fernandozhu/elasticsearch,vroyer/elassandra,nazarewk/elasticsearch,nomoa/elasticsearch,nazarewk/elasticsearch,episerver/elasticsearch,ricardocerq/elasticsearch,cwurm/elasticsearch,LewayneNaidoo/elasticsearch,camilojd/elasticsearch,camilojd/elasticsearch,naveenhooda2000/elasticsearch,scottsom/elasticsearch,nknize/elasticsearch,kalimatas/elasticsearch,fred84/elasticsearch,rajanm/elasticsearch,vroyer/elassandra,dpursehouse/elasticsearch,a2lin/elasticsearch,jchampion/elasticsearch,rajanm/elasticsearch,geidies/elasticsearch,ricardocerq/elasticsearch,awislowski/elasticsearch,s1monw/elasticsearch,artnowo/elasticsearch,dongjoon-hyun/elasticsearch,uschindler/elasticsearch,xuzha/elasticsearch,jpountz/elasticsearch,jbertouch/elasticsearch,ThiagoGarciaAlves/elasticsearch,mapr/elasticsearch,GlenRSmith/elasticsearch,yanjunh/elasticsearch,girirajsharma/elasticsearch,sreeramjayan/elasticsearch,uschindler/elasticsearch,glefloch/elasticsearch,ivansun1010/elasticsearch,C-Bish/elasticsearch,naveenhooda2000/elasticsearch,StefanGor/elasticsearch,fred84/elasticsearch,coding0011/elasticsearch,LeoYao/elasticsearch,ZTE-PaaS/elasticsearch,strapdata/elassandra5-rc,maddin2016/elasticsearch,lks21c/elasticsearch,myelin/elasticsearch,mortonsykes/elasticsearch,awislowski/elasticsearch,mjason3/elasticsearch,gfyoung/elasticsearch,markwalkom/elasticsearch,JackyMai/elasticsearch,gmarz/elasticsearch,jprante/elasticsearch,jbertouch/elasticsearch,qwerty4030/elasticsearch,wangtuo/elasticsearch,nilabhsagar/elasticsearch,diendt/elasticsearch,strapdata/elassandra,gmarz/elasticsearch,mapr/elasticsearch,wangtuo/elasticsearch,fforbeck/elasticsearch,HonzaKral/elasticsearch,vroyer/elassandra,Helen-Zhao/elasticsearch,sreeramjayan/elasticsearch,zkidkid/elasticsearch,mmaracic/elasticsearch,s1monw/elasticsearch,winstonewert/elasticsearch,dongjoon-hyun/elasticsearch,polyfractal/elasticsearch,liweinan0423/elasticsearch,i-am-Nathan/elasticsearch,qwerty4030/elasticsearch,martinstuga/elasticsearch,avikurapati/elasticsearch,elasticdog/elasticsearch,i-am-Nathan/elasticsearch,pozhidaevak/elasticsearch,gmarz/elasticsearch,wuranbo/elasticsearch,yanjunh/elasticsearch,lks21c/elasticsearch,ESamir/elasticsearch,cwurm/elasticsearch,myelin/elasticsearch,vroyer/elasticassandra,kalimatas/elasticsearch,trangvh/elasticsearch,martinstuga/elasticsearch,liweinan0423/elasticsearch,gingerwizard/elasticsearch,obourgain/elasticsearch,mjason3/elasticsearch,avikurapati/elasticsearch,episerver/elasticsearch,ESamir/elasticsearch,sreeramjayan/elasticsearch,nilabhsagar/elasticsearch,Stacey-Gammon/elasticsearch,JervyShi/elasticsearch,nilabhsagar/elasticsearch,yanjunh/elasticsearch,JSCooke/elasticsearch,nezirus/elasticsearch,diendt/elasticsearch,IanvsPoplicola/elasticsearch,umeshdangat/elasticsearch,liweinan0423/elasticsearch,robin13/elasticsearch,coding0011/elasticsearch,fforbeck/elasticsearch,LeoYao/elasticsearch,nazarewk/elasticsearch,zkidkid/elasticsearch,geidies/elasticsearch,wuranbo/elasticsearch,markharwood/elasticsearch,Shepard1212/elasticsearch,mapr/elasticsearch,markwalkom/elasticsearch,brandonkearby/elasticsearch,mapr/elasticsearch,C-Bish/elasticsearch,nezirus/elasticsearch,bawse/elasticsearch,JervyShi/elasticsearch,xuzha/elasticsearch,ricardocerq/elasticsearch,lks21c/elasticsearch,diendt/elasticsearch,strapdata/elassandra5-rc,i-am-Nathan/elasticsearch,LewayneNaidoo/elasticsearch,myelin/elasticsearch,jchampion/elasticsearch,mjason3/elasticsearch,masaruh/elasticsearch,IanvsPoplicola/elasticsearch,GlenRSmith/elasticsearch,i-am-Nathan/elasticsearch,jbertouch/elasticsearch,jchampion/elasticsearch,mohit/elasticsearch,LewayneNaidoo/elasticsearch,shreejay/elasticsearch,martinstuga/elasticsearch,IanvsPoplicola/elasticsearch,ivansun1010/elasticsearch,jpountz/elasticsearch,yynil/elasticsearch,Stacey-Gammon/elasticsearch,avikurapati/elasticsearch,markharwood/elasticsearch,strapdata/elassandra5-rc,scottsom/elasticsearch,wangtuo/elasticsearch,coding0011/elasticsearch,nknize/elasticsearch,palecur/elasticsearch,winstonewert/elasticsearch,naveenhooda2000/elasticsearch,dpursehouse/elasticsearch,camilojd/elasticsearch,xuzha/elasticsearch,cwurm/elasticsearch,gingerwizard/elasticsearch,mohit/elasticsearch,nezirus/elasticsearch,ESamir/elasticsearch,bawse/elasticsearch,scottsom/elasticsearch,fernandozhu/elasticsearch,wuranbo/elasticsearch,maddin2016/elasticsearch,JSCooke/elasticsearch,wenpos/elasticsearch,Helen-Zhao/elasticsearch,wenpos/elasticsearch,sneivandt/elasticsearch,masaruh/elasticsearch,umeshdangat/elasticsearch,fforbeck/elasticsearch,MaineC/elasticsearch,JSCooke/elasticsearch,awislowski/elasticsearch,mikemccand/elasticsearch,clintongormley/elasticsearch,spiegela/elasticsearch,C-Bish/elasticsearch,GlenRSmith/elasticsearch,polyfractal/elasticsearch,henakamaMSFT/elasticsearch,tebriel/elasticsearch,strapdata/elassandra,IanvsPoplicola/elasticsearch,spiegela/elasticsearch,nomoa/elasticsearch,rajanm/elasticsearch,nomoa/elasticsearch,tebriel/elasticsearch,Helen-Zhao/elasticsearch,sneivandt/elasticsearch,nazarewk/elasticsearch,gfyoung/elasticsearch,camilojd/elasticsearch,winstonewert/elasticsearch,jpountz/elasticsearch,nknize/elasticsearch,JackyMai/elasticsearch,palecur/elasticsearch,artnowo/elasticsearch,dongjoon-hyun/elasticsearch,rlugojr/elasticsearch,nknize/elasticsearch,robin13/elasticsearch,clintongormley/elasticsearch,gingerwizard/elasticsearch,MaineC/elasticsearch,LeoYao/elasticsearch,JSCooke/elasticsearch,alexshadow007/elasticsearch,ZTE-PaaS/elasticsearch,mjason3/elasticsearch,bawse/elasticsearch,mmaracic/elasticsearch,MisterAndersen/elasticsearch,girirajsharma/elasticsearch,obourgain/elasticsearch,fforbeck/elasticsearch,davidvgalbraith/elasticsearch,ZTE-PaaS/elasticsearch,davidvgalbraith/elasticsearch,trangvh/elasticsearch,a2lin/elasticsearch,alexshadow007/elasticsearch,gmarz/elasticsearch,ESamir/elasticsearch,xuzha/elasticsearch,maddin2016/elasticsearch,jimczi/elasticsearch,masaruh/elasticsearch,gmarz/elasticsearch,dpursehouse/elasticsearch,zkidkid/elasticsearch,StefanGor/elasticsearch,awislowski/elasticsearch,ivansun1010/elasticsearch,mikemccand/elasticsearch,wangtuo/elasticsearch,sneivandt/elasticsearch,mmaracic/elasticsearch,sneivandt/elasticsearch,LeoYao/elasticsearch,palecur/elasticsearch,zkidkid/elasticsearch,brandonkearby/elasticsearch,davidvgalbraith/elasticsearch,tebriel/elasticsearch,tebriel/elasticsearch,nknize/elasticsearch,mohit/elasticsearch,geidies/elasticsearch,rajanm/elasticsearch,ESamir/elasticsearch,alexshadow007/elasticsearch,maddin2016/elasticsearch,strapdata/elassandra,mjason3/elasticsearch,trangvh/elasticsearch,jprante/elasticsearch,pozhidaevak/elasticsearch,markharwood/elasticsearch,C-Bish/elasticsearch,rajanm/elasticsearch,bawse/elasticsearch,davidvgalbraith/elasticsearch,StefanGor/elasticsearch,Stacey-Gammon/elasticsearch,mmaracic/elasticsearch,njlawton/elasticsearch,qwerty4030/elasticsearch,strapdata/elassandra5-rc,Stacey-Gammon/elasticsearch,HonzaKral/elasticsearch,maddin2016/elasticsearch,nazarewk/elasticsearch,vroyer/elasticassandra,njlawton/elasticsearch,fernandozhu/elasticsearch,jprante/elasticsearch,mikemccand/elasticsearch,nomoa/elasticsearch,palecur/elasticsearch,shreejay/elasticsearch,s1monw/elasticsearch,wuranbo/elasticsearch,njlawton/elasticsearch,naveenhooda2000/elasticsearch,gfyoung/elasticsearch,wangtuo/elasticsearch,gingerwizard/elasticsearch,LeoYao/elasticsearch,GlenRSmith/elasticsearch,GlenRSmith/elasticsearch,uschindler/elasticsearch,nilabhsagar/elasticsearch,strapdata/elassandra5-rc,elasticdog/elasticsearch,elasticdog/elasticsearch,polyfractal/elasticsearch,njlawton/elasticsearch,LeoYao/elasticsearch,xuzha/elasticsearch,JackyMai/elasticsearch,rlugojr/elasticsearch,JSCooke/elasticsearch,JackyMai/elasticsearch,yanjunh/elasticsearch,sneivandt/elasticsearch,sreeramjayan/elasticsearch,artnowo/elasticsearch,ZTE-PaaS/elasticsearch,bawse/elasticsearch,robin13/elasticsearch,brandonkearby/elasticsearch,uschindler/elasticsearch,dongjoon-hyun/elasticsearch,ESamir/elasticsearch,glefloch/elasticsearch,brandonkearby/elasticsearch,henakamaMSFT/elasticsearch,trangvh/elasticsearch,shreejay/elasticsearch,jimczi/elasticsearch,JervyShi/elasticsearch,Shepard1212/elasticsearch,dpursehouse/elasticsearch,pozhidaevak/elasticsearch,girirajsharma/elasticsearch,wenpos/elasticsearch,diendt/elasticsearch,ricardocerq/elasticsearch,girirajsharma/elasticsearch,mikemccand/elasticsearch,rlugojr/elasticsearch,coding0011/elasticsearch,yynil/elasticsearch,polyfractal/elasticsearch,girirajsharma/elasticsearch,mohit/elasticsearch,obourgain/elasticsearch,wuranbo/elasticsearch,girirajsharma/elasticsearch,tebriel/elasticsearch,ricardocerq/elasticsearch,jchampion/elasticsearch,shreejay/elasticsearch,tebriel/elasticsearch,camilojd/elasticsearch,yynil/elasticsearch,mapr/elasticsearch,Helen-Zhao/elasticsearch,pozhidaevak/elasticsearch,gingerwizard/elasticsearch,MisterAndersen/elasticsearch,scottsom/elasticsearch,henakamaMSFT/elasticsearch,ivansun1010/elasticsearch,StefanGor/elasticsearch,yynil/elasticsearch,a2lin/elasticsearch,qwerty4030/elasticsearch,jbertouch/elasticsearch,trangvh/elasticsearch,vroyer/elasticassandra,LewayneNaidoo/elasticsearch,strapdata/elassandra,Helen-Zhao/elasticsearch,markharwood/elasticsearch,geidies/elasticsearch,markwalkom/elasticsearch,umeshdangat/elasticsearch,jchampion/elasticsearch,awislowski/elasticsearch,myelin/elasticsearch,MisterAndersen/elasticsearch,artnowo/elasticsearch,mortonsykes/elasticsearch,obourgain/elasticsearch,episerver/elasticsearch,ivansun1010/elasticsearch,gingerwizard/elasticsearch,IanvsPoplicola/elasticsearch,fernandozhu/elasticsearch,dpursehouse/elasticsearch,uschindler/elasticsearch,jimczi/elasticsearch,wenpos/elasticsearch,gingerwizard/elasticsearch,njlawton/elasticsearch,spiegela/elasticsearch,scottsom/elasticsearch,geidies/elasticsearch,wenpos/elasticsearch,qwerty4030/elasticsearch,rlugojr/elasticsearch,lks21c/elasticsearch,fforbeck/elasticsearch,kalimatas/elasticsearch,Shepard1212/elasticsearch,ivansun1010/elasticsearch,clintongormley/elasticsearch,fred84/elasticsearch,liweinan0423/elasticsearch,glefloch/elasticsearch,episerver/elasticsearch,elasticdog/elasticsearch,ZTE-PaaS/elasticsearch,davidvgalbraith/elasticsearch,winstonewert/elasticsearch,markwalkom/elasticsearch,JackyMai/elasticsearch,i-am-Nathan/elasticsearch,LewayneNaidoo/elasticsearch,umeshdangat/elasticsearch,scorpionvicky/elasticsearch,mmaracic/elasticsearch,yynil/elasticsearch,diendt/elasticsearch,s1monw/elasticsearch,alexshadow007/elasticsearch,nezirus/elasticsearch,mortonsykes/elasticsearch,glefloch/elasticsearch,jpountz/elasticsearch,jbertouch/elasticsearch,cwurm/elasticsearch,jpountz/elasticsearch,kalimatas/elasticsearch,alexshadow007/elasticsearch,martinstuga/elasticsearch,episerver/elasticsearch,scorpionvicky/elasticsearch,MisterAndersen/elasticsearch,Shepard1212/elasticsearch,masaruh/elasticsearch,martinstuga/elasticsearch,avikurapati/elasticsearch,jbertouch/elasticsearch,robin13/elasticsearch,lks21c/elasticsearch,mortonsykes/elasticsearch,shreejay/elasticsearch,robin13/elasticsearch,yanjunh/elasticsearch,Shepard1212/elasticsearch,fred84/elasticsearch,artnowo/elasticsearch,C-Bish/elasticsearch,jimczi/elasticsearch,scorpionvicky/elasticsearch,xuzha/elasticsearch,myelin/elasticsearch,coding0011/elasticsearch,sreeramjayan/elasticsearch,a2lin/elasticsearch,cwurm/elasticsearch,mmaracic/elasticsearch,MaineC/elasticsearch,nomoa/elasticsearch,rlugojr/elasticsearch,jpountz/elasticsearch,zkidkid/elasticsearch,jprante/elasticsearch,markwalkom/elasticsearch,jprante/elasticsearch,fred84/elasticsearch,yynil/elasticsearch,diendt/elasticsearch,nilabhsagar/elasticsearch,StefanGor/elasticsearch,scorpionvicky/elasticsearch,gfyoung/elasticsearch,mikemccand/elasticsearch,masaruh/elasticsearch,rajanm/elasticsearch,MaineC/elasticsearch,obourgain/elasticsearch,MisterAndersen/elasticsearch,JervyShi/elasticsearch,scorpionvicky/elasticsearch,clintongormley/elasticsearch,markharwood/elasticsearch,clintongormley/elasticsearch,Stacey-Gammon/elasticsearch,palecur/elasticsearch,spiegela/elasticsearch,LeoYao/elasticsearch,a2lin/elasticsearch,fernandozhu/elasticsearch,henakamaMSFT/elasticsearch,s1monw/elasticsearch,mapr/elasticsearch,glefloch/elasticsearch,ThiagoGarciaAlves/elasticsearch,liweinan0423/elasticsearch,strapdata/elassandra,polyfractal/elasticsearch,MaineC/elasticsearch,ThiagoGarciaAlves/elasticsearch,jchampion/elasticsearch,geidies/elasticsearch,brandonkearby/elasticsearch,mortonsykes/elasticsearch,dongjoon-hyun/elasticsearch,avikurapati/elasticsearch,pozhidaevak/elasticsearch
63f5c50f30595dcbc8c82333e4cddd1033ea1439
labs/05-start-with-data/README.adoc
labs/05-start-with-data/README.adoc
= Running your database with data included *Having to insert the data everytime you start a container can become a hassle. In this exercise we will put the data inside the Postgres image, so that it will be available on startup.* The https://hub.docker.com/_/postgres/[Postgres] image provides a convenient way to execute scripts on startup of your database. All we have to do is add a .sh script to the docker-entrypoint-initdb.d-folder as per the documentation of the image. == Steps to prepare the database . Create the .sh script on your harddisk . Create a Dockerfile that .. Is build https://docs.docker.com/engine/reference/builder/#/from[from] postgres:9 .. https://docs.docker.com/engine/reference/builder/#/add[Adds] the .sh file to the docker-entrypoint-initdb.d folder in the container . Build the image, run it and link it with the testnetapp container .The script to add to the Dockerfile ---- #!/bin/bash set -e psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL CREATE DATABASE testnet; \c testnet CREATE TABLE kv (key varchar(100) PRIMARY KEY, value varchar(100)); INSERT INTO kv VALUES ('provider','postgres database'); EOSQL ----
= Running your database with data included *Having to insert the data everytime you start a container can become a hassle. In this exercise we will put the data inside the Postgres image, so that it will be available on startup.* The https://hub.docker.com/_/postgres/[Postgres] image provides a convenient way to execute scripts on startup of your database. All we have to do is add a .sh script to the docker-entrypoint-initdb.d-folder as per the documentation of the image. == Steps to prepare the database . Create an empty folder . Put the .sh script from below in that folder . Create a Dockerfile in the folder that .. Is build https://docs.docker.com/engine/reference/builder/#/from[from] postgres:9 .. https://docs.docker.com/engine/reference/builder/#/add[Adds] the .sh file to the docker-entrypoint-initdb.d folder in the container . Build the image, run it and link it with the testnetapp container .The script to add to the Dockerfile ---- #!/bin/bash set -e psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" <<-EOSQL CREATE DATABASE testnet; \c testnet CREATE TABLE kv (key varchar(100) PRIMARY KEY, value varchar(100)); INSERT INTO kv VALUES ('provider','postgres database'); EOSQL ----
Create Dockerfile in empty folder
Create Dockerfile in empty folder
AsciiDoc
apache-2.0
bolcom/docker-for-testers,bolcom/docker-for-testers,bolcom/docker-for-testers
28dd7dabfb94e37c3378fc0653b9096b3f9afb6e
docs/modules/ROOT/pages/whats-new.adoc
docs/modules/ROOT/pages/whats-new.adoc
[[new]] = What's New in Spring Security 5.7 Spring Security 5.7 provides a number of new features. Below are the highlights of the release. [[whats-new-servlet]] == Servlet * Web ** Introduced xref:servlet/authentication/persistence.adoc#requestattributesecuritycontextrepository[`RequestAttributeSecurityContextRepository`] ** Introduced xref:servlet/authentication/persistence.adoc#securitycontextholderfilter[`SecurityContextHolderFilter`] - Ability to require explicit saving of the `SecurityContext` * OAuth 2.0 Client ** Allow configuring https://github.com/spring-projects/spring-security/issues/6548[PKCE for confidential clients] ** Allow configuring a https://github.com/spring-projects/spring-security/issues/9812[JWT assertion resolver] in `JwtBearerOAuth2AuthorizedClientProvider` ** Allow customizing claims on https://github.com/spring-projects/spring-security/issues/9855[JWT client assertions] [[whats-new-webflux]] == WebFlux * OAuth 2.0 Client ** Allow configuring https://github.com/spring-projects/spring-security/issues/6548[PKCE for confidential clients] ** Allow configuring a https://github.com/spring-projects/spring-security/issues/9812[JWT assertion resolver] in `JwtBearerReactiveOAuth2AuthorizedClientProvider`
[[new]] = What's New in Spring Security 5.7 Spring Security 5.7 provides a number of new features. Below are the highlights of the release. [[whats-new-servlet]] == Servlet * Web ** Introduced xref:servlet/authentication/persistence.adoc#requestattributesecuritycontextrepository[`RequestAttributeSecurityContextRepository`] ** Introduced xref:servlet/authentication/persistence.adoc#securitycontextholderfilter[`SecurityContextHolderFilter`] - Ability to require explicit saving of the `SecurityContext` * OAuth 2.0 Client ** Allow configuring https://github.com/spring-projects/spring-security/issues/6548[PKCE for confidential clients] ** Allow configuring a https://github.com/spring-projects/spring-security/issues/9812[JWT assertion resolver] in `JwtBearerOAuth2AuthorizedClientProvider` ** Allow customizing claims on https://github.com/spring-projects/spring-security/issues/9855[JWT client assertions] [[whats-new-webflux]] == WebFlux * Web ** Allow customizing https://github.com/spring-projects/spring-security/issues/10903[charset] in `ServerHttpBasicAuthenticationConverter` * OAuth 2.0 Client ** Allow configuring https://github.com/spring-projects/spring-security/issues/6548[PKCE for confidential clients] ** Allow configuring a https://github.com/spring-projects/spring-security/issues/9812[JWT assertion resolver] in `JwtBearerReactiveOAuth2AuthorizedClientProvider`
Update What's New for 5.7
Update What's New for 5.7
AsciiDoc
apache-2.0
spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security
c0e784b16deb36340de38b375389348d2a17d711
docs/modules/ROOT/pages/whats-new.adoc
docs/modules/ROOT/pages/whats-new.adoc
[[new]] = What's New in Spring Security 6.0 Spring Security 6.0 provides a number of new features. Below are the highlights of the release. == Breaking Changes * https://github.com/spring-projects/spring-security/issues/10556[gh-10556] - Remove EOL OpenSaml 3 Support. Use the OpenSaml 4 Support instead. * https://github.com/spring-projects/spring-security/issues/8980[gh-8980] - Remove unsafe/deprecated `Encryptors.querableText(CharSequence,CharSequence)`. Instead use data storage to encrypt values. * https://github.com/spring-projects/spring-security/issues/11520[gh-11520] - Remember Me uses SHA256 by default * https://github.com/spring-projects/spring-security/issues/8819 - Move filters to web package Reorganize imports * https://github.com/spring-projects/spring-security/issues/7349 - Move filter and token to appropriate packages Reorganize imports
[[new]] = What's New in Spring Security 6.0 Spring Security 6.0 provides a number of new features. Below are the highlights of the release. == Breaking Changes * https://github.com/spring-projects/spring-security/issues/10556[gh-10556] - Remove EOL OpenSaml 3 Support. Use the OpenSaml 4 Support instead. * https://github.com/spring-projects/spring-security/issues/8980[gh-8980] - Remove unsafe/deprecated `Encryptors.querableText(CharSequence,CharSequence)`. Instead use data storage to encrypt values. * https://github.com/spring-projects/spring-security/issues/11520[gh-11520] - Remember Me uses SHA256 by default * https://github.com/spring-projects/spring-security/issues/8819 - Move filters to web package Reorganize imports * https://github.com/spring-projects/spring-security/issues/7349 - Move filter and token to appropriate packages Reorganize imports * https://github.com/spring-projects/spring-security/issues/11026[gh-11026] - Use `RequestAttributeSecurityContextRepository` instead of `NullSecurityContextRepository`
Update What's New for 6.0
Update What's New for 6.0
AsciiDoc
apache-2.0
spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security
91f655e6b47740d0919a92a3acac99f2323a9ae0
docs/quick-start-guide/src/rhel-7/listitem_repo_config_datastax.adoc
docs/quick-start-guide/src/rhel-7/listitem_repo_config_datastax.adoc
. *Enable DataStax repository* + ==== Create the `/etc/yum.repos.d/datastax.repo` file and edit it to contain the following: [source] ---- # DataStax (Apache Cassandra) [datastax] name = DataStax Repo for Apache Cassandra baseurl = http://rpm.datastax.com/community enabled = 1 gpgcheck = 1 gpgkey = https://rpm.datastax.com/rpm/repo_key ---- ====
. *Enable DataStax repository* + ==== Create the `/etc/yum.repos.d/datastax.repo` file and edit it to contain the following: [source] ---- # DataStax (Apache Cassandra) [datastax] name = DataStax Repo for Apache Cassandra baseurl = http://rpm.datastax.com/community enabled = 1 gpgcheck = 0 gpgkey = https://rpm.datastax.com/rpm/repo_key ---- ====
Disable GPG check for DataStax repo on RHEL 7.
Disable GPG check for DataStax repo on RHEL 7. Change-Id: I1c9c1bfddfff7847374563aedaa3130132100f13 Fixes: MND-19 Signed-off-by: Jan Hilberath <[email protected]>
AsciiDoc
apache-2.0
midonet/midonet-docs,midonet/midonet-docs,midonet/midonet-docs,yantarou/midonet-docs,midonet/midonet-docs,yantarou/midonet-docs,yantarou/midonet-docs
acb5491b796018d2f8a174d51402e739b16f855d
spring-boot-project/spring-boot-docs/src/docs/asciidoc/features.adoc
spring-boot-project/spring-boot-docs/src/docs/asciidoc/features.adoc
[[features]] = Core Features include::attributes.adoc[] This section dives into the details of Spring Boot. Here you can learn about the key features that you may want to use and customize. If you have not already done so, you might want to read the "<<getting-started#getting-started>>" and "<<using#using>>" sections, so that you have a good grounding of the basics. include::features/spring-application.adoc[] include::features/external-config.adoc[] include::features/profiles.adoc[] include::features/logging.adoc[] include::features/internationalization.adoc[] include::features/json.adoc[] include::features/task-execution-and-scheduling.adoc[] include::features/testing.adoc[] include::features/developing-auto-configuration.adoc[] include::features/kotlin.adoc[] include::features/whats-next.adoc[]
[[features]] = Core Features include::attributes.adoc[] This section dives into the details of Spring Boot. Here you can learn about the key features that you may want to use and customize. If you have not already done so, you might want to read the "<<getting-started#getting-started, Getting Started>>" and "<<using#using, Developing with Spring Boot>>" sections, so that you have a good grounding of the basics. include::features/spring-application.adoc[] include::features/external-config.adoc[] include::features/profiles.adoc[] include::features/logging.adoc[] include::features/internationalization.adoc[] include::features/json.adoc[] include::features/task-execution-and-scheduling.adoc[] include::features/testing.adoc[] include::features/developing-auto-configuration.adoc[] include::features/kotlin.adoc[] include::features/whats-next.adoc[]
Fix section links to not include .html suffix
Fix section links to not include .html suffix Closes gh-33206
AsciiDoc
apache-2.0
htynkn/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,htynkn/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,vpavic/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,spring-projects/spring-boot,htynkn/spring-boot,vpavic/spring-boot,vpavic/spring-boot
481fb1c395cc3e5b27b8c708b06dc8cd707e68c1
modules/nw-multus-delete-network.adoc
modules/nw-multus-delete-network.adoc
// Module included in the following assemblies: // // * networking/multiple_networks/remove-additional-network.adoc [id="nw-multus-delete-network_{context}"] = Removing an additional network attachment definition As a cluster administrator, you can remove an additional network from your {product-title} cluster. The additional network is not removed from any Pods it is attached to. .Prerequisites * Install the OpenShift Command-line Interface (CLI), commonly known as `oc`. * Log in as a user with `cluster-admin` privileges. .Procedure To remove an additional network from your cluster, complete the following steps: . Edit the Cluster Network Operator (CNO) in your default text editor by running the following command: + ---- $ oc edit networks.operator.openshift.io cluster ---- . Modify the CR by removing the configuration from the `additionalNetworks` collection for the network attachment definition you are removing. + [source,yaml] ---- apiVersion: operator.openshift.io/v1 kind: Network metadata: name: cluster spec: additionalNetworks: [] <1> ---- <1> If you are removing the configuration mapping for the only additional network attachment definition in the `additionalNetworks` collection, you must specify an empty collection. . Save your changes and quit the text editor to commit your changes. . Delete the NetworkAttachmentDefinition CR for the additional network by running the following command. Replace `<name>` with the name of the additional network to remove. + ---- $ oc delete network-attachment-definition <name> ---- . Optional: Confirm that the additional network CR was deleted by running the following command: + ---- $ oc get network-attachment-definition --all-namespaces ----
// Module included in the following assemblies: // // * networking/multiple_networks/remove-additional-network.adoc [id="nw-multus-delete-network_{context}"] = Removing an additional network attachment definition As a cluster administrator, you can remove an additional network from your {product-title} cluster. The additional network is not removed from any Pods it is attached to. .Prerequisites * Install the OpenShift Command-line Interface (CLI), commonly known as `oc`. * Log in as a user with `cluster-admin` privileges. .Procedure To remove an additional network from your cluster, complete the following steps: . Edit the Cluster Network Operator (CNO) in your default text editor by running the following command: + ---- $ oc edit networks.operator.openshift.io cluster ---- . Modify the CR by removing the configuration from the `additionalNetworks` collection for the network attachment definition you are removing. + [source,yaml] ---- apiVersion: operator.openshift.io/v1 kind: Network metadata: name: cluster spec: additionalNetworks: [] <1> ---- <1> If you are removing the configuration mapping for the only additional network attachment definition in the `additionalNetworks` collection, you must specify an empty collection. . Save your changes and quit the text editor to commit your changes. . Optional: Confirm that the additional network CR was deleted by running the following command: + ---- $ oc get network-attachment-definition --all-namespaces ----
Remove extra step for removing an additional network
Remove extra step for removing an additional network - https://issues.redhat.com/browse/OSDOCS-872 - https://bugzilla.redhat.com/show_bug.cgi?id=1755908
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
1151d4fc21b00c393ddc778bcb7947822d05771d
modules/olm-creating-index-image.adoc
modules/olm-creating-index-image.adoc
// Module included in the following assemblies: // // * operators/olm-managing-custom-catalogs.adoc [id="olm-creating-index-image_{context}"] = Creating an index image You can create an index image using the `opm` CLI. .Prerequisites * `opm` version 1.12.3+ * `podman` version 1.4.4+ * A bundle image built and pushed to a registry. .Procedure . Start a new index: + ---- $ opm index add \ --bundles quay.io/<namespace>/test-operator:v0.1.0 \//<1> --tag quay.io/<namespace>/test-catalog:latest <2> ---- <1> The bundle image to add to the index. <2> The image tag that you want the index image to have. . Push the index image to a registry: + ---- $ podman push quay.io/<namespace>/test-catalog:latest ----
// Module included in the following assemblies: // // * operators/olm-managing-custom-catalogs.adoc [id="olm-creating-index-image_{context}"] = Creating an index image You can create an index image using the `opm` CLI. .Prerequisites * `opm` version 1.12.3+ * `podman` version 1.4.4+ * A bundle image built and pushed to a registry. .Procedure . Start a new index: + ---- $ opm index add \ --bundles quay.io/<namespace>/test-operator:v0.1.0 \//<1> --tag quay.io/<namespace>/test-catalog:latest \//<2> [--binary-image <registry_base_image>] <3> ---- <1> Comma-separated list of bundle images to add to the index. <2> The image tag that you want the index image to have. <3> Optional: An alternative registry base image to use for serving the catalog. . Push the index image to a registry: + ---- $ podman push quay.io/<namespace>/test-catalog:latest ----
Add --binary-image to opm docs
Add --binary-image to opm docs
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
846e46773a8ab6e848923663db840f3e10147958
docs/index.asciidoc
docs/index.asciidoc
= Topbeat reference :libbeat: http://www.elastic.co/guide/en/beats/libbeat/1.0.0-rc1 :version: 1.0.0-rc1 include::./overview.asciidoc[] include::./gettingstarted.asciidoc[] include::./fields.asciidoc[] // include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./windows.asciidoc[] // include::./troubleshooting.asciidoc[]
= Topbeat reference :libbeat: http://www.elastic.co/guide/en/beats/libbeat/master :version: master include::./overview.asciidoc[] include::./gettingstarted.asciidoc[] include::./fields.asciidoc[] // include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./windows.asciidoc[] // include::./troubleshooting.asciidoc[]
Use master version in docs
Use master version in docs
AsciiDoc
mit
andrewkroh/topbeat,yapdns/yapdnsbeat,yapdns/yapdnsbeat,andrewkroh/topbeat
983ca6ea277a89ed8340c4650992821b56eda4ab
docs/modules/ROOT/pages/whats-new.adoc
docs/modules/ROOT/pages/whats-new.adoc
[[new]] = What's New in Spring Security 5.8 Spring Security 5.8 provides a number of new features. Below are the highlights of the release. * https://github.com/spring-projects/spring-security/pull/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs * https://github.com/spring-projects/spring-security/pull/11782[gh-11782] - @WithMockUser Supported as Merged Annotation * https://github.com/spring-projects/spring-security/issues/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection * https://github.com/spring-projects/spring-security/pull/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method * https://github.com/spring-projects/spring-security/pull/11232[gh-11232] - `ClientRegistrations#rest` defines 30s connect and read timeouts
[[new]] = What's New in Spring Security 5.8 Spring Security 5.8 provides a number of new features. Below are the highlights of the release. * https://github.com/spring-projects/spring-security/pull/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs * https://github.com/spring-projects/spring-security/pull/11782[gh-11782] - @WithMockUser Supported as Merged Annotation * https://github.com/spring-projects/spring-security/issues/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection * https://github.com/spring-projects/spring-security/pull/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method * https://github.com/spring-projects/spring-security/pull/11232[gh-11232] - `ClientRegistrations#rest` defines 30s connect and read timeouts * https://github.com/spring-projects/spring-security/pull/11464[gh-11464] - Remember Me supports SHA256 algorithm
Update What's New for 5.8
Update What's New for 5.8
AsciiDoc
apache-2.0
spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security
da0659a853ef7bf34bd5aa579696dd144bcd2665
doc/eventsystem.adoc
doc/eventsystem.adoc
= Event Data === Event Sourcing TODO, link core event sourcing docs. Apart from the recommended event store, Photon, Muon Java provides an in memory, simplified event store that only implements the core ingest and stream functionality of a muon compatible event store. You can read more about it link:InMemEventStore.html[here] This is most useful during building tests. === Event Based Testing If you adopt the Event system (which requires an event store such as _Photon_), then you will design your system domains as a set of _Events_, and your business processes as a set of causal relationships between them.
== Event Based Systems === Event Sourcing TODO, link core event sourcing docs. Apart from the recommended event store, Photon, Muon Java provides an in memory, simplified event store that only implements the core ingest and stream functionality of a muon compatible event store. You can read more about it link:InMemEventStore.html[here] This is most useful during building tests. === Event Based Testing If you adopt the Event system (which requires an event store such as _Photon_), then you will design your system domains as a set of _Events_, and your business processes as a set of causal relationships between them.
Update doc structure. ignore multicast on TC
Update doc structure. ignore multicast on TC
AsciiDoc
apache-2.0
microserviceux/muon-java,microserviceux/muon-java
4f92ff73d78d8865a891f38ced7cc4f7db75b031
docs/src/main/asciidoc/sagan-index.adoc
docs/src/main/asciidoc/sagan-index.adoc
include::_attributes.adoc[] Spring Cloud Zookeeper provides http://zookeeper.apache.org/[Apache Zookeeper] integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations you can quickly enable and configure the common patterns inside your application and build large distributed systems with Zookeeper. The patterns provided include Service Discovery and Distributed Configuration. ## Features * Service Discovery: instances can be registered with Zookeeper and clients can discover the instances using Spring-managed beans * Supports Ribbon, the client side load-balancer via Spring Cloud Netflix * Supports Zuul, a dynamic router and filter via Spring Cloud Netflix * Distributed Configuration: using Zookeeper as a data store ## Quick Start As long as Spring Cloud Zookeeper, http://curator.apache.org/[Apache Curator] and the Zookeeper Java Client are on the classpath any Spring Boot application with `@EnableDiscoveryClient` will try to contact a Zookeeper agent on `localhost:2181` (the default value of `zookeeper.connectString`). ```java @Configuration @EnableAutoConfiguration @EnableDiscoveryClient @RestController public class Application { @RequestMapping("/") public String home() { return "Hello World"; } public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` A local Zookeeper server must be running. See the http://zookeeper.apache.org/doc/trunk/zookeeperStarted.html[Zookeeper documentation] on how to run a Zookeeper server.
include::_attributes.adoc[] Spring Cloud Zookeeper provides http://zookeeper.apache.org/[Apache Zookeeper] integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms. With a few simple annotations you can quickly enable and configure the common patterns inside your application and build large distributed systems with Zookeeper. The patterns provided include Service Discovery and Distributed Configuration. ## Features * Service Discovery: instances can be registered with Zookeeper and clients can discover the instances using Spring-managed beans * Supports Ribbon, the client side load-balancer via Spring Cloud Netflix * Supports Zuul, a dynamic router and filter via Spring Cloud Netflix * Distributed Configuration: using Zookeeper as a data store ## Quick Start As long as Spring Cloud Zookeeper, http://curator.apache.org/[Apache Curator] and the Zookeeper Java Client are on the classpath any Spring Boot application with `@EnableDiscoveryClient` will try to contact a Zookeeper agent on `localhost:2181` (the default value of `zookeeper.connectString`). ```java @Configuration @EnableAutoConfiguration @EnableDiscoveryClient @RestController public class Application { @RequestMapping("/") public String home() { return "Hello World"; } public static void main(String[] args) { SpringApplication.run(Application.class, args); } } ``` A local Zookeeper server must be running. See the http://zookeeper.apache.org/[Zookeeper documentation] on how to run a Zookeeper server.
Fix Zookeeper link in documentation
Fix Zookeeper link in documentation Fixes gh-238 Fixes gh-246
AsciiDoc
apache-2.0
spring-cloud/spring-cloud-zookeeper,spring-cloud/spring-cloud-zookeeper
5a8910a844856109b279bd4364276a4fb7719285
pages/apim/3.x/user-guide/publisher/sme/using-kafka-controller.adoc
pages/apim/3.x/user-guide/publisher/sme/using-kafka-controller.adoc
= Using the Kafka controller :page-sidebar: apim_3_x_sidebar :page-permalink: apim/3.x/apim_publishersme_using_kafka.html :page-folder: apim/user-guide/publisher :page-layout: apim3x == Overview This section describes the basic usage of the Kafka controller - producing and consuming messages. === Producing messages Using the HTTP `POST` command to the example endpoint `https://apim-3-x-x-gateway.cloud.gravitee.io/kafka/messages`, you can send a message with the followig structure: [source,json] ---- https://apim-3-13-x-gateway.cloud.gravitee.io/kafka/messages { "messages": [ { "key": "key", "value": { "val1": "hello" } } ] } ---- === Consuming messages Using the HTTP `GET` command to the example endpoint `https://apim-3-x-x-gateway.cloud.gravitee.io/kafka/messages`, you can receive any available messages.
= Using the Kafka controller :page-sidebar: apim_3_x_sidebar :page-permalink: apim/3.x/apim_publisherguide_using_kafka.html :page-folder: apim/user-guide/publisher :page-layout: apim3x == Overview This section describes the basic usage of the Kafka controller - producing and consuming messages. === Producing messages Using the HTTP `POST` command to the example endpoint `https://api.company.com/kafka/messages`, you can send a message with the followig structure: [source,json] ---- https://api.company.com/kafka/messages { "messages": [ { "key": "key", "value": { "val1": "hello" } } ] } ---- === Consuming messages Using the HTTP `GET` command to the example endpoint `https://api.company.com/kafka/messages`, you can receive any available messages.
Fix link and snippet url
Fix link and snippet url
AsciiDoc
apache-2.0
gravitee-io/gravitee-docs,gravitee-io/gravitee-docs,gravitee-io/gravitee-docs
5ddebb6a2806f3db4fc371711ebcf67ddc36165d
src/docs/asciidoc/index.adoc
src/docs/asciidoc/index.adoc
= EB4J :doctype: article :docinfo: :toc: :toclevels: 2 include::about.adoc[] include::links.adoc[] include::reports.adoc[]
= EB4J :doctype: article :docinfo: :toc: :toclevels: 2 IMPORTANT: link:https://github.com/eb4j/eb4j[View on GitHub] | link:https://eb4j.github.io/[Top project page] include::about.adoc[] include::links.adoc[] include::reports.adoc[]
Add link to top project page.
Add link to top project page.
AsciiDoc
lgpl-2.1
eb4j/eb4j
fe83d2af14cce34b6310c0f64fbb630ffa957a8d
src/main/asciidoc/inc/_vertx-setup.adoc
src/main/asciidoc/inc/_vertx-setup.adoc
[[vertx:setup]] == *vertx:setup* This goal adds the Vert.x Maven Plugin to your `pom.xml` file. The plugin is configured with a default configuration. === Example [source,subs="attributes"] ---- mvn io.fabric8:vertx-maven-plugin:{version}:setup ---- The setup goal by default uses the plugin property _vertx-core-version_ from the plugin properties file vertx-maven-plugin.properties as the vert.x version of the project, if you wish to override the vertx version, then you can run the same command as above with `-DvertxVersion=<your-vertx-version>` e.g. [source,subs="attributes-with-version"] ---- mvn io.fabric8:vertx-maven-plugin:{version}:setup -DvertxVersion=3.4.0-SNAPSHOT ---- This will configure the vert.x and its dependencies to `3.4.0-SNAPSHOT` i.e. Maven project property `vertx.version` set to `3.4.0-SNAPSHOT`
[[vertx:setup]] == *vertx:setup* This goal adds the Vert.x Maven Plugin to your `pom.xml` file. The plugin is configured with a default configuration. === Example [source,subs="attributes"] ---- mvn io.fabric8:vertx-maven-plugin:{version}:setup ---- The setup goal by default uses the plugin property _vertx-core-version_ from the plugin properties file vertx-maven-plugin.properties as the vert.x version of the project, if you wish to override the vertx version, then you can run the same command as above with `-DvertxVersion=<your-vertx-version>` e.g. [source,subs="attributes-with-version"] ---- mvn io.fabric8:vertx-maven-plugin:{version}:setup -DvertxVersion=3.4.0-SNAPSHOT ---- This will configure the vert.x and its dependencies to `3.4.0-SNAPSHOT` i.e. Maven project property `vertx.version` set to `3.4.0-SNAPSHOT` You can also generate a project if you don't have a `pom.xml` file: [source,subs="attributes"] ---- mvn io.fabric8:vertx-maven-plugin:{version}:setup \ -DprojectGroupId=org.acme \ -DprojectArtifactId=acme-project \ -DprojectVersion=1.0-SNAPSHOT \ # default to 1.0-SNAPSHOT -Dverticle=org.acme.Foo \ -Ddependencies=web,jmx,mongo ---- The `verticle` parameter creates a new verticle class file. The `dependencies` parameters specifies the Vert.x dependencies you need.
Extend documentaiton about the setup goal
Extend documentaiton about the setup goal
AsciiDoc
apache-2.0
kameshsampath/vertx-maven-plugin
dd95849b620194f9d2dbb0a1157c4a59553e7e25
docs/reference/setup/sysconfig/file-descriptors.asciidoc
docs/reference/setup/sysconfig/file-descriptors.asciidoc
[[file-descriptors]] === File Descriptors [NOTE] This is only relevant for Linux and macOS and can be safely ignored if running Elasticsearch on Windows. On Windows that JVM uses an https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858(v=vs.85).aspx[API] limited only by available resources. Elasticsearch uses a lot of file descriptors or file handles. Running out of file descriptors can be disastrous and will most probably lead to data loss. Make sure to increase the limit on the number of open files descriptors for the user running Elasticsearch to 65,536 or higher. For the `.zip` and `.tar.gz` packages, set <<ulimit,`ulimit -n 65536`>> as root before starting Elasticsearch, or set `nofile` to `65536` in <<limits.conf,`/etc/security/limits.conf`>>. RPM and Debian packages already default the maximum number of file descriptors to 65536 and do not require further configuration. You can check the `max_file_descriptors` configured for each node using the <<cluster-nodes-stats>> API, with: [source,js] -------------------------------------------------- GET _nodes/stats/process?filter_path=**.max_file_descriptors -------------------------------------------------- // CONSOLE
[[file-descriptors]] === File Descriptors [NOTE] This is only relevant for Linux and macOS and can be safely ignored if running Elasticsearch on Windows. On Windows that JVM uses an https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858(v=vs.85).aspx[API] limited only by available resources. Elasticsearch uses a lot of file descriptors or file handles. Running out of file descriptors can be disastrous and will most probably lead to data loss. Make sure to increase the limit on the number of open files descriptors for the user running Elasticsearch to 65,536 or higher. For the `.zip` and `.tar.gz` packages, set <<ulimit,`ulimit -n 65536`>> as root before starting Elasticsearch, or set `nofile` to `65536` in <<limits.conf,`/etc/security/limits.conf`>>. On macOS, you must also pass the JVM option `-XX:-MaxFDLimit` to Elasticsearch in order for it to make use of the higher file descriptor limit. RPM and Debian packages already default the maximum number of file descriptors to 65536 and do not require further configuration. You can check the `max_file_descriptors` configured for each node using the <<cluster-nodes-stats>> API, with: [source,js] -------------------------------------------------- GET _nodes/stats/process?filter_path=**.max_file_descriptors -------------------------------------------------- // CONSOLE
Document JVM option MaxFDLimit for macOS ()
Document JVM option MaxFDLimit for macOS () This commit documents a JVM option that is needed on macOS when raising file descriptor limits there. Relates #26900
AsciiDoc
apache-2.0
rajanm/elasticsearch,fred84/elasticsearch,pozhidaevak/elasticsearch,gfyoung/elasticsearch,mjason3/elasticsearch,coding0011/elasticsearch,gingerwizard/elasticsearch,GlenRSmith/elasticsearch,scottsom/elasticsearch,wenpos/elasticsearch,wangtuo/elasticsearch,kalimatas/elasticsearch,rajanm/elasticsearch,wangtuo/elasticsearch,s1monw/elasticsearch,wangtuo/elasticsearch,robin13/elasticsearch,ThiagoGarciaAlves/elasticsearch,kalimatas/elasticsearch,fred84/elasticsearch,scorpionvicky/elasticsearch,scottsom/elasticsearch,gfyoung/elasticsearch,fred84/elasticsearch,mjason3/elasticsearch,maddin2016/elasticsearch,rajanm/elasticsearch,scorpionvicky/elasticsearch,GlenRSmith/elasticsearch,markwalkom/elasticsearch,maddin2016/elasticsearch,fred84/elasticsearch,masaruh/elasticsearch,gingerwizard/elasticsearch,wenpos/elasticsearch,gingerwizard/elasticsearch,coding0011/elasticsearch,GlenRSmith/elasticsearch,s1monw/elasticsearch,kalimatas/elasticsearch,ThiagoGarciaAlves/elasticsearch,GlenRSmith/elasticsearch,nknize/elasticsearch,wangtuo/elasticsearch,markwalkom/elasticsearch,GlenRSmith/elasticsearch,mjason3/elasticsearch,scottsom/elasticsearch,gingerwizard/elasticsearch,ThiagoGarciaAlves/elasticsearch,gingerwizard/elasticsearch,qwerty4030/elasticsearch,robin13/elasticsearch,nknize/elasticsearch,mjason3/elasticsearch,markwalkom/elasticsearch,qwerty4030/elasticsearch,nknize/elasticsearch,wangtuo/elasticsearch,scottsom/elasticsearch,wenpos/elasticsearch,robin13/elasticsearch,markwalkom/elasticsearch,scottsom/elasticsearch,HonzaKral/elasticsearch,scorpionvicky/elasticsearch,fred84/elasticsearch,gfyoung/elasticsearch,masaruh/elasticsearch,s1monw/elasticsearch,markwalkom/elasticsearch,ThiagoGarciaAlves/elasticsearch,gingerwizard/elasticsearch,pozhidaevak/elasticsearch,robin13/elasticsearch,uschindler/elasticsearch,s1monw/elasticsearch,kalimatas/elasticsearch,wenpos/elasticsearch,pozhidaevak/elasticsearch,masaruh/elasticsearch,coding0011/elasticsearch,ThiagoGarciaAlves/elasticsearch,qwerty4030/elasticsearch,HonzaKral/elasticsearch,maddin2016/elasticsearch,scorpionvicky/elasticsearch,kalimatas/elasticsearch,maddin2016/elasticsearch,coding0011/elasticsearch,uschindler/elasticsearch,ThiagoGarciaAlves/elasticsearch,pozhidaevak/elasticsearch,uschindler/elasticsearch,maddin2016/elasticsearch,HonzaKral/elasticsearch,s1monw/elasticsearch,rajanm/elasticsearch,uschindler/elasticsearch,gfyoung/elasticsearch,pozhidaevak/elasticsearch,nknize/elasticsearch,markwalkom/elasticsearch,qwerty4030/elasticsearch,wenpos/elasticsearch,gfyoung/elasticsearch,robin13/elasticsearch,gingerwizard/elasticsearch,coding0011/elasticsearch,qwerty4030/elasticsearch,mjason3/elasticsearch,scorpionvicky/elasticsearch,rajanm/elasticsearch,masaruh/elasticsearch,uschindler/elasticsearch,rajanm/elasticsearch,masaruh/elasticsearch,HonzaKral/elasticsearch,nknize/elasticsearch
8190328e235c5a4dc2c3f99f36676b0b4918780e
storage/container_storage_interface/persistent-storage-csi-snapshots.adoc
storage/container_storage_interface/persistent-storage-csi-snapshots.adoc
[id="persistent-storage-csi-snapshots"] = CSI volume snapshots include::modules/common-attributes.adoc[] :context: persistent-storage-csi-snapshots toc::[] This document describes how to use volume snapshots with supported Container Storage Interface (CSI) drivers to help protect against data loss in {product-title}. Familiarity with xref:../../storage/understanding-persistent-storage.adoc#persistent-volumes_understanding-persistent-storage[persistent volumes] is suggested. :FeatureName: CSI volume snapshot include::modules/technology-preview.adoc[leveloffset=+0] include::modules/persistent-storage-csi-snapshots-overview.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-controller-sidecar.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-operator.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-provision.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-create.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-delete.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-restore.adoc[leveloffset=+1]
[id="persistent-storage-csi-snapshots"] = CSI volume snapshots include::modules/common-attributes.adoc[] :context: persistent-storage-csi-snapshots toc::[] This document describes how to use volume snapshots with supported Container Storage Interface (CSI) drivers to help protect against data loss in {product-title}. Familiarity with xref:../../storage/understanding-persistent-storage.adoc#persistent-volumes_understanding-persistent-storage[persistent volumes] is suggested. include::modules/persistent-storage-csi-snapshots-overview.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-controller-sidecar.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-operator.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-provision.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-create.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-delete.adoc[leveloffset=+1] include::modules/persistent-storage-csi-snapshots-restore.adoc[leveloffset=+1]
Remove TP note in CSI snapshots
Remove TP note in CSI snapshots
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
d8bc2ec33d029a94e3eea61d1b21468cb8294eab
compatibility/springBoot.adoc
compatibility/springBoot.adoc
= Artificial Intelligence for Spring Boot :awestruct-description: Learn how to use OptaPlanner (open source, java) for Artificial Intelligence planning optimization on Spring Boot. :awestruct-layout: compatibilityBase :awestruct-priority: 1.0 :awestruct-related_tag: spring :showtitle: OptaPlanner has a Spring Boot Starter to get up and running quickly. Usage is similar to the link:quarkus.html[Quarkus] extension, but without the performance benefits. video::U2N02ReT9CI[youtube] == Guide **https://github.com/ge0ffrey/getting-started-guides/blob/gs-constraint-solving-ai-optaplanner/README.adoc[Read the OptaPlanner on Spring Boot guide.]** == Quick start Run the quick start yourself: . Download https://github.com/ge0ffrey/gs-constraint-solving-ai-optaplanner-backup/tree/master/complete[the source code]. . Run `./mvnw clean install` . Open http://localhost:8080 in your browser
= Artificial Intelligence for Spring Boot :awestruct-description: Learn how to use OptaPlanner (open source, java) for Artificial Intelligence planning optimization on Spring Boot. :awestruct-layout: compatibilityBase :awestruct-priority: 1.0 :awestruct-related_tag: spring :showtitle: OptaPlanner has a Spring Boot Starter to get up and running quickly. Usage is similar to the link:quarkus.html[Quarkus] extension, but without the performance benefits. video::U2N02ReT9CI[youtube] == Guide **https://github.com/ge0ffrey/getting-started-guides/blob/gs-constraint-solving-ai-optaplanner/README.adoc[Read the OptaPlanner on Spring Boot guide.]** == Quick start Run the quick start yourself: . Download https://github.com/ge0ffrey/getting-started-guides/tree/gs-constraint-solving-ai-optaplanner/complete[the source code]. . Run `./mvnw clean install` . Open http://localhost:8080 in your browser
Fix wrong link (even if it's temporally)
Fix wrong link (even if it's temporally)
AsciiDoc
apache-2.0
droolsjbpm/optaplanner-website,droolsjbpm/optaplanner-website,droolsjbpm/optaplanner-website
a625e5317bfcdebc7d7f99a5d4e972008031f1ec
CONTRIBUTING.adoc
CONTRIBUTING.adoc
= Contributing to Hawkular Metrics Before contributing to Hawkular Metrics, it might be useful to read the http://www.hawkular.org/docs/dev/development.html[How to develop on Hawkular] page on Hawkular website. == Code style Hawkular Metrics is a Hawkular component, so project level conventions apply here. That said, there are some Metrics specific ones. === Logging When working with the JBoss Logging API: * Group all `INFO` level and above messages http://git.io/vnDW4[in one interface] per logical module for maintainability * Instead of creating a logger instance in the message logger interface, use a http://git.io/vnDWr[helper class] to get a logger instance with proper category * Use existing message logger instance to log trace/debug messages instead of creating a separate logger instance The logging `projectCode` is `HAWKMETRICS`. Note that until we no longer need to support EAP 6.4, http://lists.jboss.org/pipermail/hawkular-dev/2015-March/000378.html[we must not use primitive arguments in logging interfaces]. Logback is the logging backend for tests. It allows to http://git.io/vnDlr[set log level with a system property] while still having a default value. No Maven filtering/replace dance involved.
= Contributing to Hawkular Metrics Before contributing to Hawkular Metrics, it might be useful to read the http://www.hawkular.org/docs/dev/development.html[How to develop on Hawkular] page on Hawkular website. == Code style Hawkular Metrics is a Hawkular subproject, so top level conventions apply here. That said, there are some Metrics specific ones. === Logging When working with the JBoss Logging API: * Group all `INFO` level and above messages http://git.io/vnDW4[in one interface] per logical module for maintainability * Instead of creating a logger instance in the message logger interface, use a http://git.io/vnDWr[helper class] to get a logger instance with proper category * Use existing message logger instance to log trace/debug messages instead of creating a separate logger instance The logging `projectCode` is `HAWKMETRICS`. Note that until we no longer need to support EAP 6.4, http://lists.jboss.org/pipermail/hawkular-dev/2015-March/000378.html[we must not use primitive arguments in logging interfaces]. Logback is the logging backend for tests. It allows to http://git.io/vnDlr[set log level with a system property] while still having a default value. No Maven filtering/replace dance involved.
Rephrase Metrics presentation a bit
Rephrase Metrics presentation a bit
AsciiDoc
apache-2.0
spadgett/hawkular-metrics,hawkular/hawkular-metrics,mwringe/hawkular-metrics,jotak/hawkular-metrics,pilhuhn/rhq-metrics,tsegismont/hawkular-metrics,burmanm/hawkular-metrics,tsegismont/hawkular-metrics,burmanm/hawkular-metrics,hawkular/hawkular-metrics,ppalaga/hawkular-metrics,mwringe/hawkular-metrics,burmanm/hawkular-metrics,ppalaga/hawkular-metrics,hawkular/hawkular-metrics,ppalaga/hawkular-metrics,tsegismont/hawkular-metrics,spadgett/hawkular-metrics,pilhuhn/rhq-metrics,mwringe/hawkular-metrics,spadgett/hawkular-metrics,tsegismont/hawkular-metrics,mwringe/hawkular-metrics,jotak/hawkular-metrics,jotak/hawkular-metrics,spadgett/hawkular-metrics,pilhuhn/rhq-metrics,hawkular/hawkular-metrics,pilhuhn/rhq-metrics,ppalaga/hawkular-metrics,jotak/hawkular-metrics,burmanm/hawkular-metrics,spadgett/hawkular-metrics
73bac1614e044603dd6b1da16113a47a26f1d14f
README.adoc
README.adoc
== License The gem is available as open source under the terms of the http://opensource.org/licenses/MIT[MIT License]. The gem includes "Iliad", a classical masterpiece by Homer, translated to English by Samuel Butler. A work is in https://wiki.creativecommons.org/wiki/Public_domain[public domain] in USA and in almost whole world (if not whole world) as the translator has died over 100 years ago (not to mention the original author). It has been downloaded from Project Gutenberg, more details about the work can be found http://www.gutenberg.org/ebooks/2199[there].
Well Read Faker =============== :homepage: https://github.com/skalee/well_read_faker image:https://img.shields.io/gem/v/well_read_faker.svg[ Version, link="https://rubygems.org/gems/well_read_faker"] image:https://img.shields.io/travis/skalee/well_read_faker/master.svg[ Build Status, link="https://travis-ci.org/skalee/well_read_faker/branches"] image:https://img.shields.io/gemnasium/skalee/well_read_faker.svg[ Dependencies, link="https://gemnasium.com/skalee/well_read_faker"] image:https://img.shields.io/codeclimate/github/skalee/well_read_faker.svg[ Code Climate, link="https://codeclimate.com/github/skalee/well_read_faker"] image:http://img.shields.io/coveralls/skalee/well_read_faker.svg[ Test Coverage, link="https://coveralls.io/r/skalee/well_read_faker"] :toc: == License The gem is available as open source under the terms of the http://opensource.org/licenses/MIT[MIT License]. The gem includes "Iliad", a classical masterpiece by Homer, translated to English by Samuel Butler. A work is in https://wiki.creativecommons.org/wiki/Public_domain[public domain] in USA and in almost whole world (if not whole world) as the translator has died over 100 years ago (not to mention the original author). It has been downloaded from Project Gutenberg, more details about the work can be found http://www.gutenberg.org/ebooks/2199[there].
Add metadata and badges to the Readme
Add metadata and badges to the Readme
AsciiDoc
mit
skalee/well_read_faker,skalee/well_read_faker
42fb07fda965ac564a734eeb18f6d31bdd823e0c
README.adoc
README.adoc
:title: scribble.github.io == Scribble Website image:https://travis-ci.org/scribble/scribble.github.io.svg?branch=pages["Build Status", link="https://travis-ci.org/scribble/scribble.github.io"] === Description When pushing a commit into this branch, the site is automatically built and published to http://www.scribble.org Most likely the content of the website you are looking for is link:src/main/jbake/content/[here]. === Building the site on localhost . `git clone https://github.com/scribble/scribble.github.io` . `git checkout pages` . Provided Maven is installed, run one of following commands: * `mvn jbake:generate` Simply runs jbake and generate the site into `target/website` dir. * `mvn jbake:watch` Polls a folder and run jbake whenever changes happen. * `mvn jbake:inline` Same as watch, but also launches an embedded winstone container that by default listens on http://localhost:8080. Additionally you may want to use `-Djbake.port=X` `-Djbake.listenAddress=Y`. NOTE: `mvn install` will most likely fail on localhost, because it needs the OAuth token for GitHub.
:title: scribble.github.io == Scribble Website image:https://travis-ci.org/scribble/scribble.github.io.svg?branch=pages["Build Status", link="https://travis-ci.org/scribble/scribble.github.io"] === Description When pushing a commit into this branch, the site is automatically built and published to http://www.scribble.org Most likely the content of the website you are looking for is link:src/main/jbake/content/[here]. === Building the site on localhost . `git clone https://github.com/scribble/scribble.github.io` . `git checkout pages` . Provided Maven is installed, run one of following commands: * `mvn jbake:generate` Simply runs jbake and generate the site into `target/website` dir. * `mvn jbake:watch` Polls a folder and run jbake whenever changes happen. * `mvn jbake:inline` Same as watch, but also launches an embedded winstone container that by default listens on http://localhost:8080. Additionally you may want to use `-Djbake.port=X` `-Djbake.listenAddress=Y`. NOTE: `mvn install` will most likely fail on localhost, because it needs the OAuth token for GitHub.
Test update to check publication of website
Test update to check publication of website
AsciiDoc
apache-2.0
scribble/scribble.github.io,scribble/scribble.github.io,scribble/scribble.github.io,scribble/scribble.github.io,scribble/scribble.github.io
8440f05ee0332eec50dfa82094538f9be911c8d8
docs/index.adoc
docs/index.adoc
= RecordTrac Documentation {% macro link(underscore_name) %} link:{{ underscore_name }}.html[{{titleize(underscore_name)}}] {% endmacro %} == Welcome This is the home page for documentation for RecordTrac app. NOTE: For help contact ... == What This Is * {{ link('overview-of-app') }} * {{ link('why-it-was-built') }} * {{ link('research-and-references') }} * {{ link('principles') }} == How Is This Built Learn about the technical details of implementation so you can see what's involved. == API Documentation * {{ link('api-documentation') }} == Developer Documentation How to modify and develop the app's source code. === Source Code * https://github.com/codeforamerica/public-records[Source Code (Github)] * https://github.com/codeforamerica/public-records/issues[Issue Tracker (Github)] === Developer Docs * {{ link('db-helpers') }}
= RecordTrac Documentation {% macro link(underscore_name) -%} link:{{ underscore_name }}.html[{{titleize(underscore_name)}}] {% endmacro -%} == Welcome This is the home page for documentation for RecordTrac app. NOTE: For help contact ... == What This Is * {{ link('overview-of-app') }} * {{ link('why-it-was-built') }} * {{ link('research-and-references') }} * {{ link('principles') }} == How Is This Built Learn about the technical details of implementation so you can see what's involved. == API Documentation * {{ link('api-documentation') }} == Developer Documentation How to modify and develop the app's source code. === Source Code * https://github.com/codeforamerica/public-records[Source Code (Github)] * https://github.com/codeforamerica/public-records/issues[Issue Tracker (Github)] === Developer Docs * {{ link('db-helpers') }}
Fix issue with bulleted lists.
Fix issue with bulleted lists.
AsciiDoc
apache-2.0
CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords,CityOfNewYork/NYCOpenRecords
ac741fc514ecf286bab893794e14aae73a1ecddf
README.adoc
README.adoc
= CrashBurnFree CrashBurnFree is a free crash reporting tool for Java (and potentially other languages). The name is a pun, as (a) it's _free_ to use and modify and (b) one over-arching goal of Software Checking Tools is to _free_ you from crashing and burning... It is composed of the following sub-projects: . javaclient - the Java client code; no external dependencies . javaserver - an implementation of a Java EE (REST JAXRS) server
= CrashBurnFree CrashBurnFree is a free crash reporting tool for Java (and potentially other languages). The name is a pun, as (a) it's _free_ to use and modify and (b) one over-arching goal of Software Checking Tools is to _free_ you from crashing and burning... It is composed of the following sub-projects: . javaclient - the Java client code; no external dependencies . javaserver - an implementation of a Java EE (REST JAXRS) server Status: javaclient seems to "work", but javaserver is, ahem, not quite finished. Or at least not tried. And, there needs to be a "common" library project for code shared between them.
Bring into synch with reality
Bring into synch with reality
AsciiDoc
bsd-2-clause
IanDarwin/CrashBurnFree,IanDarwin/CrashBurnFree
a419d6562d40801ec7b833f0d6a3d9e3b5c25486
CHANGES.adoc
CHANGES.adoc
= Changelog == Version 0.3.0 Date: unreleased - First version splitted from monolitic buddy package.
= Changelog == Version 0.4.0 Date: unreleased - Replace record usage in kdf ns with reify. - Rename kdf protocol from KDFType to IKDF - Rename kdf protocol method names to more consistent ones. - Add support for nio ByteBuffer for kdf. == Version 0.3.0 Date: 2015-01-18 - First version splitted from monolitic buddy package.
Update changelog with latest changes on kdf.
Update changelog with latest changes on kdf.
AsciiDoc
apache-2.0
funcool/buddy-core,funcool/buddy-core
3a8590cb0ba2e63bdc606f8109a26ddd95b476d9
docs/dashboards.asciidoc
docs/dashboards.asciidoc
[[sample-dashboards]] == Sample dashboards In order to make it as easy as possible to get application performance insights from packet data, we provide a few sample Kibana dashboards. The dashboards are maintained in this https://github.com/elastic/beats-dashboards[GitHub repository]. Load automatically all the sample dashboards in Kibana by following the TODO[steps]. image:./images/packetbeat-statistics.png[Topbeat statistics] These dashboards are provided as examples, we recommend that you http://www.elastic.co/guide/en/kibana/current/dashboard.html[customize] them to your needs.
[[sample-dashboards]] == Sample dashboards In order to make it as easy as possible to get application performance insights from packet data, we provide a few sample Kibana dashboards. The dashboards are maintained in this https://github.com/elastic/beats-dashboards[GitHub repository], which also includes instructions for loading them. Load automatically all the sample dashboards in Kibana by following the TODO[steps]. image:./images/packetbeat-statistics.png[Topbeat statistics] These dashboards are provided as examples, we recommend that you http://www.elastic.co/guide/en/kibana/current/dashboard.html[customize] them to your needs.
Add back the old text
Add back the old text
AsciiDoc
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
74d9c8f5cf6a4de1950cb54b851760c6919e1ab5
docs/reference/index.asciidoc
docs/reference/index.asciidoc
[[elasticsearch-reference]] = Elasticsearch Reference :version: 3.0.0-beta1 :major-version: 3.x :branch: 3.0 :jdk: 1.8.0_25 :defguide: https://www.elastic.co/guide/en/elasticsearch/guide/current :plugins: https://www.elastic.co/guide/en/elasticsearch/plugins/master :issue: https://github.com/elastic/elasticsearch/issues :pull: https://github.com/elastic/elasticsearch/pull include::getting-started.asciidoc[] include::setup.asciidoc[] include::migration/index.asciidoc[] include::api-conventions.asciidoc[] include::docs.asciidoc[] include::search.asciidoc[] include::aggregations.asciidoc[] include::indices.asciidoc[] include::cat.asciidoc[] include::cluster.asciidoc[] include::query-dsl.asciidoc[] include::mapping.asciidoc[] include::analysis.asciidoc[] include::modules.asciidoc[] include::index-modules.asciidoc[] include::testing.asciidoc[] include::glossary.asciidoc[] ////////////////////////////////////////// include::release-notes.asciidoc[] ////////////////////////////////////////// include::redirects.asciidoc[]
[[elasticsearch-reference]] = Elasticsearch Reference :version: 3.0.0-beta1 :major-version: 3.x :branch: 3.0 :jdk: 1.8.0_25 :defguide: https://www.elastic.co/guide/en/elasticsearch/guide/current :plugins: https://www.elastic.co/guide/en/elasticsearch/plugins/master :issue: https://github.com/elastic/elasticsearch/issues/ :pull: https://github.com/elastic/elasticsearch/pull/ include::getting-started.asciidoc[] include::setup.asciidoc[] include::migration/index.asciidoc[] include::api-conventions.asciidoc[] include::docs.asciidoc[] include::search.asciidoc[] include::aggregations.asciidoc[] include::indices.asciidoc[] include::cat.asciidoc[] include::cluster.asciidoc[] include::query-dsl.asciidoc[] include::mapping.asciidoc[] include::analysis.asciidoc[] include::modules.asciidoc[] include::index-modules.asciidoc[] include::testing.asciidoc[] include::glossary.asciidoc[] ////////////////////////////////////////// include::release-notes.asciidoc[] ////////////////////////////////////////// include::redirects.asciidoc[]
Fix :issue: and :pull: asciidoc replacements
Docs: Fix :issue: and :pull: asciidoc replacements Closes #14922
AsciiDoc
apache-2.0
clintongormley/elasticsearch,diendt/elasticsearch,avikurapati/elasticsearch,obourgain/elasticsearch,s1monw/elasticsearch,i-am-Nathan/elasticsearch,IanvsPoplicola/elasticsearch,martinstuga/elasticsearch,vroyer/elasticassandra,rmuir/elasticsearch,dongjoon-hyun/elasticsearch,diendt/elasticsearch,LewayneNaidoo/elasticsearch,mjason3/elasticsearch,mmaracic/elasticsearch,davidvgalbraith/elasticsearch,spiegela/elasticsearch,strapdata/elassandra5-rc,myelin/elasticsearch,lks21c/elasticsearch,fred84/elasticsearch,MisterAndersen/elasticsearch,liweinan0423/elasticsearch,markharwood/elasticsearch,nknize/elasticsearch,lks21c/elasticsearch,vroyer/elassandra,Stacey-Gammon/elasticsearch,rajanm/elasticsearch,i-am-Nathan/elasticsearch,episerver/elasticsearch,clintongormley/elasticsearch,scorpionvicky/elasticsearch,rajanm/elasticsearch,henakamaMSFT/elasticsearch,rajanm/elasticsearch,xuzha/elasticsearch,artnowo/elasticsearch,geidies/elasticsearch,uschindler/elasticsearch,AndreKR/elasticsearch,geidies/elasticsearch,wangtuo/elasticsearch,mortonsykes/elasticsearch,glefloch/elasticsearch,davidvgalbraith/elasticsearch,snikch/elasticsearch,polyfractal/elasticsearch,bawse/elasticsearch,trangvh/elasticsearch,brandonkearby/elasticsearch,xuzha/elasticsearch,camilojd/elasticsearch,alexshadow007/elasticsearch,polyfractal/elasticsearch,winstonewert/elasticsearch,tebriel/elasticsearch,brandonkearby/elasticsearch,brandonkearby/elasticsearch,jbertouch/elasticsearch,JervyShi/elasticsearch,qwerty4030/elasticsearch,alexshadow007/elasticsearch,obourgain/elasticsearch,a2lin/elasticsearch,StefanGor/elasticsearch,Shepard1212/elasticsearch,camilojd/elasticsearch,nknize/elasticsearch,fforbeck/elasticsearch,fred84/elasticsearch,jbertouch/elasticsearch,MaineC/elasticsearch,dpursehouse/elasticsearch,fforbeck/elasticsearch,markwalkom/elasticsearch,F0lha/elasticsearch,mmaracic/elasticsearch,fred84/elasticsearch,glefloch/elasticsearch,coding0011/elasticsearch,masaruh/elasticsearch,snikch/elasticsearch,fred84/elasticsearch,C-Bish/elasticsearch,gingerwizard/elasticsearch,lks21c/elasticsearch,lks21c/elasticsearch,brandonkearby/elasticsearch,IanvsPoplicola/elasticsearch,bawse/elasticsearch,i-am-Nathan/elasticsearch,wangtuo/elasticsearch,nazarewk/elasticsearch,andrejserafim/elasticsearch,gfyoung/elasticsearch,clintongormley/elasticsearch,Helen-Zhao/elasticsearch,palecur/elasticsearch,myelin/elasticsearch,fernandozhu/elasticsearch,a2lin/elasticsearch,JackyMai/elasticsearch,wuranbo/elasticsearch,artnowo/elasticsearch,mapr/elasticsearch,nazarewk/elasticsearch,wenpos/elasticsearch,martinstuga/elasticsearch,Shepard1212/elasticsearch,geidies/elasticsearch,ivansun1010/elasticsearch,ESamir/elasticsearch,uschindler/elasticsearch,trangvh/elasticsearch,obourgain/elasticsearch,LewayneNaidoo/elasticsearch,GlenRSmith/elasticsearch,gingerwizard/elasticsearch,rmuir/elasticsearch,kaneshin/elasticsearch,wuranbo/elasticsearch,mikemccand/elasticsearch,JackyMai/elasticsearch,camilojd/elasticsearch,maddin2016/elasticsearch,gmarz/elasticsearch,F0lha/elasticsearch,rajanm/elasticsearch,dongjoon-hyun/elasticsearch,yanjunh/elasticsearch,JSCooke/elasticsearch,LewayneNaidoo/elasticsearch,njlawton/elasticsearch,geidies/elasticsearch,episerver/elasticsearch,StefanGor/elasticsearch,gingerwizard/elasticsearch,camilojd/elasticsearch,jchampion/elasticsearch,robin13/elasticsearch,markharwood/elasticsearch,masaruh/elasticsearch,jpountz/elasticsearch,shreejay/elasticsearch,qwerty4030/elasticsearch,girirajsharma/elasticsearch,glefloch/elasticsearch,nilabhsagar/elasticsearch,elasticdog/elasticsearch,spiegela/elasticsearch,clintongormley/elasticsearch,obourgain/elasticsearch,F0lha/elasticsearch,markwalkom/elasticsearch,wenpos/elasticsearch,nknize/elasticsearch,xuzha/elasticsearch,pozhidaevak/elasticsearch,cwurm/elasticsearch,mikemccand/elasticsearch,ivansun1010/elasticsearch,pozhidaevak/elasticsearch,wuranbo/elasticsearch,masaruh/elasticsearch,henakamaMSFT/elasticsearch,jpountz/elasticsearch,scorpionvicky/elasticsearch,mjason3/elasticsearch,nomoa/elasticsearch,naveenhooda2000/elasticsearch,naveenhooda2000/elasticsearch,pozhidaevak/elasticsearch,JSCooke/elasticsearch,mohit/elasticsearch,umeshdangat/elasticsearch,winstonewert/elasticsearch,alexshadow007/elasticsearch,ivansun1010/elasticsearch,yynil/elasticsearch,vroyer/elasticassandra,avikurapati/elasticsearch,mjason3/elasticsearch,diendt/elasticsearch,GlenRSmith/elasticsearch,trangvh/elasticsearch,ivansun1010/elasticsearch,gingerwizard/elasticsearch,strapdata/elassandra5-rc,ESamir/elasticsearch,jimczi/elasticsearch,F0lha/elasticsearch,alexshadow007/elasticsearch,a2lin/elasticsearch,winstonewert/elasticsearch,fernandozhu/elasticsearch,HonzaKral/elasticsearch,nknize/elasticsearch,jbertouch/elasticsearch,trangvh/elasticsearch,s1monw/elasticsearch,scottsom/elasticsearch,henakamaMSFT/elasticsearch,ricardocerq/elasticsearch,maddin2016/elasticsearch,cwurm/elasticsearch,jchampion/elasticsearch,jimczi/elasticsearch,Shepard1212/elasticsearch,camilojd/elasticsearch,wenpos/elasticsearch,diendt/elasticsearch,jimczi/elasticsearch,jbertouch/elasticsearch,markharwood/elasticsearch,palecur/elasticsearch,mapr/elasticsearch,rhoml/elasticsearch,wangtuo/elasticsearch,diendt/elasticsearch,mapr/elasticsearch,markharwood/elasticsearch,snikch/elasticsearch,yanjunh/elasticsearch,myelin/elasticsearch,wenpos/elasticsearch,tebriel/elasticsearch,mapr/elasticsearch,masaruh/elasticsearch,alexshadow007/elasticsearch,dpursehouse/elasticsearch,liweinan0423/elasticsearch,geidies/elasticsearch,henakamaMSFT/elasticsearch,vroyer/elassandra,martinstuga/elasticsearch,nomoa/elasticsearch,Stacey-Gammon/elasticsearch,polyfractal/elasticsearch,gfyoung/elasticsearch,qwerty4030/elasticsearch,sneivandt/elasticsearch,Shepard1212/elasticsearch,njlawton/elasticsearch,C-Bish/elasticsearch,naveenhooda2000/elasticsearch,winstonewert/elasticsearch,JSCooke/elasticsearch,dpursehouse/elasticsearch,IanvsPoplicola/elasticsearch,jbertouch/elasticsearch,umeshdangat/elasticsearch,sneivandt/elasticsearch,gmarz/elasticsearch,snikch/elasticsearch,coding0011/elasticsearch,jbertouch/elasticsearch,yanjunh/elasticsearch,trangvh/elasticsearch,JackyMai/elasticsearch,elasticdog/elasticsearch,ZTE-PaaS/elasticsearch,nazarewk/elasticsearch,xuzha/elasticsearch,dpursehouse/elasticsearch,mmaracic/elasticsearch,zkidkid/elasticsearch,awislowski/elasticsearch,scorpionvicky/elasticsearch,nilabhsagar/elasticsearch,coding0011/elasticsearch,rajanm/elasticsearch,rmuir/elasticsearch,glefloch/elasticsearch,strapdata/elassandra,nomoa/elasticsearch,mortonsykes/elasticsearch,naveenhooda2000/elasticsearch,umeshdangat/elasticsearch,LeoYao/elasticsearch,masaruh/elasticsearch,a2lin/elasticsearch,nomoa/elasticsearch,mmaracic/elasticsearch,cwurm/elasticsearch,coding0011/elasticsearch,jchampion/elasticsearch,ThiagoGarciaAlves/elasticsearch,mikemccand/elasticsearch,jprante/elasticsearch,mohit/elasticsearch,LewayneNaidoo/elasticsearch,dongjoon-hyun/elasticsearch,kalimatas/elasticsearch,martinstuga/elasticsearch,robin13/elasticsearch,ThiagoGarciaAlves/elasticsearch,davidvgalbraith/elasticsearch,MisterAndersen/elasticsearch,kaneshin/elasticsearch,mortonsykes/elasticsearch,StefanGor/elasticsearch,vroyer/elassandra,mikemccand/elasticsearch,zkidkid/elasticsearch,GlenRSmith/elasticsearch,jimczi/elasticsearch,naveenhooda2000/elasticsearch,coding0011/elasticsearch,xuzha/elasticsearch,AndreKR/elasticsearch,girirajsharma/elasticsearch,LewayneNaidoo/elasticsearch,cwurm/elasticsearch,bawse/elasticsearch,nezirus/elasticsearch,jchampion/elasticsearch,andrejserafim/elasticsearch,a2lin/elasticsearch,scorpionvicky/elasticsearch,gfyoung/elasticsearch,avikurapati/elasticsearch,strapdata/elassandra,kalimatas/elasticsearch,sneivandt/elasticsearch,yynil/elasticsearch,scottsom/elasticsearch,HonzaKral/elasticsearch,nezirus/elasticsearch,JervyShi/elasticsearch,gingerwizard/elasticsearch,markharwood/elasticsearch,ThiagoGarciaAlves/elasticsearch,mapr/elasticsearch,episerver/elasticsearch,fforbeck/elasticsearch,Shepard1212/elasticsearch,MaineC/elasticsearch,jpountz/elasticsearch,mikemccand/elasticsearch,davidvgalbraith/elasticsearch,liweinan0423/elasticsearch,C-Bish/elasticsearch,yanjunh/elasticsearch,mmaracic/elasticsearch,mortonsykes/elasticsearch,geidies/elasticsearch,LeoYao/elasticsearch,gmarz/elasticsearch,awislowski/elasticsearch,polyfractal/elasticsearch,dongjoon-hyun/elasticsearch,markwalkom/elasticsearch,maddin2016/elasticsearch,fernandozhu/elasticsearch,wuranbo/elasticsearch,mortonsykes/elasticsearch,AndreKR/elasticsearch,rhoml/elasticsearch,yynil/elasticsearch,andrejserafim/elasticsearch,jchampion/elasticsearch,ESamir/elasticsearch,jchampion/elasticsearch,liweinan0423/elasticsearch,spiegela/elasticsearch,ZTE-PaaS/elasticsearch,nezirus/elasticsearch,andrejserafim/elasticsearch,JSCooke/elasticsearch,lks21c/elasticsearch,nezirus/elasticsearch,rhoml/elasticsearch,dpursehouse/elasticsearch,gmarz/elasticsearch,strapdata/elassandra5-rc,ricardocerq/elasticsearch,nilabhsagar/elasticsearch,yanjunh/elasticsearch,MisterAndersen/elasticsearch,bawse/elasticsearch,kaneshin/elasticsearch,rlugojr/elasticsearch,MaineC/elasticsearch,rlugojr/elasticsearch,gfyoung/elasticsearch,ThiagoGarciaAlves/elasticsearch,martinstuga/elasticsearch,henakamaMSFT/elasticsearch,fforbeck/elasticsearch,markwalkom/elasticsearch,wangtuo/elasticsearch,zkidkid/elasticsearch,andrejserafim/elasticsearch,myelin/elasticsearch,Stacey-Gammon/elasticsearch,nomoa/elasticsearch,scorpionvicky/elasticsearch,ZTE-PaaS/elasticsearch,Stacey-Gammon/elasticsearch,strapdata/elassandra,nknize/elasticsearch,jprante/elasticsearch,jprante/elasticsearch,avikurapati/elasticsearch,yynil/elasticsearch,davidvgalbraith/elasticsearch,glefloch/elasticsearch,spiegela/elasticsearch,uschindler/elasticsearch,diendt/elasticsearch,HonzaKral/elasticsearch,JervyShi/elasticsearch,snikch/elasticsearch,ivansun1010/elasticsearch,maddin2016/elasticsearch,strapdata/elassandra5-rc,gfyoung/elasticsearch,pozhidaevak/elasticsearch,HonzaKral/elasticsearch,uschindler/elasticsearch,rmuir/elasticsearch,artnowo/elasticsearch,ESamir/elasticsearch,LeoYao/elasticsearch,ricardocerq/elasticsearch,avikurapati/elasticsearch,fred84/elasticsearch,rlugojr/elasticsearch,sreeramjayan/elasticsearch,rlugojr/elasticsearch,ivansun1010/elasticsearch,jpountz/elasticsearch,scottsom/elasticsearch,liweinan0423/elasticsearch,wangtuo/elasticsearch,girirajsharma/elasticsearch,girirajsharma/elasticsearch,awislowski/elasticsearch,GlenRSmith/elasticsearch,girirajsharma/elasticsearch,C-Bish/elasticsearch,ricardocerq/elasticsearch,xuzha/elasticsearch,rmuir/elasticsearch,jimczi/elasticsearch,myelin/elasticsearch,F0lha/elasticsearch,dongjoon-hyun/elasticsearch,s1monw/elasticsearch,Helen-Zhao/elasticsearch,njlawton/elasticsearch,sreeramjayan/elasticsearch,AndreKR/elasticsearch,artnowo/elasticsearch,awislowski/elasticsearch,fforbeck/elasticsearch,JackyMai/elasticsearch,winstonewert/elasticsearch,ESamir/elasticsearch,maddin2016/elasticsearch,StefanGor/elasticsearch,GlenRSmith/elasticsearch,IanvsPoplicola/elasticsearch,davidvgalbraith/elasticsearch,markwalkom/elasticsearch,fernandozhu/elasticsearch,polyfractal/elasticsearch,Stacey-Gammon/elasticsearch,JackyMai/elasticsearch,njlawton/elasticsearch,Helen-Zhao/elasticsearch,kalimatas/elasticsearch,tebriel/elasticsearch,nazarewk/elasticsearch,jprante/elasticsearch,sneivandt/elasticsearch,i-am-Nathan/elasticsearch,Helen-Zhao/elasticsearch,yynil/elasticsearch,sreeramjayan/elasticsearch,njlawton/elasticsearch,umeshdangat/elasticsearch,mjason3/elasticsearch,gingerwizard/elasticsearch,mapr/elasticsearch,rhoml/elasticsearch,AndreKR/elasticsearch,spiegela/elasticsearch,shreejay/elasticsearch,mohit/elasticsearch,rhoml/elasticsearch,JervyShi/elasticsearch,scottsom/elasticsearch,sreeramjayan/elasticsearch,mohit/elasticsearch,kaneshin/elasticsearch,strapdata/elassandra,sneivandt/elasticsearch,kalimatas/elasticsearch,MaineC/elasticsearch,qwerty4030/elasticsearch,clintongormley/elasticsearch,elasticdog/elasticsearch,elasticdog/elasticsearch,LeoYao/elasticsearch,IanvsPoplicola/elasticsearch,s1monw/elasticsearch,andrejserafim/elasticsearch,shreejay/elasticsearch,ZTE-PaaS/elasticsearch,tebriel/elasticsearch,palecur/elasticsearch,JervyShi/elasticsearch,episerver/elasticsearch,kalimatas/elasticsearch,markwalkom/elasticsearch,umeshdangat/elasticsearch,LeoYao/elasticsearch,fernandozhu/elasticsearch,pozhidaevak/elasticsearch,sreeramjayan/elasticsearch,jpountz/elasticsearch,qwerty4030/elasticsearch,rajanm/elasticsearch,shreejay/elasticsearch,ricardocerq/elasticsearch,JervyShi/elasticsearch,uschindler/elasticsearch,obourgain/elasticsearch,polyfractal/elasticsearch,episerver/elasticsearch,clintongormley/elasticsearch,gingerwizard/elasticsearch,i-am-Nathan/elasticsearch,bawse/elasticsearch,ESamir/elasticsearch,markharwood/elasticsearch,rlugojr/elasticsearch,s1monw/elasticsearch,nilabhsagar/elasticsearch,girirajsharma/elasticsearch,LeoYao/elasticsearch,JSCooke/elasticsearch,StefanGor/elasticsearch,shreejay/elasticsearch,kaneshin/elasticsearch,Helen-Zhao/elasticsearch,MisterAndersen/elasticsearch,robin13/elasticsearch,kaneshin/elasticsearch,vroyer/elasticassandra,snikch/elasticsearch,brandonkearby/elasticsearch,F0lha/elasticsearch,jprante/elasticsearch,zkidkid/elasticsearch,nezirus/elasticsearch,strapdata/elassandra,tebriel/elasticsearch,ZTE-PaaS/elasticsearch,C-Bish/elasticsearch,elasticdog/elasticsearch,palecur/elasticsearch,MaineC/elasticsearch,jpountz/elasticsearch,cwurm/elasticsearch,scottsom/elasticsearch,sreeramjayan/elasticsearch,strapdata/elassandra5-rc,wuranbo/elasticsearch,awislowski/elasticsearch,rmuir/elasticsearch,yynil/elasticsearch,artnowo/elasticsearch,ThiagoGarciaAlves/elasticsearch,LeoYao/elasticsearch,zkidkid/elasticsearch,wenpos/elasticsearch,mohit/elasticsearch,rhoml/elasticsearch,robin13/elasticsearch,tebriel/elasticsearch,martinstuga/elasticsearch,mjason3/elasticsearch,nilabhsagar/elasticsearch,ThiagoGarciaAlves/elasticsearch,AndreKR/elasticsearch,MisterAndersen/elasticsearch,gmarz/elasticsearch,palecur/elasticsearch,camilojd/elasticsearch,robin13/elasticsearch,nazarewk/elasticsearch,mmaracic/elasticsearch
44496f53689106a1ba8827f7e8eb928988e94f5c
README.adoc
README.adoc
= Edge Please see the link:app/README.adoc[app/README.adoc] for building and running the app.
= Edge Please see the <<app/README#>> for building and running the app.
Use xref syntax for document links
Use xref syntax for document links This works across different output types, and is the preferred form for interdocument links like this.
AsciiDoc
mit
juxt/edge,juxt/edge
29b780cbb4ce8127db4c09e696029a5fdde55370
README.adoc
README.adoc
= Minimal-J Java - but small. image::doc/frontends.png[] Minimal-J applications are * Responsive to use on every device * Straight forward to specify and implement and therefore * Easy to plan and manage === Idea Business applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented. Minimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user. == Technical Features * Independent of the used UI technology. Implementations for Web / Mobile / Desktop. * ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported. * Small: The minimalj.jar is still < 1MB * Very few dependencies * Applications can run standalone (like SpringBoot) == Documentation * link:doc/user_guide/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications. * link:doc/topics.adoc[Tutorial and examples] Informations for developers. * link:doc/release_notes.adoc[Release Notes] == Hello World How to implement Hello World in Minimal-J: link:_includes/ex-video.adoc[0VHz7gv6TpA] === Contact * Bruno Eberhard, mailto:[email protected][[email protected]]
= Minimal-J Java - but small. image::doc/frontends.png[] Minimal-J applications are * Responsive to use on every device * Straight forward to specify and implement and therefore * Easy to plan and manage === Idea Business applications tend to get complex and complicated. Minimal-J prevents this by setting clear rules how an application should behave and how it should be implemented. Minimal applications may not always look the same. But the UI concepts never change. There are no surprises for the user. == Technical Features * Independent of the used UI technology. Implementations for Web / Mobile / Desktop. * ORM persistence layer for Maria DB or in memory DB. Transactions and Authorization supported. * Small: The minimalj.jar is still < 1MB * Very few dependencies * Applications can run standalone (like SpringBoot) == Documentation * link:doc/user_guide/user_guide.adoc[Minimal user guide] User guide for Minimal-J applications. * link:doc/topics.adoc[Tutorial and examples] Informations for developers. * link:doc/release_notes.adoc[Release Notes] == Hello World How to implement Hello World in Minimal-J: video::0VHz7gv6TpA[youtube] === Contact * Bruno Eberhard, mailto:[email protected][[email protected]]
Include Hello World Youtube video
Include Hello World Youtube video
AsciiDoc
apache-2.0
BrunoEberhard/minimal-j,BrunoEberhard/minimal-j,BrunoEberhard/minimal-j
3b42b58688347f26d3fd0b5c591507493aeeb480
docs/index.asciidoc
docs/index.asciidoc
[[beats-reference]] = Beats Platform Reference :ES-version: 1.7.2 :Kibana-version: 4.1.2 :Dashboards-version: 1.0.0-beta3 include::./overview.asciidoc[] include::./gettingstarted.asciidoc[] include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./https.asciidoc[] include::./newbeat.asciidoc[]
[[beats-reference]] = Beats Platform Reference :ES-version: 1.7.3 :Kibana-version: 4.1.2 :Dashboards-version: 1.0.0-beta4 include::./overview.asciidoc[] include::./gettingstarted.asciidoc[] include::./configuration.asciidoc[] include::./command-line.asciidoc[] include::./https.asciidoc[] include::./newbeat.asciidoc[]
Update elasticsearch to version 1.7.3 and beat dashboards to beta4 branch.
Update elasticsearch to version 1.7.3 and beat dashboards to beta4 branch.
AsciiDoc
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
3f1612c2093a0512db098abc630311527f99a418
doc/todo.adoc
doc/todo.adoc
= To-Do List - mock_cone_detector creates infinite area and overflows h - (*DONE*) new waypoints shorter than old don't delete existing waypoints - adjust waypoints for start position and cone position - cone area goes down when very close to cone - (*DONE*) parameterize throttle and steering PWM values - touch sensor does not work - (*DONE*) cone detection in bright light does not work - GUIDED mode does not work - Encode PWM values or range set to use in the waypoints file - If waypoint encountered before cone is seen, rover goes into HOLD mode with no recovery. Needs to be fixed. == Possible To-Do - (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky, while WP_SPEED is not.) - Have a way of manually triggering parameter reload == Notes MAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the offset between the map origin and base_link (for /mavros/local_position/pose and /mavros/local_position/odom).
= To-Do List - mock_cone_detector creates infinite area and overflows h - (*DONE*) new waypoints shorter than old don't delete existing waypoints - adjust waypoints for start position and cone position - cone area goes down when very close to cone - (*DONE*) parameterize throttle and steering PWM values - (*DONE*) touch sensor does not work - (*DONE*) cone detection in bright light does not work - GUIDED mode does not work - (*DONE*) Encode PWM values or range set to use in the waypoints file - If waypoint encountered before cone is seen, rover goes into HOLD mode with no recovery. Needs to be fixed. == Possible To-Do - (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky, while WP_SPEED is not.) - Have a way of manually triggering parameter reload == Notes MAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the offset between the map origin and base_link (for /mavros/local_position/pose and /mavros/local_position/odom).
Update to-do document based on progress from yesterday
Update to-do document based on progress from yesterday
AsciiDoc
apache-2.0
ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan
94241317b410e07f9ef5c22bd4f865dd19eecc3c
content/events/2017/clojurebridge-sanfrancisco.adoc
content/events/2017/clojurebridge-sanfrancisco.adoc
= ClojureBridge San Francisco ClojureBridge San Francisco 2017-09-16 :jbake-type: event :jbake-edition: 2017 :jbake-link: http://www.clojurebridge.org/events/2017-09-16-san-francisco :jbake-location: San Francisco, CA :jbake-start: 2017-09-15 :jbake-end: 2017-09-16 ClojureBridge is a free 1-day workshop aimed at increasing the participation of women, trans-gener and non-binary gender individuals in the Clojure community. The workshop is intended for those new to programming as well as individuals with some programming experience who would like to explore programming using Clojure, a modern functional programming language. The workshop will introduce participants to fundamental programming concepts and approaches.
= ClojureBridge San Francisco ClojureBridge San Francisco 2017-09-15 :jbake-type: event :jbake-edition: 2017 :jbake-link: http://www.clojurebridge.org/events/2017-09-15-san-francisco :jbake-location: San Francisco, CA :jbake-start: 2017-09-15 :jbake-end: 2017-09-16 ClojureBridge is a free 1-day workshop aimed at increasing the participation of women, trans-gener and non-binary gender individuals in the Clojure community. The workshop is intended for those new to programming as well as individuals with some programming experience who would like to explore programming using Clojure, a modern functional programming language. The workshop will introduce participants to fundamental programming concepts and approaches.
Update clojurebridge sf 2017 url
Update clojurebridge sf 2017 url
AsciiDoc
epl-1.0
clojure/clojure-site
79837fbf84c5957061b2430848106832c45d998a
README.asciidoc
README.asciidoc
TinkerPop3 ========== image:https://raw.githubusercontent.com/tinkerpop/tinkerpop3/master/docs/static/images/tinkerpop3-splash.png[TinkerPop3] * Build Project: `mvn clean install` * Build AsciiDocs: `mvn process-resources -Dasciidoc` * Deploy AsciiDocs: `mvn deploy -Dasciidoc` * Deploy JavaDocs: `mvn deploy -Djavadocs` [source,bash] ---- $ bin/gremlin.sh \,,,/ (o o) -----oOOo-(3)-oOOo----- gremlin> ----
TinkerPop3 ========== image:https://raw.githubusercontent.com/tinkerpop/tinkerpop3/master/docs/static/images/tinkerpop3-splash.png[TinkerPop3] * Build Project: `mvn clean install` * Build AsciiDocs: `mvn process-resources -Dasciidoc` * Deploy AsciiDocs: `mvn deploy -Dasciidoc` * Deploy JavaDocs: `mvn deploy -Djavadoc-upload` [source,bash] ---- $ bin/gremlin.sh \,,,/ (o o) -----oOOo-(3)-oOOo----- gremlin> ----
Update readme for deploying javadoc.
Update readme for deploying javadoc.
AsciiDoc
apache-2.0
mpollmeier/tinkerpop3,RedSeal-co/incubator-tinkerpop,edgarRd/incubator-tinkerpop,gdelafosse/incubator-tinkerpop,apache/tinkerpop,robertdale/tinkerpop,RedSeal-co/incubator-tinkerpop,rmagen/incubator-tinkerpop,apache/tinkerpop,velo/incubator-tinkerpop,n-tran/incubator-tinkerpop,BrynCooke/incubator-tinkerpop,mike-tr-adamson/incubator-tinkerpop,apache/tinkerpop,samiunn/incubator-tinkerpop,mike-tr-adamson/incubator-tinkerpop,apache/tinkerpop,apache/tinkerpop,apache/tinkerpop,artem-aliev/tinkerpop,artem-aliev/tinkerpop,BrynCooke/incubator-tinkerpop,RussellSpitzer/incubator-tinkerpop,PommeVerte/incubator-tinkerpop,vtslab/incubator-tinkerpop,PommeVerte/incubator-tinkerpop,jorgebay/tinkerpop,BrynCooke/incubator-tinkerpop,velo/incubator-tinkerpop,apache/incubator-tinkerpop,mike-tr-adamson/incubator-tinkerpop,jorgebay/tinkerpop,robertdale/tinkerpop,Lab41/tinkerpop3,pluradj/incubator-tinkerpop,robertdale/tinkerpop,rmagen/incubator-tinkerpop,artem-aliev/tinkerpop,gdelafosse/incubator-tinkerpop,krlohnes/tinkerpop,artem-aliev/tinkerpop,vtslab/incubator-tinkerpop,velo/incubator-tinkerpop,krlohnes/tinkerpop,RedSeal-co/incubator-tinkerpop,RussellSpitzer/incubator-tinkerpop,dalaro/incubator-tinkerpop,apache/incubator-tinkerpop,krlohnes/tinkerpop,edgarRd/incubator-tinkerpop,PommeVerte/incubator-tinkerpop,pluradj/incubator-tinkerpop,apache/incubator-tinkerpop,newkek/incubator-tinkerpop,krlohnes/tinkerpop,Lab41/tinkerpop3,apache/tinkerpop,newkek/incubator-tinkerpop,n-tran/incubator-tinkerpop,newkek/incubator-tinkerpop,pluradj/incubator-tinkerpop,dalaro/incubator-tinkerpop,mpollmeier/tinkerpop3,jorgebay/tinkerpop,n-tran/incubator-tinkerpop,dalaro/incubator-tinkerpop,robertdale/tinkerpop,krlohnes/tinkerpop,robertdale/tinkerpop,edgarRd/incubator-tinkerpop,gdelafosse/incubator-tinkerpop,artem-aliev/tinkerpop,samiunn/incubator-tinkerpop,rmagen/incubator-tinkerpop,vtslab/incubator-tinkerpop,samiunn/incubator-tinkerpop,jorgebay/tinkerpop,RussellSpitzer/incubator-tinkerpop
e8e645e3cb5b18bc092763c17b949d741d82568f
docs/reference/indices/delete-index.asciidoc
docs/reference/indices/delete-index.asciidoc
[[indices-delete-index]] == Delete Index The delete index API allows to delete an existing index. [source,js] -------------------------------------------------- $ curl -XDELETE 'http://localhost:9200/twitter/' -------------------------------------------------- The above example deletes an index called `twitter`. Specifying an index, alias or wildcard expression is required. The delete index API can also be applied to more than one index, or on all indices (be careful!) by using `_all` or `*` as index. In order to disable allowing to delete indices via wildcards or `_all`, set `action.destructive_requires_name` setting in the config to `true`. This setting can also be changed via the cluster update settings api.
[[indices-delete-index]] == Delete Index The delete index API allows to delete an existing index. [source,js] -------------------------------------------------- $ curl -XDELETE 'http://localhost:9200/twitter/' -------------------------------------------------- The above example deletes an index called `twitter`. Specifying an index, alias or wildcard expression is required. The delete index API can also be applied to more than one index, by either using a comma separated list, or on all indices (be careful!) by using `_all` or `*` as index. In order to disable allowing to delete indices via wildcards or `_all`, set `action.destructive_requires_name` setting in the config to `true`. This setting can also be changed via the cluster update settings api.
Document index deletion using csv separated indices
Document index deletion using csv separated indices
AsciiDoc
apache-2.0
strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test,strapdata/elassandra-test
5242e04552fd46492cbdcf96a4b2e8f4302ec35a
README.adoc
README.adoc
= flexy-pool Author <[email protected]> v1.0.0, 2014-02-25 :toc: :imagesdir: images :homepage: http://vladmihalcea.com/ == Introduction The flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand. This is very handy since most connection pools offer a limited set of dynamic configuration strategies. == Features * extensive connection pool support ** http://docs.codehaus.org/display/BTM/Home[Bitronix Transaction Manager] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP2] ** http://www.mchange.com/projects/c3p0/[C3P0] ** http://jolbox.com/[BoneCP] ** http://brettwooldridge.github.io/HikariCP/[HikariCP] * statistics support ** source connection acquiring time histogram ** total connection acquiring time histogram ** retries attempts histogram ** maximum CP size histogram ** connection request count histogram ** connection lease time histogram == Documentation https://github.com/vladmihalcea/flexy-pool/wiki/Flexy-Pool-User-Guide[Flexy Pool User Guide] == 1.0 Release TODO list * explain jmx metrics and add real-life case study * Maven OSS release
= flexy-pool Author <[email protected]> v1.0.0, 2014-02-25 :homepage: http://vladmihalcea.com/ == Introduction The flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand. This is very handy since most connection pools offer a limited set of dynamic configuration strategies. == Features * extensive connection pool support ** http://docs.codehaus.org/display/BTM/Home[Bitronix Transaction Manager] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP2] ** http://www.mchange.com/projects/c3p0/[C3P0] ** http://jolbox.com/[BoneCP] ** http://brettwooldridge.github.io/HikariCP/[HikariCP] * statistics support ** source connection acquiring time histogram ** total connection acquiring time histogram ** retries attempts histogram ** maximum CP size histogram ** connection request count histogram ** connection lease time histogram == Documentation https://github.com/vladmihalcea/flexy-pool/wiki/Flexy-Pool-User-Guide[Flexy Pool User Guide] == 1.0 Release TODO list * explain jmx metrics and add real-life case study * Maven OSS release
Remove toc and image ref
Remove toc and image ref
AsciiDoc
apache-2.0
mosoft521/flexy-pool,wgpshashank/flexy-pool,vladmihalcea/flexy-pool
5680f9f6fc908a366a2a098052b4d6c7af27b4e4
README.adoc
README.adoc
= Eclipse Microprofile Metrics This specification aims at providing a unified way for Microprofile servers to export Monitoring data ("Telemetry") to management agents and also a unified Java API, that all (application) programmers can use to expose their telemetry data. For the specification see http:spec/metrics_spec.adoc[Metrics spec] For discussions visit the https://groups.google.com/forum/#!forum/microprofile[Microprofile Google group].
= Eclipse Microprofile Metrics This specification aims at providing a unified way for Microprofile servers to export Monitoring data ("Telemetry") to management agents and also a unified Java API, that all (application) programmers can use to expose their telemetry data. For the specification see link:spec/metrics_spec.adoc[Metrics spec] For discussions visit the https://groups.google.com/forum/#!forum/microprofile[Microprofile Google group].
Use correct syntax for link to spec.
Use correct syntax for link to spec. Signed-off-by: Heiko W. Rupp <[email protected]>
AsciiDoc
apache-2.0
raymondlam/microprofile-metrics,Channyboy/microprofile-metrics,Arjun-Sharma1/microprofile-metrics,Arjun-Sharma1/microprofile-metrics,Channyboy/microprofile-metrics,raymondlam/microprofile-metrics,pilhuhn/microprofile-metrics,pilhuhn/microprofile-metrics
1f0aac07bfde75e9eccbe6400de88fac96195218
modules/serverless-about-collecting-data.adoc
modules/serverless-about-collecting-data.adoc
// Module included in the following assemblies: // // * serverless/serverless-support.adoc [id="serverless-about-collecting-data_{context}"] = About collecting {ServerlessProductName} data You can use the `oc adm must-gather` CLI command to collect information about your cluster, including features and objects associated with {ServerlessProductName}. To collect {ServerlessProductName} data with `must-gather`, you must specify the {ServerlessProductName} image. .Procedure * Enter the command: + [source,terminal] ---- $ oc adm must-gather --image=registry.redhat.io/openshift-serverless-1/svls-must-gather-rhel8 ----
// Module included in the following assemblies: // // * serverless/serverless-support.adoc [id="serverless-about-collecting-data_{context}"] = About collecting {ServerlessProductName} data You can use the `oc adm must-gather` CLI command to collect information about your cluster, including features and objects associated with {ServerlessProductName}. To collect {ServerlessProductName} data with `must-gather`, you must specify the {ServerlessProductName} image and the image tag for your installed version of {ServerlessProductName}. .Procedure * Collect data by using the `oc adm must-gather` command: + [source,terminal] ---- $ oc adm must-gather --image=registry.redhat.io/openshift-serverless-1/svls-must-gather-rhel8:<image_version_tag> ---- + .Example command [source,terminal] ---- $ oc adm must-gather --image=registry.redhat.io/openshift-serverless-1/svls-must-gather-rhel8:1.14.0 ----
Add image tag to must-gather images
[srvls][SRVCOM-1290] Add image tag to must-gather images
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
ae00e6ec40e303f6e754a9cf4eb49d2b4738c3da
docs/home.adoc
docs/home.adoc
//// Accessible at: https://ecp-candle.github.io/Supervisor/home.html //// //// This prevents ^M from appearing in the output: //// :miscellaneous.newline: \n = CANDLE Supervisor Home Page This is the main home page about CANDLE Supervisor effort with links to workflows and other supporting information. == Key deadlines 1. May 15: End-to-end demo of hyperparameter harness == Swift installations * http://swift-lang.github.io/swift-t/sites.html#_jlse_knl[JLSE KNL] * http://swift-lang.github.io/swift-t/sites.html#_cori[Cori] * http://swift-lang.github.io/swift-t/sites.html#cooley_candle
//// Accessible at: https://ecp-candle.github.io/Supervisor/home.html You can compile this locally with: $ ./adoc.sh README.adoc //// //// This prevents ^M from appearing in the output: //// :miscellaneous.newline: \n = CANDLE Supervisor Home Page This is the main home page about CANDLE Supervisor effort with links to workflows and other supporting information. == Key deadlines 1. May 15: End-to-end demo of hyperparameter harness == Swift installations * http://swift-lang.github.io/swift-t/sites.html#_cori[Cori] + This uses the system-installed Python with ML libs at: + +/usr/common/software/python/2.7-anaconda/envs/deeplearning+ * http://swift-lang.github.io/swift-t/sites.html#cooley_candle[Cooley] + This uses the system-installed Python with ML libs at: + +/soft/analytics/conda/env/Candle_ML+ * http://swift-lang.github.io/swift-t/sites.html#_jlse_knl[JLSE KNL] + This does not yet have Python. * JLSE Prasanna + This uses a VirtualEnv Python at +/home/pbalapra/.virtualenvs+ ** +~wozniak/Public/sfw/icc/swift-t-pb/stc/bin+
Document more Swift/Python installations for CANDLE
Document more Swift/Python installations for CANDLE
AsciiDoc
mit
ECP-CANDLE/Supervisor,ECP-CANDLE/Supervisor,ECP-CANDLE/Supervisor,ECP-CANDLE/Supervisor,ECP-CANDLE/Supervisor,ECP-CANDLE/Supervisor
b01ced188bb760346c31f65499cb2e408dd323a1
README.adoc
README.adoc
# Janitor image:https://travis-ci.org/techdev-solutions/janitor.svg?branch=master["Build Status",link="https://travis-ci.org/techdev-solutions/janitor"] An application to perform cleanup work using the https://getpocket.com[Pocket API]. Review your existing items via the web interface and have Janitor archive old items once per day. ## API Documentation The documentation for the Kotlin API bindings can be found https://techdev-solutions.github.io/janitor/pocket-api/[here]. ## Tutorial (German) Kotlin: Ein Tutorial fΓΌr Einsteiger @ JAXenter:: * https://jaxenter.de/kotlin-tutorial-48156[Part 1] * https://jaxenter.de/kotlin-ein-tutorial-fuer-einsteiger-teil-2-48587[Part 2] ## Screenshots ### Item Overview image:images/items.png?raw=true[Item Overiew] ### Error View image:images/error.png?raw=true[Error View]
# Janitor image:https://travis-ci.org/techdev-solutions/janitor.svg?branch=master["Build Status",link="https://travis-ci.org/techdev-solutions/janitor"] An application to perform cleanup work using the https://getpocket.com[Pocket API]. Review your existing items via the web interface and have Janitor archive old items once per day. ## API Documentation The documentation for the Kotlin API bindings can be found https://techdev-solutions.github.io/janitor/pocket-api/[here]. ## Tutorial (German) Kotlin: Ein Tutorial fΓΌr Einsteiger @ JAXenter:: * https://jaxenter.de/kotlin-tutorial-48156[Part 1] * https://jaxenter.de/kotlin-ein-tutorial-fuer-einsteiger-teil-2-48587[Part 2] * https://jaxenter.de/kotlin-ein-tutorial-fuer-einsteiger-teil-3-48967[Part 3] ## Screenshots ### Item Overview image:images/items.png?raw=true[Item Overiew] ### Error View image:images/error.png?raw=true[Error View]
Add link to 3rd part of JAXenter tutorial
Add link to 3rd part of JAXenter tutorial
AsciiDoc
apache-2.0
techdev-solutions/janitor,techdev-solutions/janitor
c1c1ac3a76de6103e176533aaab9077410995d2b
README.adoc
README.adoc
James Glasbrenner's dotfiles ============================ James Glasbrenner <[email protected]> July 27, 2017 My dotfiles repo. License ------- All content is licensed under the terms of link:LICENSE[The Unlicense License].
James Glasbrenner's dotfiles ============================ James Glasbrenner <[email protected]> July 27, 2017 My dotfiles repo. Bootstrapping ------------- Stow 2.3.0 is included in this repo for bootstrapping purposes. To stow stow after cloning this repository to `$HOME/.dotfiles`, run .bash ---------------------------------------------- PERL5LIB=$HOME/.dotfiles/stow/stow/lib/perl5 \ $HOME/.dotfiles/stow/stow/bin/stow \ -d $HOME/.dotfiles/stow \ -t /home/glasbren/.local \ stow ---------------------------------------------- License ------- All content is licensed under the terms of link:LICENSE[The Unlicense License].
Add bootstrapping instructions for how to stow stow
Add bootstrapping instructions for how to stow stow
AsciiDoc
unlicense
jkglasbrenner/dotfiles,jkglasbrenner/dotfiles,jkglasbrenner/dotfiles,jkglasbrenner/dotfiles,jkglasbrenner/dotfiles,jkglasbrenner/dotfiles
741eba7aa73b580c9fc72c9b168e01755eaf1fa6
README.adoc
README.adoc
== asciidoctor-fopub-embed-svg-example An example for embedding SVG images in an asciidoctor document. === Setup ---- bundle install ---- === How to make the target pdf file Running the command below make the target pdf file named "class_diagram.pdf" out of "class_diagram.adoc" ---- bundle exec rake ---- === Watch *.adoc files Running the command below, rake watches "\*.adoc" files and build "\*.adoc" files whenever they are modified. ---- bundle exec rake watch ----
== asciidoctor-fopub-embed-svg-example An example for embedding SVG images in an asciidoctor document. === Setup ---- bundle install ---- === How to make the target pdf file Running the command below make the target pdf file named "class_diagram.pdf" out of "class_diagram.adoc" ---- bundle exec rake ---- === Watch *.adoc files Running the command below, rake watches "\*.adoc" files and build "*.adoc" files whenever they are modified. ---- bundle exec rake watch ----
Remove the backslash for the second asterisk
Remove the backslash for the second asterisk
AsciiDoc
mit
hnakamur/asciidoctor-fopub-embed-svg-example
668d9b91d83e98cf55cc02517d109a944403842c
cip/README.adoc
cip/README.adoc
= Cypher Improvement Proposals This is the home for all Cypher Improvement Proposal (CIP) documents. CIPs are documents that outline the syntax and semantics of Cypher. == The CIP Lifecycle CIPs normally pass through a number of phases before and after ending up in this repository. === Accepted It is open to anyone to author and submit a CIP as a pull request to this repository. The CIP should then be suggested for addition into the `accepted` directory. It is then the task of the CLG to discuss, give feedback, and eventually (potentially) accept the CIP, at which point the pull request will be merged. === Testable A CIP enters this phase when it has received a sufficient set of TCK scenarios that outline the use of its suggested features. === Implemented A CIP enters this phase when the reference implementation supports its suggested features. This is verified by passing all the TCK scenarios that had been outlined for the CIP.
= Cypher Improvement Proposals This is the home for all Cypher Improvement Proposal (CIP) documents. CIPs are documents that outline the syntax and semantics of Cypher. == The CIP Lifecycle CIPs normally pass through a number of phases before and after ending up in this repository. === Accepted It is open to anyone to author and submit a CIP as a pull request to this repository. The CIP should then be suggested for addition into the `accepted` directory. It is then the task of the CLG to discuss, give feedback, and eventually (potentially) accept the CIP, at which point the pull request will be merged. === Testable A CIP enters this phase when it has received a sufficient set of TCK scenarios that outline the use of its suggested features.
Remove mention of reference implementation
Remove mention of reference implementation
AsciiDoc
apache-2.0
opencypher/openCypher,opencypher/openCypher,opencypher/openCypher,opencypher/openCypher
a2c93304f835f9939e777e0ce8e177164bba4ca7
docs/community/misc.asciidoc
docs/community/misc.asciidoc
[[misc]] == Misc * https://github.com/elasticsearch/puppet-elasticsearch[Puppet]: Elasticsearch puppet module. * http://github.com/elasticsearch/cookbook-elasticsearch[Chef]: Chef cookbook for Elasticsearch * https://github.com/medcl/salt-elasticsearch[SaltStack]: SaltStack Module for Elasticsearch * http://www.github.com/neogenix/daikon[daikon]: Daikon Elasticsearch CLI * https://github.com/Aconex/scrutineer[Scrutineer]: A high performance consistency checker to compare what you've indexed with your source of truth content (e.g. DB)
[[misc]] == Misc * https://github.com/elasticsearch/puppet-elasticsearch[Puppet]: Elasticsearch puppet module. * http://github.com/elasticsearch/cookbook-elasticsearch[Chef]: Chef cookbook for Elasticsearch * https://github.com/medcl/salt-elasticsearch[SaltStack]: SaltStack Module for Elasticsearch * http://www.github.com/neogenix/daikon[daikon]: Daikon Elasticsearch CLI * https://github.com/Aconex/scrutineer[Scrutineer]: A high performance consistency checker to compare what you've indexed with your source of truth content (e.g. DB) * https://www.wireshark.org/[Wireshark]: Protocol dissection for Zen discovery, HTTP and the binary protocol
Add Wireshark protocol dissection support
Docs: Add Wireshark protocol dissection support Hi guys, I've finished my Wireshark dissector for Elasticsearch. It is now merged into their master. See https://code.wireshark.org/review/#/c/4948/ Closes #8495
AsciiDoc
apache-2.0
HarishAtGitHub/elasticsearch,amit-shar/elasticsearch,amit-shar/elasticsearch,lchennup/elasticsearch,LewayneNaidoo/elasticsearch,ricardocerq/elasticsearch,wimvds/elasticsearch,glefloch/elasticsearch,Collaborne/elasticsearch,F0lha/elasticsearch,wbowling/elasticsearch,rmuir/elasticsearch,mute/elasticsearch,Microsoft/elasticsearch,huanzhong/elasticsearch,overcome/elasticsearch,kaneshin/elasticsearch,mjhennig/elasticsearch,hafkensite/elasticsearch,mrorii/elasticsearch,LewayneNaidoo/elasticsearch,masaruh/elasticsearch,AndreKR/elasticsearch,rajanm/elasticsearch,kcompher/elasticsearch,rajanm/elasticsearch,mgalushka/elasticsearch,jsgao0/elasticsearch,gmarz/elasticsearch,ckclark/elasticsearch,heng4fun/elasticsearch,amaliujia/elasticsearch,ckclark/elasticsearch,pozhidaevak/elasticsearch,dongjoon-hyun/elasticsearch,Ansh90/elasticsearch,rhoml/elasticsearch,skearns64/elasticsearch,linglaiyao1314/elasticsearch,tcucchietti/elasticsearch,apepper/elasticsearch,myelin/elasticsearch,GlenRSmith/elasticsearch,knight1128/elasticsearch,himanshuag/elasticsearch,mikemccand/elasticsearch,alexbrasetvik/elasticsearch,StefanGor/elasticsearch,IanvsPoplicola/elasticsearch,wimvds/elasticsearch,Microsoft/elasticsearch,JervyShi/elasticsearch,kaneshin/elasticsearch,MichaelLiZhou/elasticsearch,elasticdog/elasticsearch,sdauletau/elasticsearch,rento19962/elasticsearch,micpalmia/elasticsearch,Asimov4/elasticsearch,kcompher/elasticsearch,apepper/elasticsearch,easonC/elasticsearch,kubum/elasticsearch,sc0ttkclark/elasticsearch,luiseduardohdbackup/elasticsearch,cnfire/elasticsearch-1,huanzhong/elasticsearch,elancom/elasticsearch,lchennup/elasticsearch,sc0ttkclark/elasticsearch,Ansh90/elasticsearch,sc0ttkclark/elasticsearch,petmit/elasticsearch,jsgao0/elasticsearch,mjason3/elasticsearch,thecocce/elasticsearch,micpalmia/elasticsearch,sposam/elasticsearch,18098924759/elasticsearch,lmtwga/elasticsearch,xingguang2013/elasticsearch,vrkansagara/elasticsearch,Rygbee/elasticsearch,springning/elasticsearch,gfyoung/elasticsearch,yynil/elasticsearch,knight1128/elasticsearch,EasonYi/elasticsearch,Liziyao/elasticsearch,sdauletau/elasticsearch,MjAbuz/elasticsearch,fred84/elasticsearch,truemped/elasticsearch,vingupta3/elasticsearch,martinstuga/elasticsearch,vvcephei/elasticsearch,strapdata/elassandra,Clairebi/ElasticsearchClone,xuzha/elasticsearch,amit-shar/elasticsearch,skearns64/elasticsearch,HonzaKral/elasticsearch,strapdata/elassandra-test,pritishppai/elasticsearch,slavau/elasticsearch,infusionsoft/elasticsearch,anti-social/elasticsearch,franklanganke/elasticsearch,himanshuag/elasticsearch,anti-social/elasticsearch,schonfeld/elasticsearch,hanswang/elasticsearch,ivansun1010/elasticsearch,btiernay/elasticsearch,PhaedrusTheGreek/elasticsearch,Chhunlong/elasticsearch,infusionsoft/elasticsearch,sposam/elasticsearch,dpursehouse/elasticsearch,tkssharma/elasticsearch,kunallimaye/elasticsearch,koxa29/elasticsearch,huanzhong/elasticsearch,amaliujia/elasticsearch,VukDukic/elasticsearch,episerver/elasticsearch,vietlq/elasticsearch,wbowling/elasticsearch,iantruslove/elasticsearch,JSCooke/elasticsearch,rhoml/elasticsearch,golubev/elasticsearch,onegambler/elasticsearch,Kakakakakku/elasticsearch,alexkuk/elasticsearch,ouyangkongtong/elasticsearch,bawse/elasticsearch,winstonewert/elasticsearch,ouyangkongtong/elasticsearch,iacdingping/elasticsearch,caengcjd/elasticsearch,acchen97/elasticsearch,ESamir/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,AshishThakur/elasticsearch,TonyChai24/ESSource,henakamaMSFT/elasticsearch,socialrank/elasticsearch,chrismwendt/elasticsearch,camilojd/elasticsearch,kkirsche/elasticsearch,sreeramjayan/elasticsearch,YosuaMichael/elasticsearch,adrianbk/elasticsearch,alexshadow007/elasticsearch,MetSystem/elasticsearch,YosuaMichael/elasticsearch,micpalmia/elasticsearch,jimhooker2002/elasticsearch,MetSystem/elasticsearch,mmaracic/elasticsearch,bestwpw/elasticsearch,petmit/elasticsearch,IanvsPoplicola/elasticsearch,Shekharrajak/elasticsearch,naveenhooda2000/elasticsearch,VukDukic/elasticsearch,kunallimaye/elasticsearch,huypx1292/elasticsearch,snikch/elasticsearch,markwalkom/elasticsearch,clintongormley/elasticsearch,HarishAtGitHub/elasticsearch,kingaj/elasticsearch,ThiagoGarciaAlves/elasticsearch,iantruslove/elasticsearch,jw0201/elastic,sarwarbhuiyan/elasticsearch,GlenRSmith/elasticsearch,vroyer/elasticassandra,StefanGor/elasticsearch,IanvsPoplicola/elasticsearch,elancom/elasticsearch,kubum/elasticsearch,EasonYi/elasticsearch,petabytedata/elasticsearch,scorpionvicky/elasticsearch,tsohil/elasticsearch,abibell/elasticsearch,fekaputra/elasticsearch,alexshadow007/elasticsearch,ulkas/elasticsearch,sjohnr/elasticsearch,sc0ttkclark/elasticsearch,koxa29/elasticsearch,sdauletau/elasticsearch,MjAbuz/elasticsearch,opendatasoft/elasticsearch,kkirsche/elasticsearch,abibell/elasticsearch,rlugojr/elasticsearch,Brijeshrpatel9/elasticsearch,mjhennig/elasticsearch,anti-social/elasticsearch,iamjakob/elasticsearch,glefloch/elasticsearch,drewr/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,martinstuga/elasticsearch,sc0ttkclark/elasticsearch,huypx1292/elasticsearch,wbowling/elasticsearch,lmtwga/elasticsearch,YosuaMichael/elasticsearch,vroyer/elassandra,mohit/elasticsearch,strapdata/elassandra5-rc,socialrank/elasticsearch,strapdata/elassandra,djschny/elasticsearch,Clairebi/ElasticsearchClone,Shekharrajak/elasticsearch,ricardocerq/elasticsearch,khiraiwa/elasticsearch,jchampion/elasticsearch,snikch/elasticsearch,achow/elasticsearch,iacdingping/elasticsearch,bestwpw/elasticsearch,fforbeck/elasticsearch,elancom/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,lzo/elasticsearch-1,mm0/elasticsearch,Uiho/elasticsearch,lmtwga/elasticsearch,mkis-/elasticsearch,HonzaKral/elasticsearch,humandb/elasticsearch,yanjunh/elasticsearch,girirajsharma/elasticsearch,geidies/elasticsearch,fekaputra/elasticsearch,khiraiwa/elasticsearch,tkssharma/elasticsearch,janmejay/elasticsearch,jimczi/elasticsearch,mikemccand/elasticsearch,tahaemin/elasticsearch,trangvh/elasticsearch,EasonYi/elasticsearch,xuzha/elasticsearch,xpandan/elasticsearch,Collaborne/elasticsearch,cwurm/elasticsearch,tsohil/elasticsearch,Chhunlong/elasticsearch,dantuffery/elasticsearch,heng4fun/elasticsearch,rento19962/elasticsearch,HarishAtGitHub/elasticsearch,NBSW/elasticsearch,nezirus/elasticsearch,VukDukic/elasticsearch,girirajsharma/elasticsearch,nilabhsagar/elasticsearch,ImpressTV/elasticsearch,szroland/elasticsearch,vvcephei/elasticsearch,trangvh/elasticsearch,KimTaehee/elasticsearch,andrejserafim/elasticsearch,jimhooker2002/elasticsearch,fooljohnny/elasticsearch,Shepard1212/elasticsearch,codebunt/elasticsearch,njlawton/elasticsearch,sscarduzio/elasticsearch,iamjakob/elasticsearch,gfyoung/elasticsearch,Stacey-Gammon/elasticsearch,awislowski/elasticsearch,sreeramjayan/elasticsearch,spiegela/elasticsearch,18098924759/elasticsearch,kalimatas/elasticsearch,truemped/elasticsearch,golubev/elasticsearch,strapdata/elassandra,dataduke/elasticsearch,yuy168/elasticsearch,Rygbee/elasticsearch,xingguang2013/elasticsearch,Widen/elasticsearch,linglaiyao1314/elasticsearch,linglaiyao1314/elasticsearch,mortonsykes/elasticsearch,karthikjaps/elasticsearch,wenpos/elasticsearch,kunallimaye/elasticsearch,wuranbo/elasticsearch,ydsakyclguozi/elasticsearch,MichaelLiZhou/elasticsearch,franklanganke/elasticsearch,masaruh/elasticsearch,socialrank/elasticsearch,tcucchietti/elasticsearch,springning/elasticsearch,feiqitian/elasticsearch,huanzhong/elasticsearch,tebriel/elasticsearch,YosuaMichael/elasticsearch,kalburgimanjunath/elasticsearch,hanswang/elasticsearch,wimvds/elasticsearch,HarishAtGitHub/elasticsearch,andrestc/elasticsearch,jprante/elasticsearch,knight1128/elasticsearch,likaiwalkman/elasticsearch,jsgao0/elasticsearch,hanswang/elasticsearch,MichaelLiZhou/elasticsearch,kaneshin/elasticsearch,masterweb121/elasticsearch,wenpos/elasticsearch,karthikjaps/elasticsearch,masaruh/elasticsearch,amaliujia/elasticsearch,yynil/elasticsearch,spiegela/elasticsearch,feiqitian/elasticsearch,AshishThakur/elasticsearch,Fsero/elasticsearch,amit-shar/elasticsearch,xingguang2013/elasticsearch,knight1128/elasticsearch,aglne/elasticsearch,Brijeshrpatel9/elasticsearch,petabytedata/elasticsearch,himanshuag/elasticsearch,Ansh90/elasticsearch,jprante/elasticsearch,Stacey-Gammon/elasticsearch,Collaborne/elasticsearch,kcompher/elasticsearch,brandonkearby/elasticsearch,ImpressTV/elasticsearch,codebunt/elasticsearch,tsohil/elasticsearch,KimTaehee/elasticsearch,wenpos/elasticsearch,socialrank/elasticsearch,andrestc/elasticsearch,mute/elasticsearch,rento19962/elasticsearch,ulkas/elasticsearch,jpountz/elasticsearch,AshishThakur/elasticsearch,opendatasoft/elasticsearch,vroyer/elassandra,shreejay/elasticsearch,Liziyao/elasticsearch,sauravmondallive/elasticsearch,xingguang2013/elasticsearch,koxa29/elasticsearch,queirozfcom/elasticsearch,wimvds/elasticsearch,jpountz/elasticsearch,kalburgimanjunath/elasticsearch,jeteve/elasticsearch,Liziyao/elasticsearch,mohit/elasticsearch,knight1128/elasticsearch,myelin/elasticsearch,xingguang2013/elasticsearch,amaliujia/elasticsearch,nellicus/elasticsearch,djschny/elasticsearch,lightslife/elasticsearch,strapdata/elassandra,combinatorist/elasticsearch,LeoYao/elasticsearch,schonfeld/elasticsearch,qwerty4030/elasticsearch,LeoYao/elasticsearch,beiske/elasticsearch,queirozfcom/elasticsearch,palecur/elasticsearch,Clairebi/ElasticsearchClone,milodky/elasticsearch,beiske/elasticsearch,Charlesdong/elasticsearch,coding0011/elasticsearch,PhaedrusTheGreek/elasticsearch,nomoa/elasticsearch,lightslife/elasticsearch,phani546/elasticsearch,nazarewk/elasticsearch,clintongormley/elasticsearch,naveenhooda2000/elasticsearch,hanswang/elasticsearch,Siddartha07/elasticsearch,slavau/elasticsearch,ricardocerq/elasticsearch,mjason3/elasticsearch,wittyameta/elasticsearch,dylan8902/elasticsearch,vrkansagara/elasticsearch,artnowo/elasticsearch,awislowski/elasticsearch,KimTaehee/elasticsearch,mrorii/elasticsearch,iacdingping/elasticsearch,dylan8902/elasticsearch,Liziyao/elasticsearch,kalburgimanjunath/elasticsearch,Brijeshrpatel9/elasticsearch,vingupta3/elasticsearch,Siddartha07/elasticsearch,petabytedata/elasticsearch,kevinkluge/elasticsearch,vvcephei/elasticsearch,liweinan0423/elasticsearch,skearns64/elasticsearch,codebunt/elasticsearch,fernandozhu/elasticsearch,fooljohnny/elasticsearch,beiske/elasticsearch,wbowling/elasticsearch,winstonewert/elasticsearch,maddin2016/elasticsearch,elancom/elasticsearch,martinstuga/elasticsearch,tahaemin/elasticsearch,queirozfcom/elasticsearch,sauravmondallive/elasticsearch,andrestc/elasticsearch,mcku/elasticsearch,snikch/elasticsearch,tahaemin/elasticsearch,nazarewk/elasticsearch,girirajsharma/elasticsearch,luiseduardohdbackup/elasticsearch,martinstuga/elasticsearch,btiernay/elasticsearch,kenshin233/elasticsearch,Uiho/elasticsearch,abibell/elasticsearch,nomoa/elasticsearch,kenshin233/elasticsearch,bestwpw/elasticsearch,mm0/elasticsearch,kkirsche/elasticsearch,StefanGor/elasticsearch,MetSystem/elasticsearch,kalburgimanjunath/elasticsearch,kaneshin/elasticsearch,javachengwc/elasticsearch,fernandozhu/elasticsearch,wayeast/elasticsearch,onegambler/elasticsearch,dantuffery/elasticsearch,sneivandt/elasticsearch,qwerty4030/elasticsearch,Chhunlong/elasticsearch,markwalkom/elasticsearch,uschindler/elasticsearch,masterweb121/elasticsearch,alexkuk/elasticsearch,MetSystem/elasticsearch,NBSW/elasticsearch,janmejay/elasticsearch,umeshdangat/elasticsearch,Uiho/elasticsearch,vrkansagara/elasticsearch,NBSW/elasticsearch,adrianbk/elasticsearch,lzo/elasticsearch-1,rlugojr/elasticsearch,ydsakyclguozi/elasticsearch,episerver/elasticsearch,Helen-Zhao/elasticsearch,iacdingping/elasticsearch,rmuir/elasticsearch,phani546/elasticsearch,PhaedrusTheGreek/elasticsearch,loconsolutions/elasticsearch,Chhunlong/elasticsearch,Stacey-Gammon/elasticsearch,strapdata/elassandra-test,andrejserafim/elasticsearch,schonfeld/elasticsearch,Clairebi/ElasticsearchClone,Clairebi/ElasticsearchClone,naveenhooda2000/elasticsearch,rento19962/elasticsearch,cnfire/elasticsearch-1,dataduke/elasticsearch,Liziyao/elasticsearch,nrkkalyan/elasticsearch,iamjakob/elasticsearch,MaineC/elasticsearch,zhiqinghuang/elasticsearch,Asimov4/elasticsearch,JervyShi/elasticsearch,fekaputra/elasticsearch,kunallimaye/elasticsearch,vietlq/elasticsearch,geidies/elasticsearch,s1monw/elasticsearch,hydro2k/elasticsearch,rlugojr/elasticsearch,JackyMai/elasticsearch,kubum/elasticsearch,petabytedata/elasticsearch,mbrukman/elasticsearch,LewayneNaidoo/elasticsearch,episerver/elasticsearch,dpursehouse/elasticsearch,jw0201/elastic,rmuir/elasticsearch,Microsoft/elasticsearch,MjAbuz/elasticsearch,feiqitian/elasticsearch,weipinghe/elasticsearch,jimczi/elasticsearch,clintongormley/elasticsearch,koxa29/elasticsearch,ESamir/elasticsearch,jeteve/elasticsearch,glefloch/elasticsearch,mmaracic/elasticsearch,jaynblue/elasticsearch,strapdata/elassandra5-rc,kaneshin/elasticsearch,geidies/elasticsearch,xuzha/elasticsearch,drewr/elasticsearch,ThiagoGarciaAlves/elasticsearch,jbertouch/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,liweinan0423/elasticsearch,glefloch/elasticsearch,jango2015/elasticsearch,vingupta3/elasticsearch,ESamir/elasticsearch,dantuffery/elasticsearch,nrkkalyan/elasticsearch,xingguang2013/elasticsearch,yynil/elasticsearch,SergVro/elasticsearch,sneivandt/elasticsearch,MaineC/elasticsearch,JSCooke/elasticsearch,obourgain/elasticsearch,Widen/elasticsearch,onegambler/elasticsearch,tahaemin/elasticsearch,mrorii/elasticsearch,milodky/elasticsearch,chirilo/elasticsearch,hirdesh2008/elasticsearch,golubev/elasticsearch,himanshuag/elasticsearch,YosuaMichael/elasticsearch,maddin2016/elasticsearch,dataduke/elasticsearch,anti-social/elasticsearch,hechunwen/elasticsearch,yynil/elasticsearch,tcucchietti/elasticsearch,wimvds/elasticsearch,markharwood/elasticsearch,MichaelLiZhou/elasticsearch,abibell/elasticsearch,TonyChai24/ESSource,sc0ttkclark/elasticsearch,jimhooker2002/elasticsearch,a2lin/elasticsearch,lydonchandra/elasticsearch,henakamaMSFT/elasticsearch,cnfire/elasticsearch-1,markharwood/elasticsearch,drewr/elasticsearch,jsgao0/elasticsearch,humandb/elasticsearch,StefanGor/elasticsearch,mbrukman/elasticsearch,fekaputra/elasticsearch,fooljohnny/elasticsearch,MetSystem/elasticsearch,myelin/elasticsearch,a2lin/elasticsearch,hanswang/elasticsearch,i-am-Nathan/elasticsearch,strapdata/elassandra-test,wangyuxue/elasticsearch,clintongormley/elasticsearch,vietlq/elasticsearch,queirozfcom/elasticsearch,mjason3/elasticsearch,kingaj/elasticsearch,uschindler/elasticsearch,kingaj/elasticsearch,fred84/elasticsearch,sreeramjayan/elasticsearch,wangyuxue/elasticsearch,socialrank/elasticsearch,kimimj/elasticsearch,vingupta3/elasticsearch,davidvgalbraith/elasticsearch,tkssharma/elasticsearch,Fsero/elasticsearch,easonC/elasticsearch,tebriel/elasticsearch,chrismwendt/elasticsearch,luiseduardohdbackup/elasticsearch,markllama/elasticsearch,AndreKR/elasticsearch,mapr/elasticsearch,loconsolutions/elasticsearch,jw0201/elastic,PhaedrusTheGreek/elasticsearch,sauravmondallive/elasticsearch,zhiqinghuang/elasticsearch,TonyChai24/ESSource,TonyChai24/ESSource,maddin2016/elasticsearch,jimhooker2002/elasticsearch,naveenhooda2000/elasticsearch,heng4fun/elasticsearch,ivansun1010/elasticsearch,obourgain/elasticsearch,fernandozhu/elasticsearch,mgalushka/elasticsearch,brandonkearby/elasticsearch,Charlesdong/elasticsearch,F0lha/elasticsearch,yynil/elasticsearch,jimczi/elasticsearch,Brijeshrpatel9/elasticsearch,scottsom/elasticsearch,abibell/elasticsearch,mcku/elasticsearch,mjason3/elasticsearch,btiernay/elasticsearch,scottsom/elasticsearch,huypx1292/elasticsearch,milodky/elasticsearch,avikurapati/elasticsearch,gingerwizard/elasticsearch,vietlq/elasticsearch,mortonsykes/elasticsearch,andrejserafim/elasticsearch,markllama/elasticsearch,gmarz/elasticsearch,rhoml/elasticsearch,gfyoung/elasticsearch,Uiho/elasticsearch,camilojd/elasticsearch,jbertouch/elasticsearch,dpursehouse/elasticsearch,alexbrasetvik/elasticsearch,jimczi/elasticsearch,hydro2k/elasticsearch,overcome/elasticsearch,ImpressTV/elasticsearch,Charlesdong/elasticsearch,NBSW/elasticsearch,nellicus/elasticsearch,adrianbk/elasticsearch,kevinkluge/elasticsearch,ckclark/elasticsearch,Widen/elasticsearch,smflorentino/elasticsearch,micpalmia/elasticsearch,AleksKochev/elasticsearch,gingerwizard/elasticsearch,i-am-Nathan/elasticsearch,KimTaehee/elasticsearch,rhoml/elasticsearch,gfyoung/elasticsearch,ulkas/elasticsearch,springning/elasticsearch,pranavraman/elasticsearch,awislowski/elasticsearch,C-Bish/elasticsearch,i-am-Nathan/elasticsearch,hydro2k/elasticsearch,yongminxia/elasticsearch,YosuaMichael/elasticsearch,easonC/elasticsearch,robin13/elasticsearch,opendatasoft/elasticsearch,18098924759/elasticsearch,mute/elasticsearch,kunallimaye/elasticsearch,tsohil/elasticsearch,ThiagoGarciaAlves/elasticsearch,likaiwalkman/elasticsearch,AleksKochev/elasticsearch,wuranbo/elasticsearch,Shekharrajak/elasticsearch,coding0011/elasticsearch,Charlesdong/elasticsearch,javachengwc/elasticsearch,iacdingping/elasticsearch,markharwood/elasticsearch,Charlesdong/elasticsearch,strapdata/elassandra5-rc,markllama/elasticsearch,F0lha/elasticsearch,heng4fun/elasticsearch,sposam/elasticsearch,caengcjd/elasticsearch,EasonYi/elasticsearch,EasonYi/elasticsearch,pranavraman/elasticsearch,smflorentino/elasticsearch,acchen97/elasticsearch,nezirus/elasticsearch,fred84/elasticsearch,djschny/elasticsearch,AshishThakur/elasticsearch,nknize/elasticsearch,janmejay/elasticsearch,kalimatas/elasticsearch,vietlq/elasticsearch,davidvgalbraith/elasticsearch,GlenRSmith/elasticsearch,mohit/elasticsearch,djschny/elasticsearch,Rygbee/elasticsearch,mortonsykes/elasticsearch,bestwpw/elasticsearch,bestwpw/elasticsearch,PhaedrusTheGreek/elasticsearch,lightslife/elasticsearch,artnowo/elasticsearch,iantruslove/elasticsearch,wittyameta/elasticsearch,skearns64/elasticsearch,rajanm/elasticsearch,masaruh/elasticsearch,zhiqinghuang/elasticsearch,hirdesh2008/elasticsearch,Flipkart/elasticsearch,anti-social/elasticsearch,rlugojr/elasticsearch,winstonewert/elasticsearch,njlawton/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,janmejay/elasticsearch,franklanganke/elasticsearch,dongjoon-hyun/elasticsearch,mbrukman/elasticsearch,artnowo/elasticsearch,davidvgalbraith/elasticsearch,lydonchandra/elasticsearch,easonC/elasticsearch,dpursehouse/elasticsearch,springning/elasticsearch,Ansh90/elasticsearch,umeshdangat/elasticsearch,yuy168/elasticsearch,sarwarbhuiyan/elasticsearch,iamjakob/elasticsearch,s1monw/elasticsearch,Shekharrajak/elasticsearch,myelin/elasticsearch,Shekharrajak/elasticsearch,likaiwalkman/elasticsearch,Flipkart/elasticsearch,Fsero/elasticsearch,wbowling/elasticsearch,njlawton/elasticsearch,kkirsche/elasticsearch,yongminxia/elasticsearch,ydsakyclguozi/elasticsearch,drewr/elasticsearch,jeteve/elasticsearch,geidies/elasticsearch,petabytedata/elasticsearch,adrianbk/elasticsearch,mnylen/elasticsearch,acchen97/elasticsearch,socialrank/elasticsearch,weipinghe/elasticsearch,jprante/elasticsearch,ThalaivaStars/OrgRepo1,pritishppai/elasticsearch,masaruh/elasticsearch,qwerty4030/elasticsearch,hechunwen/elasticsearch,bawse/elasticsearch,truemped/elasticsearch,gingerwizard/elasticsearch,tebriel/elasticsearch,hafkensite/elasticsearch,mgalushka/elasticsearch,ThiagoGarciaAlves/elasticsearch,MisterAndersen/elasticsearch,jango2015/elasticsearch,masterweb121/elasticsearch,lmtwga/elasticsearch,Uiho/elasticsearch,masterweb121/elasticsearch,nknize/elasticsearch,amit-shar/elasticsearch,snikch/elasticsearch,gingerwizard/elasticsearch,likaiwalkman/elasticsearch,scottsom/elasticsearch,onegambler/elasticsearch,mnylen/elasticsearch,aglne/elasticsearch,yuy168/elasticsearch,kenshin233/elasticsearch,btiernay/elasticsearch,zkidkid/elasticsearch,chirilo/elasticsearch,pranavraman/elasticsearch,feiqitian/elasticsearch,MjAbuz/elasticsearch,beiske/elasticsearch,Shekharrajak/elasticsearch,ImpressTV/elasticsearch,easonC/elasticsearch,sscarduzio/elasticsearch,areek/elasticsearch,MisterAndersen/elasticsearch,rento19962/elasticsearch,strapdata/elassandra5-rc,cnfire/elasticsearch-1,nellicus/elasticsearch,Flipkart/elasticsearch,apepper/elasticsearch,alexbrasetvik/elasticsearch,rmuir/elasticsearch,acchen97/elasticsearch,kimimj/elasticsearch,kubum/elasticsearch,dongjoon-hyun/elasticsearch,18098924759/elasticsearch,kenshin233/elasticsearch,avikurapati/elasticsearch,bawse/elasticsearch,sarwarbhuiyan/elasticsearch,robin13/elasticsearch,khiraiwa/elasticsearch,Ansh90/elasticsearch,phani546/elasticsearch,MichaelLiZhou/elasticsearch,sposam/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,sreeramjayan/elasticsearch,hafkensite/elasticsearch,markharwood/elasticsearch,koxa29/elasticsearch,C-Bish/elasticsearch,abibell/elasticsearch,brandonkearby/elasticsearch,karthikjaps/elasticsearch,jeteve/elasticsearch,spiegela/elasticsearch,ESamir/elasticsearch,ThiagoGarciaAlves/elasticsearch,mnylen/elasticsearch,jango2015/elasticsearch,obourgain/elasticsearch,Siddartha07/elasticsearch,Charlesdong/elasticsearch,dantuffery/elasticsearch,pablocastro/elasticsearch,xingguang2013/elasticsearch,ZTE-PaaS/elasticsearch,Fsero/elasticsearch,humandb/elasticsearch,ivansun1010/elasticsearch,pozhidaevak/elasticsearch,smflorentino/elasticsearch,milodky/elasticsearch,iantruslove/elasticsearch,zhiqinghuang/elasticsearch,fekaputra/elasticsearch,henakamaMSFT/elasticsearch,wayeast/elasticsearch,hirdesh2008/elasticsearch,xuzha/elasticsearch,schonfeld/elasticsearch,lightslife/elasticsearch,beiske/elasticsearch,EasonYi/elasticsearch,Shepard1212/elasticsearch,JervyShi/elasticsearch,hydro2k/elasticsearch,camilojd/elasticsearch,apepper/elasticsearch,Brijeshrpatel9/elasticsearch,MichaelLiZhou/elasticsearch,HonzaKral/elasticsearch,palecur/elasticsearch,springning/elasticsearch,phani546/elasticsearch,zeroctu/elasticsearch,lydonchandra/elasticsearch,linglaiyao1314/elasticsearch,NBSW/elasticsearch,lightslife/elasticsearch,codebunt/elasticsearch,NBSW/elasticsearch,TonyChai24/ESSource,kalimatas/elasticsearch,artnowo/elasticsearch,pritishppai/elasticsearch,zeroctu/elasticsearch,javachengwc/elasticsearch,spiegela/elasticsearch,sjohnr/elasticsearch,s1monw/elasticsearch,jbertouch/elasticsearch,Stacey-Gammon/elasticsearch,smflorentino/elasticsearch,IanvsPoplicola/elasticsearch,yuy168/elasticsearch,apepper/elasticsearch,elancom/elasticsearch,bestwpw/elasticsearch,hechunwen/elasticsearch,tahaemin/elasticsearch,yanjunh/elasticsearch,mcku/elasticsearch,winstonewert/elasticsearch,cnfire/elasticsearch-1,andrestc/elasticsearch,hanst/elasticsearch,onegambler/elasticsearch,Helen-Zhao/elasticsearch,yanjunh/elasticsearch,kunallimaye/elasticsearch,kimimj/elasticsearch,ouyangkongtong/elasticsearch,nrkkalyan/elasticsearch,infusionsoft/elasticsearch,fernandozhu/elasticsearch,wayeast/elasticsearch,mm0/elasticsearch,apepper/elasticsearch,scorpionvicky/elasticsearch,cwurm/elasticsearch,pablocastro/elasticsearch,strapdata/elassandra-test,ImpressTV/elasticsearch,fooljohnny/elasticsearch,kkirsche/elasticsearch,kevinkluge/elasticsearch,hanst/elasticsearch,wimvds/elasticsearch,chirilo/elasticsearch,acchen97/elasticsearch,polyfractal/elasticsearch,hirdesh2008/elasticsearch,easonC/elasticsearch,achow/elasticsearch,pablocastro/elasticsearch,jimhooker2002/elasticsearch,wuranbo/elasticsearch,ESamir/elasticsearch,wangtuo/elasticsearch,Fsero/elasticsearch,nknize/elasticsearch,sscarduzio/elasticsearch,mrorii/elasticsearch,JSCooke/elasticsearch,xuzha/elasticsearch,drewr/elasticsearch,dataduke/elasticsearch,mbrukman/elasticsearch,opendatasoft/elasticsearch,wayeast/elasticsearch,kcompher/elasticsearch,vrkansagara/elasticsearch,mapr/elasticsearch,infusionsoft/elasticsearch,khiraiwa/elasticsearch,mapr/elasticsearch,HarishAtGitHub/elasticsearch,jpountz/elasticsearch,petmit/elasticsearch,himanshuag/elasticsearch,MetSystem/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,mm0/elasticsearch,dongjoon-hyun/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,ckclark/elasticsearch,hafkensite/elasticsearch,petabytedata/elasticsearch,weipinghe/elasticsearch,PhaedrusTheGreek/elasticsearch,szroland/elasticsearch,F0lha/elasticsearch,alexbrasetvik/elasticsearch,wayeast/elasticsearch,Ansh90/elasticsearch,davidvgalbraith/elasticsearch,huanzhong/elasticsearch,kingaj/elasticsearch,Siddartha07/elasticsearch,GlenRSmith/elasticsearch,nomoa/elasticsearch,nilabhsagar/elasticsearch,Rygbee/elasticsearch,golubev/elasticsearch,ZTE-PaaS/elasticsearch,opendatasoft/elasticsearch,sposam/elasticsearch,camilojd/elasticsearch,phani546/elasticsearch,nrkkalyan/elasticsearch,HarishAtGitHub/elasticsearch,diendt/elasticsearch,ivansun1010/elasticsearch,pablocastro/elasticsearch,lydonchandra/elasticsearch,jpountz/elasticsearch,sc0ttkclark/elasticsearch,Kakakakakku/elasticsearch,jango2015/elasticsearch,mjhennig/elasticsearch,lydonchandra/elasticsearch,nilabhsagar/elasticsearch,infusionsoft/elasticsearch,phani546/elasticsearch,jw0201/elastic,nilabhsagar/elasticsearch,tebriel/elasticsearch,mcku/elasticsearch,nomoa/elasticsearch,karthikjaps/elasticsearch,schonfeld/elasticsearch,jpountz/elasticsearch,wenpos/elasticsearch,sjohnr/elasticsearch,kubum/elasticsearch,btiernay/elasticsearch,JackyMai/elasticsearch,vvcephei/elasticsearch,kcompher/elasticsearch,AleksKochev/elasticsearch,thecocce/elasticsearch,nellicus/elasticsearch,zeroctu/elasticsearch,jimczi/elasticsearch,xpandan/elasticsearch,smflorentino/elasticsearch,camilojd/elasticsearch,mute/elasticsearch,shreejay/elasticsearch,Siddartha07/elasticsearch,GlenRSmith/elasticsearch,szroland/elasticsearch,yongminxia/elasticsearch,yongminxia/elasticsearch,btiernay/elasticsearch,jimhooker2002/elasticsearch,hydro2k/elasticsearch,markwalkom/elasticsearch,Asimov4/elasticsearch,zkidkid/elasticsearch,loconsolutions/elasticsearch,mute/elasticsearch,vietlq/elasticsearch,jimhooker2002/elasticsearch,javachengwc/elasticsearch,iantruslove/elasticsearch,hafkensite/elasticsearch,mute/elasticsearch,kingaj/elasticsearch,rhoml/elasticsearch,ricardocerq/elasticsearch,Kakakakakku/elasticsearch,beiske/elasticsearch,shreejay/elasticsearch,lchennup/elasticsearch,alexkuk/elasticsearch,JSCooke/elasticsearch,nrkkalyan/elasticsearch,lzo/elasticsearch-1,overcome/elasticsearch,caengcjd/elasticsearch,mnylen/elasticsearch,combinatorist/elasticsearch,Widen/elasticsearch,coding0011/elasticsearch,mkis-/elasticsearch,zeroctu/elasticsearch,alexshadow007/elasticsearch,jango2015/elasticsearch,lks21c/elasticsearch,sauravmondallive/elasticsearch,nrkkalyan/elasticsearch,mapr/elasticsearch,weipinghe/elasticsearch,combinatorist/elasticsearch,JackyMai/elasticsearch,StefanGor/elasticsearch,andrejserafim/elasticsearch,hanst/elasticsearch,dataduke/elasticsearch,mapr/elasticsearch,janmejay/elasticsearch,knight1128/elasticsearch,vingupta3/elasticsearch,lzo/elasticsearch-1,andrejserafim/elasticsearch,fred84/elasticsearch,umeshdangat/elasticsearch,wangtuo/elasticsearch,martinstuga/elasticsearch,jeteve/elasticsearch,strapdata/elassandra-test,himanshuag/elasticsearch,mmaracic/elasticsearch,kingaj/elasticsearch,achow/elasticsearch,sarwarbhuiyan/elasticsearch,awislowski/elasticsearch,ImpressTV/elasticsearch,ZTE-PaaS/elasticsearch,trangvh/elasticsearch,sneivandt/elasticsearch,tsohil/elasticsearch,Collaborne/elasticsearch,i-am-Nathan/elasticsearch,dantuffery/elasticsearch,kalimatas/elasticsearch,C-Bish/elasticsearch,palecur/elasticsearch,acchen97/elasticsearch,truemped/elasticsearch,mm0/elasticsearch,mnylen/elasticsearch,nknize/elasticsearch,ImpressTV/elasticsearch,ouyangkongtong/elasticsearch,wangtuo/elasticsearch,Charlesdong/elasticsearch,achow/elasticsearch,episerver/elasticsearch,kimimj/elasticsearch,Helen-Zhao/elasticsearch,fooljohnny/elasticsearch,MisterAndersen/elasticsearch,zhiqinghuang/elasticsearch,scorpionvicky/elasticsearch,Flipkart/elasticsearch,uschindler/elasticsearch,Fsero/elasticsearch,milodky/elasticsearch,Kakakakakku/elasticsearch,Microsoft/elasticsearch,markwalkom/elasticsearch,zkidkid/elasticsearch,wayeast/elasticsearch,strapdata/elassandra-test,jaynblue/elasticsearch,alexkuk/elasticsearch,jaynblue/elasticsearch,nellicus/elasticsearch,fooljohnny/elasticsearch,nomoa/elasticsearch,queirozfcom/elasticsearch,MichaelLiZhou/elasticsearch,kalimatas/elasticsearch,kevinkluge/elasticsearch,combinatorist/elasticsearch,snikch/elasticsearch,AleksKochev/elasticsearch,dpursehouse/elasticsearch,s1monw/elasticsearch,humandb/elasticsearch,franklanganke/elasticsearch,ricardocerq/elasticsearch,ckclark/elasticsearch,MaineC/elasticsearch,alexshadow007/elasticsearch,masterweb121/elasticsearch,mikemccand/elasticsearch,jw0201/elastic,dylan8902/elasticsearch,markharwood/elasticsearch,davidvgalbraith/elasticsearch,jpountz/elasticsearch,Brijeshrpatel9/elasticsearch,amit-shar/elasticsearch,JervyShi/elasticsearch,SergVro/elasticsearch,hechunwen/elasticsearch,sjohnr/elasticsearch,polyfractal/elasticsearch,jchampion/elasticsearch,YosuaMichael/elasticsearch,aglne/elasticsearch,trangvh/elasticsearch,fekaputra/elasticsearch,qwerty4030/elasticsearch,wittyameta/elasticsearch,iantruslove/elasticsearch,strapdata/elassandra5-rc,Clairebi/ElasticsearchClone,MjAbuz/elasticsearch,obourgain/elasticsearch,polyfractal/elasticsearch,ulkas/elasticsearch,btiernay/elasticsearch,mjason3/elasticsearch,iamjakob/elasticsearch,khiraiwa/elasticsearch,heng4fun/elasticsearch,ZTE-PaaS/elasticsearch,Shekharrajak/elasticsearch,petmit/elasticsearch,jsgao0/elasticsearch,myelin/elasticsearch,javachengwc/elasticsearch,sdauletau/elasticsearch,zkidkid/elasticsearch,sneivandt/elasticsearch,khiraiwa/elasticsearch,overcome/elasticsearch,mm0/elasticsearch,kubum/elasticsearch,NBSW/elasticsearch,snikch/elasticsearch,franklanganke/elasticsearch,rmuir/elasticsearch,wittyameta/elasticsearch,drewr/elasticsearch,chrismwendt/elasticsearch,abibell/elasticsearch,Stacey-Gammon/elasticsearch,achow/elasticsearch,F0lha/elasticsearch,huanzhong/elasticsearch,opendatasoft/elasticsearch,Brijeshrpatel9/elasticsearch,sscarduzio/elasticsearch,apepper/elasticsearch,areek/elasticsearch,linglaiyao1314/elasticsearch,vvcephei/elasticsearch,girirajsharma/elasticsearch,franklanganke/elasticsearch,karthikjaps/elasticsearch,mbrukman/elasticsearch,iamjakob/elasticsearch,ThiagoGarciaAlves/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,codebunt/elasticsearch,mgalushka/elasticsearch,markllama/elasticsearch,gingerwizard/elasticsearch,xpandan/elasticsearch,pozhidaevak/elasticsearch,geidies/elasticsearch,ivansun1010/elasticsearch,mm0/elasticsearch,ZTE-PaaS/elasticsearch,rajanm/elasticsearch,amaliujia/elasticsearch,LeoYao/elasticsearch,slavau/elasticsearch,petabytedata/elasticsearch,brandonkearby/elasticsearch,umeshdangat/elasticsearch,xuzha/elasticsearch,alexbrasetvik/elasticsearch,szroland/elasticsearch,alexkuk/elasticsearch,loconsolutions/elasticsearch,jeteve/elasticsearch,masterweb121/elasticsearch,winstonewert/elasticsearch,ydsakyclguozi/elasticsearch,kaneshin/elasticsearch,elancom/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,lks21c/elasticsearch,sneivandt/elasticsearch,cnfire/elasticsearch-1,LeoYao/elasticsearch,slavau/elasticsearch,mgalushka/elasticsearch,AshishThakur/elasticsearch,Chhunlong/elasticsearch,tkssharma/elasticsearch,overcome/elasticsearch,18098924759/elasticsearch,Siddartha07/elasticsearch,dataduke/elasticsearch,tkssharma/elasticsearch,caengcjd/elasticsearch,kimimj/elasticsearch,ESamir/elasticsearch,Shepard1212/elasticsearch,MetSystem/elasticsearch,mcku/elasticsearch,slavau/elasticsearch,clintongormley/elasticsearch,awislowski/elasticsearch,SaiprasadKrishnamurthy/elasticsearch,gmarz/elasticsearch,jchampion/elasticsearch,kenshin233/elasticsearch,kkirsche/elasticsearch,chirilo/elasticsearch,gingerwizard/elasticsearch,linglaiyao1314/elasticsearch,thecocce/elasticsearch,mkis-/elasticsearch,cwurm/elasticsearch,avikurapati/elasticsearch,jprante/elasticsearch,szroland/elasticsearch,huypx1292/elasticsearch,areek/elasticsearch,hanst/elasticsearch,ThalaivaStars/OrgRepo1,sdauletau/elasticsearch,masterweb121/elasticsearch,AndreKR/elasticsearch,rajanm/elasticsearch,amaliujia/elasticsearch,tebriel/elasticsearch,andrestc/elasticsearch,mortonsykes/elasticsearch,qwerty4030/elasticsearch,loconsolutions/elasticsearch,xpandan/elasticsearch,ulkas/elasticsearch,zkidkid/elasticsearch,tcucchietti/elasticsearch,chrismwendt/elasticsearch,hechunwen/elasticsearch,truemped/elasticsearch,drewr/elasticsearch,ckclark/elasticsearch,MaineC/elasticsearch,adrianbk/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,Asimov4/elasticsearch,lks21c/elasticsearch,huanzhong/elasticsearch,diendt/elasticsearch,aglne/elasticsearch,pranavraman/elasticsearch,iantruslove/elasticsearch,MjAbuz/elasticsearch,hirdesh2008/elasticsearch,golubev/elasticsearch,hanst/elasticsearch,gmarz/elasticsearch,tsohil/elasticsearch,lzo/elasticsearch-1,henakamaMSFT/elasticsearch,alexbrasetvik/elasticsearch,jchampion/elasticsearch,camilojd/elasticsearch,liweinan0423/elasticsearch,mjhennig/elasticsearch,kevinkluge/elasticsearch,lks21c/elasticsearch,Shepard1212/elasticsearch,wittyameta/elasticsearch,wangtuo/elasticsearch,mikemccand/elasticsearch,vroyer/elassandra,hydro2k/elasticsearch,cwurm/elasticsearch,wbowling/elasticsearch,ydsakyclguozi/elasticsearch,KimTaehee/elasticsearch,wimvds/elasticsearch,truemped/elasticsearch,TonyChai24/ESSource,vietlq/elasticsearch,Asimov4/elasticsearch,KimTaehee/elasticsearch,franklanganke/elasticsearch,sauravmondallive/elasticsearch,kalburgimanjunath/elasticsearch,iacdingping/elasticsearch,vingupta3/elasticsearch,tahaemin/elasticsearch,tkssharma/elasticsearch,MisterAndersen/elasticsearch,ouyangkongtong/elasticsearch,hanswang/elasticsearch,njlawton/elasticsearch,mmaracic/elasticsearch,aglne/elasticsearch,zeroctu/elasticsearch,thecocce/elasticsearch,wayeast/elasticsearch,VukDukic/elasticsearch,infusionsoft/elasticsearch,koxa29/elasticsearch,nezirus/elasticsearch,dylan8902/elasticsearch,pritishppai/elasticsearch,Liziyao/elasticsearch,diendt/elasticsearch,likaiwalkman/elasticsearch,scorpionvicky/elasticsearch,areek/elasticsearch,vrkansagara/elasticsearch,lmtwga/elasticsearch,skearns64/elasticsearch,djschny/elasticsearch,nilabhsagar/elasticsearch,nellicus/elasticsearch,Chhunlong/elasticsearch,cnfire/elasticsearch-1,mgalushka/elasticsearch,fernandozhu/elasticsearch,Shepard1212/elasticsearch,zeroctu/elasticsearch,PhaedrusTheGreek/elasticsearch,kunallimaye/elasticsearch,markwalkom/elasticsearch,wangtuo/elasticsearch,shreejay/elasticsearch,iamjakob/elasticsearch,mmaracic/elasticsearch,Collaborne/elasticsearch,feiqitian/elasticsearch,Rygbee/elasticsearch,yuy168/elasticsearch,fforbeck/elasticsearch,elasticdog/elasticsearch,thecocce/elasticsearch,jaynblue/elasticsearch,dongjoon-hyun/elasticsearch,Microsoft/elasticsearch,slavau/elasticsearch,JackyMai/elasticsearch,mohit/elasticsearch,18098924759/elasticsearch,wenpos/elasticsearch,vroyer/elasticassandra,dylan8902/elasticsearch,ivansun1010/elasticsearch,areek/elasticsearch,sdauletau/elasticsearch,kcompher/elasticsearch,tsohil/elasticsearch,nezirus/elasticsearch,Helen-Zhao/elasticsearch,Chhunlong/elasticsearch,sscarduzio/elasticsearch,beiske/elasticsearch,caengcjd/elasticsearch,weipinghe/elasticsearch,JervyShi/elasticsearch,nknize/elasticsearch,humandb/elasticsearch,mkis-/elasticsearch,jaynblue/elasticsearch,hafkensite/elasticsearch,nellicus/elasticsearch,onegambler/elasticsearch,kimimj/elasticsearch,mcku/elasticsearch,Rygbee/elasticsearch,javachengwc/elasticsearch,lchennup/elasticsearch,fekaputra/elasticsearch,fred84/elasticsearch,fforbeck/elasticsearch,Asimov4/elasticsearch,weipinghe/elasticsearch,jchampion/elasticsearch,MjAbuz/elasticsearch,glefloch/elasticsearch,coding0011/elasticsearch,lmtwga/elasticsearch,dataduke/elasticsearch,sarwarbhuiyan/elasticsearch,amit-shar/elasticsearch,queirozfcom/elasticsearch,MaineC/elasticsearch,rhoml/elasticsearch,fforbeck/elasticsearch,scottsom/elasticsearch,ydsakyclguozi/elasticsearch,obourgain/elasticsearch,mnylen/elasticsearch,C-Bish/elasticsearch,sarwarbhuiyan/elasticsearch,xpandan/elasticsearch,combinatorist/elasticsearch,palecur/elasticsearch,golubev/elasticsearch,lchennup/elasticsearch,tcucchietti/elasticsearch,knight1128/elasticsearch,artnowo/elasticsearch,rajanm/elasticsearch,wangyuxue/elasticsearch,hanst/elasticsearch,chirilo/elasticsearch,kalburgimanjunath/elasticsearch,pritishppai/elasticsearch,pranavraman/elasticsearch,Liziyao/elasticsearch,LeoYao/elasticsearch,Flipkart/elasticsearch,humandb/elasticsearch,mortonsykes/elasticsearch,springning/elasticsearch,lydonchandra/elasticsearch,sdauletau/elasticsearch,chrismwendt/elasticsearch,vrkansagara/elasticsearch,SergVro/elasticsearch,pablocastro/elasticsearch,rento19962/elasticsearch,schonfeld/elasticsearch,djschny/elasticsearch,likaiwalkman/elasticsearch,mmaracic/elasticsearch,jchampion/elasticsearch,robin13/elasticsearch,pozhidaevak/elasticsearch,henakamaMSFT/elasticsearch,mute/elasticsearch,HonzaKral/elasticsearch,achow/elasticsearch,ThalaivaStars/OrgRepo1,mnylen/elasticsearch,jbertouch/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,zhiqinghuang/elasticsearch,rmuir/elasticsearch,JackyMai/elasticsearch,Widen/elasticsearch,kalburgimanjunath/elasticsearch,luiseduardohdbackup/elasticsearch,milodky/elasticsearch,lchennup/elasticsearch,VukDukic/elasticsearch,Ansh90/elasticsearch,ThalaivaStars/OrgRepo1,sarwarbhuiyan/elasticsearch,lzo/elasticsearch-1,gfyoung/elasticsearch,feiqitian/elasticsearch,weipinghe/elasticsearch,adrianbk/elasticsearch,kenshin233/elasticsearch,Flipkart/elasticsearch,uschindler/elasticsearch,huypx1292/elasticsearch,kimimj/elasticsearch,shreejay/elasticsearch,jeteve/elasticsearch,jprante/elasticsearch,iacdingping/elasticsearch,zhiqinghuang/elasticsearch,jbertouch/elasticsearch,strapdata/elassandra,polyfractal/elasticsearch,linglaiyao1314/elasticsearch,areek/elasticsearch,loconsolutions/elasticsearch,sjohnr/elasticsearch,pranavraman/elasticsearch,hafkensite/elasticsearch,markwalkom/elasticsearch,pritishppai/elasticsearch,AndreKR/elasticsearch,mbrukman/elasticsearch,robin13/elasticsearch,palecur/elasticsearch,wuranbo/elasticsearch,AndreKR/elasticsearch,yuy168/elasticsearch,tahaemin/elasticsearch,Fsero/elasticsearch,springning/elasticsearch,rento19962/elasticsearch,markllama/elasticsearch,sreeramjayan/elasticsearch,queirozfcom/elasticsearch,codebunt/elasticsearch,sposam/elasticsearch,luiseduardohdbackup/elasticsearch,lmtwga/elasticsearch,mjhennig/elasticsearch,jango2015/elasticsearch,girirajsharma/elasticsearch,gmarz/elasticsearch,yuy168/elasticsearch,skearns64/elasticsearch,s1monw/elasticsearch,gingerwizard/elasticsearch,jaynblue/elasticsearch,himanshuag/elasticsearch,luiseduardohdbackup/elasticsearch,mapr/elasticsearch,girirajsharma/elasticsearch,diendt/elasticsearch,jw0201/elastic,clintongormley/elasticsearch,nazarewk/elasticsearch,hanswang/elasticsearch,SergVro/elasticsearch,petmit/elasticsearch,elasticdog/elasticsearch,Uiho/elasticsearch,smflorentino/elasticsearch,geidies/elasticsearch,bawse/elasticsearch,LewayneNaidoo/elasticsearch,pablocastro/elasticsearch,andrestc/elasticsearch,zeroctu/elasticsearch,diendt/elasticsearch,AshishThakur/elasticsearch,nrkkalyan/elasticsearch,Rygbee/elasticsearch,lydonchandra/elasticsearch,njlawton/elasticsearch,dylan8902/elasticsearch,mbrukman/elasticsearch,brandonkearby/elasticsearch,yongminxia/elasticsearch,tebriel/elasticsearch,JervyShi/elasticsearch,sposam/elasticsearch,C-Bish/elasticsearch,liweinan0423/elasticsearch,kubum/elasticsearch,alexkuk/elasticsearch,pritishppai/elasticsearch,polyfractal/elasticsearch,anti-social/elasticsearch,mrorii/elasticsearch,yanjunh/elasticsearch,hechunwen/elasticsearch,cwurm/elasticsearch,coding0011/elasticsearch,18098924759/elasticsearch,kenshin233/elasticsearch,tkssharma/elasticsearch,micpalmia/elasticsearch,karthikjaps/elasticsearch,yongminxia/elasticsearch,baishuo/elasticsearch_v2.1.0-baishuo,EasonYi/elasticsearch,mkis-/elasticsearch,Widen/elasticsearch,kevinkluge/elasticsearch,JSCooke/elasticsearch,ouyangkongtong/elasticsearch,MisterAndersen/elasticsearch,sauravmondallive/elasticsearch,thecocce/elasticsearch,F0lha/elasticsearch,markharwood/elasticsearch,aglne/elasticsearch,yongminxia/elasticsearch,nazarewk/elasticsearch,markllama/elasticsearch,overcome/elasticsearch,elasticdog/elasticsearch,dylan8902/elasticsearch,uschindler/elasticsearch,avikurapati/elasticsearch,robin13/elasticsearch,ckclark/elasticsearch,lightslife/elasticsearch,wittyameta/elasticsearch,nezirus/elasticsearch,ThalaivaStars/OrgRepo1,lks21c/elasticsearch,Collaborne/elasticsearch,andrejserafim/elasticsearch,pablocastro/elasticsearch,caengcjd/elasticsearch,infusionsoft/elasticsearch,szroland/elasticsearch,elasticdog/elasticsearch,bestwpw/elasticsearch,vvcephei/elasticsearch,mikemccand/elasticsearch,wuranbo/elasticsearch,IanvsPoplicola/elasticsearch,pranavraman/elasticsearch,onegambler/elasticsearch,jbertouch/elasticsearch,huypx1292/elasticsearch,jsgao0/elasticsearch,lightslife/elasticsearch,kingaj/elasticsearch,mgalushka/elasticsearch,yynil/elasticsearch,Kakakakakku/elasticsearch,episerver/elasticsearch,likaiwalkman/elasticsearch,Widen/elasticsearch,TonyChai24/ESSource,maddin2016/elasticsearch,SergVro/elasticsearch,luiseduardohdbackup/elasticsearch,sreeramjayan/elasticsearch,Siddartha07/elasticsearch,naveenhooda2000/elasticsearch,scottsom/elasticsearch,slavau/elasticsearch,acchen97/elasticsearch,mjhennig/elasticsearch,nazarewk/elasticsearch,KimTaehee/elasticsearch,mcku/elasticsearch,rlugojr/elasticsearch,liweinan0423/elasticsearch,lzo/elasticsearch-1,martinstuga/elasticsearch,kevinkluge/elasticsearch,Collaborne/elasticsearch,vroyer/elasticassandra,SergVro/elasticsearch,ulkas/elasticsearch,alexshadow007/elasticsearch,wittyameta/elasticsearch,hirdesh2008/elasticsearch,elancom/elasticsearch,LeoYao/elasticsearch,AndreKR/elasticsearch,kcompher/elasticsearch,Uiho/elasticsearch,achow/elasticsearch,humandb/elasticsearch,ThalaivaStars/OrgRepo1,socialrank/elasticsearch,ouyangkongtong/elasticsearch,ulkas/elasticsearch,andrestc/elasticsearch,truemped/elasticsearch,pozhidaevak/elasticsearch,umeshdangat/elasticsearch,mrorii/elasticsearch,diendt/elasticsearch,mohit/elasticsearch,caengcjd/elasticsearch,mjhennig/elasticsearch,markllama/elasticsearch,davidvgalbraith/elasticsearch,karthikjaps/elasticsearch,polyfractal/elasticsearch,schonfeld/elasticsearch,trangvh/elasticsearch,AleksKochev/elasticsearch,HarishAtGitHub/elasticsearch,xpandan/elasticsearch,maddin2016/elasticsearch,adrianbk/elasticsearch,avikurapati/elasticsearch,mkis-/elasticsearch,LeoYao/elasticsearch,hirdesh2008/elasticsearch,wbowling/elasticsearch,Helen-Zhao/elasticsearch,spiegela/elasticsearch,sjohnr/elasticsearch,a2lin/elasticsearch,areek/elasticsearch,strapdata/elassandra-test,janmejay/elasticsearch,fforbeck/elasticsearch,bawse/elasticsearch,chirilo/elasticsearch,Kakakakakku/elasticsearch,LewayneNaidoo/elasticsearch,jango2015/elasticsearch,lchennup/elasticsearch,vingupta3/elasticsearch,scorpionvicky/elasticsearch,i-am-Nathan/elasticsearch,djschny/elasticsearch,a2lin/elasticsearch,a2lin/elasticsearch,yanjunh/elasticsearch,hydro2k/elasticsearch
c83138c00390777f3d17ac492f09203e9e92284d
README.adoc
README.adoc
= Vert.x JDBC client image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-jdbc-client["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-jdbc-client/"] This provides an asynchronous interface around a JDBC datasource so you can access data in any database for which there is a JDBC driver. Please see the in link:src/main/asciidoc/index.adoc[source] documentation or the main documentation on the http://vertx.io/docs/#data_access[web-site] for a full description:
= Vert.x JDBC client image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-jdbc-client["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-jdbc-client/"] This provides an asynchronous interface around a JDBC datasource so you can access data in any database for which there is a JDBC driver. Please see the main documentation on the web-site for a full description: * https://vertx.io/docs/vertx-jdbc-client/java/[Java documentation] * https://vertx.io/docs/vertx-jdbc-client/js/[JavaScript documentation] * https://vertx.io/docs/vertx-jdbc-client/kotlin/[Kotlin documentation] * https://vertx.io/docs/vertx-jdbc-client/groovy/[Groovy documentation] * https://vertx.io/docs/vertx-jdbc-client/ruby/[Ruby documentation]
Remove link to in-source docs
Remove link to in-source docs
AsciiDoc
apache-2.0
vert-x3/vertx-jdbc-client
1c1ebd765d712977d028450708e06cbff7051b7d
docs/modules/ROOT/pages/wizard.adoc
docs/modules/ROOT/pages/wizard.adoc
= Contracts Wizard :page-notoc: Not sure where to start? Use the interactive generator below to bootstrap your contract and learn about the components offered in OpenZeppelin Contracts. TIP: Place the resulting contract in your `contracts` directory in order to compile it with a tool like Hardhat or Truffle. Consider reading our guide on xref:learn::developing-smart-contracts.adoc[Developing Smart Contracts] for more guidance! ++++ <script async defer src="https://openzeppelin-contracts-wizard.netlify.app/build/embed.js"></script> <oz-wizard style="display: block; min-height: 40rem;"></oz-wizard> ++++
= Contracts Wizard :page-notoc: Not sure where to start? Use the interactive generator below to bootstrap your contract and learn about the components offered in OpenZeppelin Contracts. TIP: Place the resulting contract in your `contracts` directory in order to compile it with a tool like Hardhat or Truffle. Consider reading our guide on xref:learn::developing-smart-contracts.adoc[Developing Smart Contracts] for more guidance! ++++ <script async src="https://wizard.openzeppelin.com/build/embed.js"></script> <oz-wizard style="display: block; min-height: 40rem;"></oz-wizard> ++++
Remove defer tag for Wizard embed script
Remove defer tag for Wizard embed script
AsciiDoc
mit
OpenZeppelin/zeppelin-solidity,OpenZeppelin/openzeppelin-contracts,OpenZeppelin/zeppelin-solidity,OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts
254b49639490b1dc9f555db0a4ec7fd4e2985591
01-basic/README.adoc
01-basic/README.adoc
= Basic Examples The basic examples in this directory show how the setup a CMake project, set compile flags, create executables and libraries, and install them. The examples included are - hello-cmake. A hello world example. - hello-headers. A slighly more complicated hello world example, with using Hello class and seperate source and include folders. - shared-library. An example using a shared library. - static-library. An example using a static library. - installing. Shows how to create a 'make install' target to install the binaries and libraries - build-type. An example showing how to set a default build type of your project. - compile-flags. Shows how to set compile flags
= Basic Examples The basic examples in this directory show how the setup a CMake project, set compile flags, create and link executables and libraries, and install them. The examples included are - link:A-hello-cmake[hello-cmake]. A hello world example. - link:B-hello-headers[hello-headers]. A slighly more complicated hello world example, using seperate source and include folders. - link:C-static-library[static-library]. An example using a static library. - link:D-shared-library[shared-library]. An example using a shared library. - link:E-installing[installing]. Shows how to create a 'make install' target that will install binaries and libraries. - link:F-build-type[build-type]. An example showing how to set a default build and optimization flags for your project. - link:G-compile-flags[compile-flags]. Shows how to set additional compile flags. - link:H-third-party-library[third-party-library]. Shows an example of how to link third party libraries.
Add links to filders and fix some typos
Add links to filders and fix some typos
AsciiDoc
mit
ttroy50/cmake-examples,ttroy50/cmake-examples,ttroy50/cmake-examples
22cfed38f976707345f71fd0d0f87a4f6b76d4da
spec/index.adoc
spec/index.adoc
= Seed [email protected] :toc: left :toclevels: 5 :stylesheet: styles/html.css :sectlinks: :sectnums: :sectnumlevels: 5 :icons: font :docinfo: Seed was developed at the National Geospatial-Intelligence Agency (NGA) Research. Seed is a general standard to aid in the discovery and consumption of a discrete unit of work contained within a Docker image. To comply with the Seed standard a Docker image must have a single label used for discovery. This can be applied with the following Dockerfile snippet: ---- include::examples/complete/Dockerfile-snippet[] ---- Seed compliant images must be named in a specific fashion due to the lack of label search capability on Docker Hub and Registry services. The suffix `-seed` must be used when naming images to enable discovery, prior to Hub or Registry push. This requirement will be deprecated as label search support is standardized across Docker registry services. See the latest version of the link:seed.html[full specification] for complete detail on manifest format. Specification versions:
= Seed [email protected] :toc: left :toclevels: 5 :stylesheet: styles/html.css :sectlinks: :sectnums: :sectnumlevels: 5 :icons: font :docinfo: Seed was developed at the National Geospatial-Intelligence Agency (NGA) Research. Seed is a general standard to aid in the discovery and consumption of a discrete unit of work contained within a Docker image. To comply with the Seed standard a Docker image must have a single label used for discovery. This can be applied with the following Dockerfile snippet: ---- include::examples/complete/Dockerfile-snippet[] ---- Seed compliant images must be named in a specific fashion due to the lack of label search capability on Docker Hub and Registry services. The suffix `-seed` must be used when naming images to enable discovery, prior to Hub or Registry push. This requirement will be deprecated as label search support is standardized across Docker registry services. See the latest version of the link:seed.html[full specification] for complete detail on manifest format. Specification versions:
Test from contact information changes
Test from contact information changes
AsciiDoc
apache-2.0
ngageoint/seed,ngageoint/seed,ngageoint/seed
13bfa543b90467eea4a15be81a39b1ad415cbfbd
installing/installing_sno/install-sno-installing-sno.adoc
installing/installing_sno/install-sno-installing-sno.adoc
[id="install-sno-installing-sno"] = Installing OpenShift on a single node :context: install-sno-installing-sno-with-the-assisted-installer include::modules/common-attributes.adoc[] toc::[] include::modules/install-sno-generating-the-discovery-iso-with-the-assisted-installer.adoc[leveloffset=+1] include::modules/install-sno-generating-the-discovery-iso-manually.adoc[leveloffset=+1] include::modules/install-sno-installing-with-usb-media.adoc[leveloffset=+1] include::modules/install-sno-monitoring-the-installation-with-the-assisted-installer.adoc[leveloffset=+1] include::modules/install-sno-monitoring-the-installation-manually.adoc[leveloffset=+1]
[id="install-sno-installing-sno"] = Installing OpenShift on a single node :context: install-sno-installing-sno-with-the-assisted-installer include::modules/common-attributes.adoc[] toc::[] ifndef::openshift-origin[] include::modules/install-sno-generating-the-discovery-iso-with-the-assisted-installer.adoc[leveloffset=+1] endif::openshift-origin[] include::modules/install-sno-generating-the-discovery-iso-manually.adoc[leveloffset=+1] include::modules/install-sno-installing-with-usb-media.adoc[leveloffset=+1] ifndef::openshift-origin[] include::modules/install-sno-monitoring-the-installation-with-the-assisted-installer.adoc[leveloffset=+1] endif::openshift-origin[] include::modules/install-sno-monitoring-the-installation-manually.adoc[leveloffset=+1]
Remove SNO assisted installer from OKD
GH39759: Remove SNO assisted installer from OKD
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
3671b22616ab063e2cdf0e511867112cfd5a5454
userguide/aws/stripe-config.adoc
userguide/aws/stripe-config.adoc
Create the stripe configuration: [source, bash] ---- > mkdir -p /home/ubuntu/killbil/etc/ > vi /home/ubuntu/killbil/etc/stripe.yml ---- Fill the details with your own keys: :stripe: :api_secret_key: API_SECRET_KEY :test: true :database: :adapter: jdbcmysql :jndi: killbill/osgi/jdbc :driver: com.mysql.jdbc.Driver :connection_alive_sql: select 1 :pool: 25
Create the stripe configuration: [source, bash] ---- > mkdir -p /home/ubuntu/killbil/etc/ > vi /home/ubuntu/killbil/etc/stripe.yml ---- Fill the details with your own keys: :stripe: :api_secret_key: API_SECRET_KEY :test: true :database: :adapter: jdbcmysql :jndi: killbill/osgi/jdbc :connection_alive_sql: select 1 :pool: 25
Remove unused parameter in stripe config for aws doc
Remove unused parameter in stripe config for aws doc
AsciiDoc
apache-2.0
killbill/killbill-docs,killbill/killbill-docs
e0f367ba627a43ef330e85288ea3a3a3826f17e3
README.asciidoc
README.asciidoc
OpenFurther Reference Documentation =================================== About ----- The following documentation applies to *OpenFurther version {version}* Conventions ~~~~~~~~~~~ NOTE: A note IMPORTANT: An important point TIP: A tip WARNING: A warning CAUTION: A point of caution Introduction ------------ FURTHeR, The Federated Utah Research and Translational Health electronic Repository, has been developed as part of the Biomedical Informatics Core (BMIC) at the University of Utah’s Center for Clinical and Translational Science (CCTS). FURTHeR’s primary function is to federate health information from heterogeneous data sources to aid researchers in cohort selection and retrospective comparative effectiveness research. FURTHeR achieves real-time federation of health information from heterogeneous data sources using a logical federated query language, a query and result translator for translating queries and results from each heterogeneous data source, and standard terminology to unify data across sources.
OpenFurther Reference Documentation =================================== About ----- The following documentation applies to *OpenFurther version 1.4.0-SNAPSHOT* Conventions ~~~~~~~~~~~ NOTE: A note IMPORTANT: An important point TIP: A tip WARNING: A warning CAUTION: A point of caution Introduction ------------ FURTHeR, The Federated Utah Research and Translational Health electronic Repository, has been developed as part of the Biomedical Informatics Core (BMIC) at the University of Utah’s Center for Clinical and Translational Science (CCTS). FURTHeR’s primary function is to federate health information from heterogeneous data sources to aid researchers in cohort selection and retrospective comparative effectiveness research. FURTHeR achieves real-time federation of health information from heterogeneous data sources using a logical federated query language, a query and result translator for translating queries and results from each heterogeneous data source, and standard terminology to unify data across sources.
Fix version to 1.4.0-SNAPSHOT for now
Fix version to 1.4.0-SNAPSHOT for now
AsciiDoc
apache-2.0
openfurther/further-open-doc,openfurther/further-open-doc,openfurther/further-open-doc
2802475f5ff4170cd8f6c6969dce65dc971aa8a6
README.asciidoc
README.asciidoc
= PHP Reflect **PHP Reflect** is a library that adds the ability to reverse-engineer classes, interfaces, functions, constants, namespaces, traits and more. Both were distributed as source code (install via composer) and a PHAR version that bundles all dependencies in a single file. == Install You can either : * download the phar version http://bartlett.laurent-laville.org/get/phpreflect-4.2.1.phar[4.2.1] * install via https://packagist.org/packages/bartlett/php-reflect/[packagist] the current source dev-master == Documentation The documentation for PHP Reflect 4.2 is available in http://php5.laurent-laville.org/reflect/manual/4.2/en/[English] to read it online or download to read it later (multiple formats). AsciiDoc source code are available on `docs` folder of the repository. == Authors * Laurent Laville == License This handler is licensed under the BSD-3-clauses License - see the `LICENSE` file for details
= PHP Reflect **PHP Reflect** is a library that adds the ability to reverse-engineer classes, interfaces, functions, constants, namespaces, traits and more. Both were distributed as source code (install via composer) and a PHAR version that bundles all dependencies in a single file. == Requirements PHP 5.5.0 or above. == Install You can either : * download the phar version http://bartlett.laurent-laville.org/get/phpreflect-4.2.1.phar[4.2.1] * install via https://packagist.org/packages/bartlett/php-reflect/[packagist] the current source dev-master == Documentation The documentation for PHP Reflect 4.2 is available in http://php5.laurent-laville.org/reflect/manual/4.2/en/[English] to read it online or download to read it later (multiple formats). AsciiDoc source code are available on `docs` folder of the repository. == Authors * Laurent Laville == License This handler is licensed under the BSD-3-clauses License - see the `LICENSE` file for details
Add a note about minimum requirements to install this package
Add a note about minimum requirements to install this package
AsciiDoc
bsd-3-clause
llaville/php-reflect
1f11a5d93c83f71d84c907db7db40b5edf8a3f1c
docs/reference/release-notes.asciidoc
docs/reference/release-notes.asciidoc
[[es-release-notes]] = Release Notes [partintro] -- This section summarizes the changes in each release. * <<release-notes-5.0.0-alpha5>> * <<release-notes-5.0.0-alpha4>> * <<release-notes-5.0.0-alpha3>> * <<release-notes-5.0.0-alpha2>> * <<release-notes-5.0.0-alpha1>> * <<release-notes-5.0.0-alpha1-2x>> -- include::release-notes/5.0.0-alpha5.asciidoc[] include::release-notes/5.0.0-alpha4.asciidoc[] include::release-notes/5.0.0-alpha3.asciidoc[] include::release-notes/5.0.0-alpha2.asciidoc[] include::release-notes/5.0.0-alpha1.asciidoc[] include::release-notes/5.0.0-alpha1-2x.asciidoc[]
[[es-release-notes]] = Release Notes [partintro] -- This section will summarize the changes in released versions. --
Remove links to release notes
Remove links to release notes
AsciiDoc
apache-2.0
yanjunh/elasticsearch,a2lin/elasticsearch,elasticdog/elasticsearch,qwerty4030/elasticsearch,nezirus/elasticsearch,MaineC/elasticsearch,nazarewk/elasticsearch,fred84/elasticsearch,Helen-Zhao/elasticsearch,JervyShi/elasticsearch,IanvsPoplicola/elasticsearch,mikemccand/elasticsearch,MaineC/elasticsearch,artnowo/elasticsearch,jprante/elasticsearch,i-am-Nathan/elasticsearch,alexshadow007/elasticsearch,liweinan0423/elasticsearch,robin13/elasticsearch,nezirus/elasticsearch,gingerwizard/elasticsearch,Stacey-Gammon/elasticsearch,elasticdog/elasticsearch,mohit/elasticsearch,s1monw/elasticsearch,strapdata/elassandra,rlugojr/elasticsearch,a2lin/elasticsearch,coding0011/elasticsearch,rlugojr/elasticsearch,maddin2016/elasticsearch,mjason3/elasticsearch,ZTE-PaaS/elasticsearch,mikemccand/elasticsearch,lks21c/elasticsearch,kalimatas/elasticsearch,GlenRSmith/elasticsearch,JSCooke/elasticsearch,qwerty4030/elasticsearch,henakamaMSFT/elasticsearch,artnowo/elasticsearch,dongjoon-hyun/elasticsearch,naveenhooda2000/elasticsearch,wenpos/elasticsearch,MisterAndersen/elasticsearch,scorpionvicky/elasticsearch,fred84/elasticsearch,scottsom/elasticsearch,nilabhsagar/elasticsearch,LewayneNaidoo/elasticsearch,lks21c/elasticsearch,LewayneNaidoo/elasticsearch,nilabhsagar/elasticsearch,obourgain/elasticsearch,nknize/elasticsearch,obourgain/elasticsearch,nezirus/elasticsearch,LeoYao/elasticsearch,MisterAndersen/elasticsearch,JSCooke/elasticsearch,nknize/elasticsearch,yanjunh/elasticsearch,njlawton/elasticsearch,gfyoung/elasticsearch,liweinan0423/elasticsearch,uschindler/elasticsearch,gfyoung/elasticsearch,C-Bish/elasticsearch,maddin2016/elasticsearch,scottsom/elasticsearch,Shepard1212/elasticsearch,glefloch/elasticsearch,gfyoung/elasticsearch,JackyMai/elasticsearch,vroyer/elasticassandra,elasticdog/elasticsearch,ThiagoGarciaAlves/elasticsearch,yanjunh/elasticsearch,naveenhooda2000/elasticsearch,nilabhsagar/elasticsearch,nezirus/elasticsearch,MisterAndersen/elasticsearch,ThiagoGarciaAlves/elasticsearch,brandonkearby/elasticsearch,fforbeck/elasticsearch,nezirus/elasticsearch,vroyer/elassandra,qwerty4030/elasticsearch,kalimatas/elasticsearch,coding0011/elasticsearch,pozhidaevak/elasticsearch,Helen-Zhao/elasticsearch,scorpionvicky/elasticsearch,HonzaKral/elasticsearch,mjason3/elasticsearch,pozhidaevak/elasticsearch,wangtuo/elasticsearch,ricardocerq/elasticsearch,shreejay/elasticsearch,gmarz/elasticsearch,IanvsPoplicola/elasticsearch,shreejay/elasticsearch,JackyMai/elasticsearch,jimczi/elasticsearch,wuranbo/elasticsearch,njlawton/elasticsearch,liweinan0423/elasticsearch,IanvsPoplicola/elasticsearch,GlenRSmith/elasticsearch,mohit/elasticsearch,Stacey-Gammon/elasticsearch,strapdata/elassandra,qwerty4030/elasticsearch,vroyer/elassandra,ZTE-PaaS/elasticsearch,geidies/elasticsearch,artnowo/elasticsearch,ricardocerq/elasticsearch,JervyShi/elasticsearch,coding0011/elasticsearch,bawse/elasticsearch,nilabhsagar/elasticsearch,mohit/elasticsearch,winstonewert/elasticsearch,a2lin/elasticsearch,robin13/elasticsearch,coding0011/elasticsearch,JervyShi/elasticsearch,glefloch/elasticsearch,wenpos/elasticsearch,yanjunh/elasticsearch,gingerwizard/elasticsearch,C-Bish/elasticsearch,HonzaKral/elasticsearch,brandonkearby/elasticsearch,GlenRSmith/elasticsearch,glefloch/elasticsearch,alexshadow007/elasticsearch,jimczi/elasticsearch,pozhidaevak/elasticsearch,jimczi/elasticsearch,lks21c/elasticsearch,masaruh/elasticsearch,StefanGor/elasticsearch,alexshadow007/elasticsearch,markwalkom/elasticsearch,MaineC/elasticsearch,mikemccand/elasticsearch,fernandozhu/elasticsearch,bawse/elasticsearch,ZTE-PaaS/elasticsearch,fernandozhu/elasticsearch,gmarz/elasticsearch,brandonkearby/elasticsearch,fernandozhu/elasticsearch,henakamaMSFT/elasticsearch,fernandozhu/elasticsearch,yanjunh/elasticsearch,wuranbo/elasticsearch,rlugojr/elasticsearch,StefanGor/elasticsearch,obourgain/elasticsearch,dongjoon-hyun/elasticsearch,mortonsykes/elasticsearch,mohit/elasticsearch,masaruh/elasticsearch,masaruh/elasticsearch,glefloch/elasticsearch,LeoYao/elasticsearch,wenpos/elasticsearch,obourgain/elasticsearch,mohit/elasticsearch,Shepard1212/elasticsearch,fforbeck/elasticsearch,LeoYao/elasticsearch,JackyMai/elasticsearch,umeshdangat/elasticsearch,qwerty4030/elasticsearch,vroyer/elassandra,fforbeck/elasticsearch,wangtuo/elasticsearch,gfyoung/elasticsearch,HonzaKral/elasticsearch,Shepard1212/elasticsearch,robin13/elasticsearch,JervyShi/elasticsearch,scorpionvicky/elasticsearch,pozhidaevak/elasticsearch,fernandozhu/elasticsearch,mjason3/elasticsearch,nknize/elasticsearch,geidies/elasticsearch,fred84/elasticsearch,markwalkom/elasticsearch,bawse/elasticsearch,fred84/elasticsearch,umeshdangat/elasticsearch,fred84/elasticsearch,lks21c/elasticsearch,JervyShi/elasticsearch,JervyShi/elasticsearch,lks21c/elasticsearch,geidies/elasticsearch,rajanm/elasticsearch,kalimatas/elasticsearch,wuranbo/elasticsearch,winstonewert/elasticsearch,dongjoon-hyun/elasticsearch,rajanm/elasticsearch,shreejay/elasticsearch,gingerwizard/elasticsearch,jimczi/elasticsearch,henakamaMSFT/elasticsearch,maddin2016/elasticsearch,Shepard1212/elasticsearch,elasticdog/elasticsearch,i-am-Nathan/elasticsearch,gingerwizard/elasticsearch,rajanm/elasticsearch,JSCooke/elasticsearch,nazarewk/elasticsearch,gfyoung/elasticsearch,wangtuo/elasticsearch,shreejay/elasticsearch,GlenRSmith/elasticsearch,kalimatas/elasticsearch,jprante/elasticsearch,markwalkom/elasticsearch,jprante/elasticsearch,dongjoon-hyun/elasticsearch,robin13/elasticsearch,StefanGor/elasticsearch,nazarewk/elasticsearch,Helen-Zhao/elasticsearch,gingerwizard/elasticsearch,umeshdangat/elasticsearch,IanvsPoplicola/elasticsearch,MaineC/elasticsearch,umeshdangat/elasticsearch,robin13/elasticsearch,spiegela/elasticsearch,elasticdog/elasticsearch,markwalkom/elasticsearch,masaruh/elasticsearch,LeoYao/elasticsearch,njlawton/elasticsearch,C-Bish/elasticsearch,uschindler/elasticsearch,C-Bish/elasticsearch,rajanm/elasticsearch,ThiagoGarciaAlves/elasticsearch,fforbeck/elasticsearch,LewayneNaidoo/elasticsearch,nilabhsagar/elasticsearch,winstonewert/elasticsearch,i-am-Nathan/elasticsearch,njlawton/elasticsearch,a2lin/elasticsearch,maddin2016/elasticsearch,geidies/elasticsearch,scottsom/elasticsearch,dongjoon-hyun/elasticsearch,StefanGor/elasticsearch,LewayneNaidoo/elasticsearch,gmarz/elasticsearch,MisterAndersen/elasticsearch,winstonewert/elasticsearch,Stacey-Gammon/elasticsearch,mortonsykes/elasticsearch,ZTE-PaaS/elasticsearch,pozhidaevak/elasticsearch,sneivandt/elasticsearch,LeoYao/elasticsearch,LeoYao/elasticsearch,Stacey-Gammon/elasticsearch,kalimatas/elasticsearch,mjason3/elasticsearch,scorpionvicky/elasticsearch,GlenRSmith/elasticsearch,uschindler/elasticsearch,naveenhooda2000/elasticsearch,MaineC/elasticsearch,bawse/elasticsearch,mjason3/elasticsearch,sneivandt/elasticsearch,umeshdangat/elasticsearch,JackyMai/elasticsearch,sneivandt/elasticsearch,uschindler/elasticsearch,sneivandt/elasticsearch,strapdata/elassandra,rlugojr/elasticsearch,naveenhooda2000/elasticsearch,naveenhooda2000/elasticsearch,gingerwizard/elasticsearch,Shepard1212/elasticsearch,Helen-Zhao/elasticsearch,geidies/elasticsearch,s1monw/elasticsearch,strapdata/elassandra,markwalkom/elasticsearch,HonzaKral/elasticsearch,i-am-Nathan/elasticsearch,scottsom/elasticsearch,ThiagoGarciaAlves/elasticsearch,jprante/elasticsearch,mortonsykes/elasticsearch,MisterAndersen/elasticsearch,markwalkom/elasticsearch,JSCooke/elasticsearch,liweinan0423/elasticsearch,C-Bish/elasticsearch,LewayneNaidoo/elasticsearch,masaruh/elasticsearch,jprante/elasticsearch,nazarewk/elasticsearch,ricardocerq/elasticsearch,alexshadow007/elasticsearch,sneivandt/elasticsearch,spiegela/elasticsearch,artnowo/elasticsearch,bawse/elasticsearch,maddin2016/elasticsearch,spiegela/elasticsearch,wuranbo/elasticsearch,vroyer/elasticassandra,brandonkearby/elasticsearch,glefloch/elasticsearch,Helen-Zhao/elasticsearch,alexshadow007/elasticsearch,ThiagoGarciaAlves/elasticsearch,ThiagoGarciaAlves/elasticsearch,liweinan0423/elasticsearch,nknize/elasticsearch,s1monw/elasticsearch,rajanm/elasticsearch,njlawton/elasticsearch,mortonsykes/elasticsearch,nknize/elasticsearch,nazarewk/elasticsearch,JSCooke/elasticsearch,gmarz/elasticsearch,mortonsykes/elasticsearch,wuranbo/elasticsearch,LeoYao/elasticsearch,rajanm/elasticsearch,Stacey-Gammon/elasticsearch,s1monw/elasticsearch,brandonkearby/elasticsearch,StefanGor/elasticsearch,mikemccand/elasticsearch,spiegela/elasticsearch,s1monw/elasticsearch,strapdata/elassandra,fforbeck/elasticsearch,a2lin/elasticsearch,ricardocerq/elasticsearch,uschindler/elasticsearch,gmarz/elasticsearch,wangtuo/elasticsearch,wenpos/elasticsearch,obourgain/elasticsearch,JackyMai/elasticsearch,spiegela/elasticsearch,wenpos/elasticsearch,gingerwizard/elasticsearch,shreejay/elasticsearch,artnowo/elasticsearch,i-am-Nathan/elasticsearch,henakamaMSFT/elasticsearch,geidies/elasticsearch,rlugojr/elasticsearch,ricardocerq/elasticsearch,coding0011/elasticsearch,wangtuo/elasticsearch,IanvsPoplicola/elasticsearch,henakamaMSFT/elasticsearch,ZTE-PaaS/elasticsearch,vroyer/elasticassandra,scorpionvicky/elasticsearch,scottsom/elasticsearch,jimczi/elasticsearch,mikemccand/elasticsearch,winstonewert/elasticsearch
c06e0f276e165cd8c4e589d97d9fbde23e5b0d07
org.jenetics.doc/src/main/asciidoc/implementation/Main.adoc
org.jenetics.doc/src/main/asciidoc/implementation/Main.adoc
= Implementation details Franz WilhelmstΓΆtter <[email protected]> :Author Initials: FWi :toc: :icons: :numbered: :website: http://jenetics.io/ This site contains selected description of implementation details. include::CreateRandomSeed.adoc[] include::OptimizeMinimum.adoc[]
= Implementation protocols Franz WilhelmstΓΆtter <[email protected]> :Author Initials: FWi :toc: :icons: :numbered: :website: http://jenetics.io/ While implementing the library, a lot of concrete implementation decisions have been made. This document gives a more detailed description of some selected implementation details. include::CreateRandomSeed.adoc[] include::OptimizeMinimum.adoc[]
Update main document of 'Implementation protocol'.
Update main document of 'Implementation protocol'.
AsciiDoc
apache-2.0
jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics
0991e709f2510f9dad97e0c18f0b39dd63c88350
docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_6.adoc
= Apache Camel 3.x Upgrade Guide This document is for helping you upgrade your Apache Camel application from Camel 3.x to 3.y. For example if you are upgrading Camel 3.0 to 3.2, then you should follow the guides from both 3.0 to 3.1 and 3.1 to 3.2. == Upgrading Camel 3.5 to 3.6 === Camel Karaf The following features has been removed due they become not compatible with OSGi: `camel-atmosphere-websocket`.
= Apache Camel 3.x Upgrade Guide This document is for helping you upgrade your Apache Camel application from Camel 3.x to 3.y. For example if you are upgrading Camel 3.0 to 3.2, then you should follow the guides from both 3.0 to 3.1 and 3.1 to 3.2. == Upgrading Camel 3.5 to 3.6 === API components upgrade The `camel-braintree`, `camel-twilio` and `camel-zendesk` has updated to newer versions and regenerated their API signatures in the Camel components which may change some of the existing singatures and as well bring in new. === Camel Karaf The following features has been removed due they become not compatible with OSGi: `camel-atmosphere-websocket`.
Upgrade guide about api components updates
Upgrade guide about api components updates
AsciiDoc
apache-2.0
adessaigne/camel,nicolaferraro/camel,alvinkwekel/camel,nicolaferraro/camel,tdiesler/camel,christophd/camel,tdiesler/camel,cunningt/camel,tdiesler/camel,alvinkwekel/camel,adessaigne/camel,pax95/camel,pax95/camel,gnodet/camel,adessaigne/camel,apache/camel,apache/camel,mcollovati/camel,cunningt/camel,adessaigne/camel,pax95/camel,mcollovati/camel,nikhilvibhav/camel,tadayosi/camel,alvinkwekel/camel,pmoerenhout/camel,cunningt/camel,pax95/camel,pmoerenhout/camel,nikhilvibhav/camel,pmoerenhout/camel,apache/camel,tdiesler/camel,tadayosi/camel,adessaigne/camel,gnodet/camel,cunningt/camel,gnodet/camel,christophd/camel,christophd/camel,apache/camel,cunningt/camel,christophd/camel,tadayosi/camel,gnodet/camel,cunningt/camel,gnodet/camel,tadayosi/camel,nicolaferraro/camel,nicolaferraro/camel,pmoerenhout/camel,alvinkwekel/camel,mcollovati/camel,christophd/camel,nikhilvibhav/camel,apache/camel,pmoerenhout/camel,apache/camel,pax95/camel,christophd/camel,tadayosi/camel,tdiesler/camel,adessaigne/camel,pax95/camel,mcollovati/camel,tadayosi/camel,pmoerenhout/camel,tdiesler/camel,nikhilvibhav/camel
21c7c24fc98d97f072d3a36f4e38a6089cf41a54
docs/guiding-philosophy.adoc
docs/guiding-philosophy.adoc
= Cypher Design Philosophy Guidelines An informal manifesto was defined to ensure the consistent ongoing development of the Cypher language. The aim was to incorporate as many underlying principles as were deemed useful and relevant, and to distill these to no more than 15 or so rules to render the philosophy more useful and digestible. Suggestions for changing the language ought to be guided by the following rules: . Follow these rules unless there’s a better way. . Cypher is a high-level Graph Query Language. . Design should be validated by user needs. . Readability is better than terseness. . Declarative is better than imperative. . Composability is better than complexity. . Explicit is better than implicit. . Visual is better than textual. . Familiar to users of SQL and inspired by Python. . Prefer a single way to do things. . Consistency is important. Learning one part of the language should help understanding other parts. . Errors should never pass silently, unless explicitly silenced. . Progress is more important than perfection, but consideration beats hastiness. . Don’t leave holes in the specification that allow the implementation to leak through. . Never be too proud to throw something away.
= Cypher Design Philosophy Guidelines An informal manifesto was defined to ensure the consistent ongoing development of the Cypher language. The aim was to incorporate as many underlying principles as were deemed useful and relevant, and to distill these to no more than 15 or so rules to render the philosophy more useful and digestible. Suggestions for changing the language ought to be guided by the following rules: 1. Follow these rules unless there’s a better way. 2. Cypher is a high-level Graph Query Language. 3. Design should be validated by user needs. 4. Readability is better than terseness. 5. Declarative is better than imperative. 6. Composability is better than complexity. 7. Explicit is better than implicit. 8. Visual is better than textual. 9. Familiar to users of SQL and inspired by Python. 10. Prefer a single way to do things. 11. Consistency is important. Learning one part of the language should help understanding other parts. 12. Errors should never pass silently, unless explicitly silenced. 13. Progress is more important than perfection, but consideration beats hastiness. 14. Don’t leave holes in the specification that allow the implementation to leak through. 15. Never be too proud to throw something away.
Use numbered list in source
Use numbered list in source
AsciiDoc
apache-2.0
opencypher/openCypher,opencypher/openCypher,opencypher/openCypher,opencypher/openCypher
fde115275e520f89a924cc3b77a04fa5e5455820
gql-docs/src/docs/asciidoc/index.adoc
gql-docs/src/docs/asciidoc/index.adoc
= GQL :revnumber: {releaseVersion} :numbered: :imagesDir: images/ :baseDir: ../../../../.. :stem: :core: {baseDir}/gql-core :coreMain: {core}/src/main/java :testMain: {core}/src/test/groovy :testResources: {core}/src/test/resources :ratpack: {baseDir}/gql-ratpack [quote] GQL is a library created to make it easier to expose and consume GraphQL services. [sidebar] .Apache **** The *GQL* project is open sourced under the http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2 License]. **** include::intro.adoc[] include::getting.adoc[] include::dsl.adoc[] include::relay.adoc[] include::references.adoc[]
= GQL :revnumber: {releaseVersion} :numbered: :imagesDir: images/ :baseDir: ../../../../.. :baseDirFirstLevel: ../../../.. :stem: :core: {baseDir}/gql-core :coreMain: {core}/src/main/java :testMain: {core}/src/test/groovy :testResources: {core}/src/test/resources :ratpack: {baseDir}/gql-ratpack [quote] GQL is a library created to make it easier to expose and consume GraphQL services. [sidebar] .Apache **** The *GQL* project is open sourced under the http://www.apache.org/licenses/LICENSE-2.0.html[Apache 2 License]. **** include::intro.adoc[] include::getting.adoc[] include::dsl.adoc[] include::relay.adoc[] include::ratpack.adoc[] include::references.adoc[]
Fix include ratpack chapter in GQL guide
Fix include ratpack chapter in GQL guide
AsciiDoc
apache-2.0
grooviter/gql,grooviter/gql,grooviter/gql
33c189e7425e6812afc8c3905eda414b8fd247e1
doc/todo.adoc
doc/todo.adoc
= To-Do List - mock_cone_detector creates infinite area and overflows h - (*DONE*) new waypoints shorter than old don't delete existing waypoints - adjust waypoints for start position and cone position - cone area goes down when very close to cone - (*DONE*) parameterize throttle and steering PWM values - touch sensor does not work - cone detection in bright light does not work - GUIDED mode does not work - Encode PWM values or range set to use in the waypoints file - If waypoint encountered before cone is seen, rover goes into HOLD mode with no recovery. Needs to be fixed. == Possible To-Do - (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky, while WP_SPEED is not.) - Have a way of manually triggering parameter reload == Notes MAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the offset between the map origin and base_link (for /mavros/local_position/pose and /mavros/local_position/odom).
= To-Do List - mock_cone_detector creates infinite area and overflows h - (*DONE*) new waypoints shorter than old don't delete existing waypoints - adjust waypoints for start position and cone position - cone area goes down when very close to cone - (*DONE*) parameterize throttle and steering PWM values - touch sensor does not work - (*DONE*) cone detection in bright light does not work - GUIDED mode does not work - Encode PWM values or range set to use in the waypoints file - If waypoint encountered before cone is seen, rover goes into HOLD mode with no recovery. Needs to be fixed. == Possible To-Do - (*DONE*) Change from using WP_SPEED to CRUISE_SPEED. (Seems to be used by Vicky, while WP_SPEED is not.) - Have a way of manually triggering parameter reload == Notes MAV_CMD_DO_SET_HOME appears to reset the map origin, as well as zero the offset between the map origin and base_link (for /mavros/local_position/pose and /mavros/local_position/odom).
Update to-do with new completions
Update to-do with new completions
AsciiDoc
apache-2.0
ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan,ProgrammingRobotsStudyGroup/robo_magellan
9f42fa4267ad46516d913d2c9d0e812d5ed6e409
README.adoc
README.adoc
= Opal Runtime for Node.js == Usage ```javascript var Opal = require('opal-runtime').Opal; // Now let's have fun with Opal! ```
# Opal Runtime for Node.js ## Usage ```javascript var Opal = require('opal-runtime').Opal; // Now let's have fun with Opal! ```
Use Markdown compatible syntax for better rendering on npmjs.com
Use Markdown compatible syntax for better rendering on npmjs.com
AsciiDoc
mit
Mogztter/opal-node-runtime
c6700ca5d8b25d9161541d66b189b947d343e8d4
src/main/asciidoc/patterns/category-improve-processes.adoc
src/main/asciidoc/patterns/category-improve-processes.adoc
[[improve-processes]] === Practices to Improve Processes [[fig-improve-processes]] .Practices for "Improve Processes" image::improve-practice-processes.png["Practices for Improve Processes", title="Practices to improve processes"] For an overview of other improvement practices, see <<improve-practices-overview>>.
[[improve-processes]] === Practices to Improve Processes [[fig-improve-processes]] .Practices for "Improve Processes" image::improve-practice-processes.png["Practices for Improve Processes", title="Practices to improve processes"] For an overview of other improvement practices, see <<improve-practices-overview>>. One way to improve the processes is to resort to https://mobprogramming.org[Mob Programming] for onsite teams or https://www.remotemobprogramming.org[Remote Mob Programming] for distributed teams.
Add mob programming and remote mob programming
Add mob programming and remote mob programming
AsciiDoc
apache-2.0
rschimmack/aim42,rschimmack/aim42,feststelltaste/aim42,aim42/aim42,aim42/aim42,feststelltaste/aim42
ec77f18c79df9911cb5218278db283eca1857490
libbeat/docs/shared-logstash-config.asciidoc
libbeat/docs/shared-logstash-config.asciidoc
////////////////////////////////////////////////////////////////////////// //// This content is shared by all Elastic Beats. Make sure you keep the //// descriptions here generic enough to work for all Beats that include //// this file. When using cross references, make sure that the cross //// references resolve correctly for any files that include this one. //// Use the appropriate variables defined in the index.asciidoc file to //// resolve Beat names: beatname_uc and beatname_lc. //// Use the following include to pull this content into a doc file: //// include::../../libbeat/docs/shared-logstash-config.asciidoc[] ////////////////////////////////////////////////////////////////////////// If you want to use Logstash to perform additional processing on the data collected by {beatname_uc}, you need to configure {beatname_uc} to use Logstash. To do this, you edit the {beatname_uc} configuration file to disable the Elasticsearch output and use the Logstash output instead: [source,yaml] ------------------------------------------------------------------------------ output: logstash: hosts: ["127.0.0.1:5044"] # configure logstash plugin to loadbalance events between # configured logstash hosts #loadbalance: false ------------------------------------------------------------------------------ In this configuration, `hosts` specifies the Logstash server and the port (`5044`) where Logstash is configured to listen for incoming Beats connections. To use this configuration, you must also {libbeat}/getting-started.html#logstash-setup[set up Logstash] to receive events from Beats.
////////////////////////////////////////////////////////////////////////// //// This content is shared by all Elastic Beats. Make sure you keep the //// descriptions here generic enough to work for all Beats that include //// this file. When using cross references, make sure that the cross //// references resolve correctly for any files that include this one. //// Use the appropriate variables defined in the index.asciidoc file to //// resolve Beat names: beatname_uc and beatname_lc. //// Use the following include to pull this content into a doc file: //// include::../../libbeat/docs/shared-logstash-config.asciidoc[] ////////////////////////////////////////////////////////////////////////// If you want to use Logstash to perform additional processing on the data collected by {beatname_uc}, you need to configure {beatname_uc} to use Logstash. To do this, you edit the {beatname_uc} configuration file to disable the Elasticsearch output by commenting it out and enable the Logstash output by uncommenting the logstash section: [source,yaml] ------------------------------------------------------------------------------ output: logstash: hosts: ["127.0.0.1:5044"] # configure logstash plugin to loadbalance events between # configured logstash hosts #loadbalance: false ------------------------------------------------------------------------------ In this configuration, `hosts` specifies the Logstash server and the port (`5044`) where Logstash is configured to listen for incoming Beats connections. To use this configuration, you must also {libbeat}/getting-started.html#logstash-setup[set up Logstash] to receive events from Beats.
Clarify how to enable and disable logstash output
Clarify how to enable and disable logstash output
AsciiDoc
mit
yapdns/yapdnsbeat,yapdns/yapdnsbeat
120af761a09ac7ffae508346646671c41858b38d
docs/manual/src/docs/asciidoc/_includes/servlet/integrations/jackson.adoc
docs/manual/src/docs/asciidoc/_includes/servlet/integrations/jackson.adoc
[[jackson]] == Jackson Support Spring Security has added Jackson Support for persisting Spring Security related classes. This can improve the performance of serializing Spring Security related classes when working with distributed sessions (i.e. session replication, Spring Session, etc). To use it, register the `SecurityJackson2Modules.getModules(ClassLoader)` as https://wiki.fasterxml.com/JacksonFeatureModules[Jackson Modules]. [source,java] ---- ObjectMapper mapper = new ObjectMapper(); ClassLoader loader = getClass().getClassLoader(); List<Module> modules = SecurityJackson2Modules.getModules(loader); mapper.registerModules(modules); // ... use ObjectMapper as normally ... SecurityContext context = new SecurityContextImpl(); // ... String json = mapper.writeValueAsString(context); ----
[[jackson]] == Jackson Support Spring Security provides Jackson support for persisting Spring Security related classes. This can improve the performance of serializing Spring Security related classes when working with distributed sessions (i.e. session replication, Spring Session, etc). To use it, register the `SecurityJackson2Modules.getModules(ClassLoader)` with `ObjectMapper` (https://github.com/FasterXML/jackson-databind[jackson-databind]): [source,java] ---- ObjectMapper mapper = new ObjectMapper(); ClassLoader loader = getClass().getClassLoader(); List<Module> modules = SecurityJackson2Modules.getModules(loader); mapper.registerModules(modules); // ... use ObjectMapper as normally ... SecurityContext context = new SecurityContextImpl(); // ... String json = mapper.writeValueAsString(context); ---- [NOTE] ==== The following Spring Security modules provide Jackson support: - spring-security-core (`CoreJackson2Module`) - spring-security-web (`WebJackson2Module`, `WebServletJackson2Module`, `WebServerJackson2Module`) - <<oauth2client, spring-security-oauth2-client>> (`OAuth2ClientJackson2Module`) - spring-security-cas (`CasJackson2Module`) ====
Document Jackson serialization support for OAuth 2.0 Client
Document Jackson serialization support for OAuth 2.0 Client Fixes gh-8075
AsciiDoc
apache-2.0
spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security
3c87c344319dc99f210dff01535d124a658e19b0
README.adoc
README.adoc
= flexy-pool Author <[email protected]> v1.0.0, 2014-02-25 :homepage: http://vladmihalcea.com/ == Introduction The flexy-pool library brings adaptability to a given Connection Pool, allowing it to resize on demand. This is very handy since most connection pools offer a limited set of dynamic configuration strategies. == Features * extensive connection pool support ** http://docs.codehaus.org/display/BTM/Home[Bitronix Transaction Manager] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP2] ** http://www.mchange.com/projects/c3p0/[C3P0] ** http://jolbox.com/[BoneCP] ** http://brettwooldridge.github.io/HikariCP/[HikariCP] * statistics support ** source connection acquiring time histogram ** total connection acquiring time histogram ** retries attempts histogram ** maximum CP size histogram ** connection request count histogram ** connection lease time histogram == Documentation . https://github.com/vladmihalcea/flexy-pool/wiki/Installation-Guide[Installation Guide] . https://github.com/vladmihalcea/flexy-pool/wiki/User-Guide[User Guide] [IMPORTANT] Flexy Pool has not yet been released to OSS Maven Repository.
= Flexy Pool Author <[email protected]> v1.0.0, 2014-02-25 :homepage: http://vladmihalcea.com/ == Introduction The Flexy Pool library brings adaptability to a given Connection Pool, allowing it to resize on demand. This is very handy since most connection pools offer a limited set of dynamic configuration strategies. == Features * extensive connection pool support ** http://docs.codehaus.org/display/BTM/Home[Bitronix Transaction Manager] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP] ** http://commons.apache.org/proper/commons-dbcp/[Apache DBCP2] ** http://www.mchange.com/projects/c3p0/[C3P0] ** http://jolbox.com/[BoneCP] ** http://brettwooldridge.github.io/HikariCP/[HikariCP] * statistics support ** source connection acquiring time histogram ** total connection acquiring time histogram ** retries attempts histogram ** maximum CP size histogram ** connection request count histogram ** connection lease time histogram == Documentation . https://github.com/vladmihalcea/flexy-pool/wiki/Installation-Guide[Installation Guide] . https://github.com/vladmihalcea/flexy-pool/wiki/User-Guide[User Guide] [IMPORTANT] Flexy Pool has not yet been released to OSS Maven Repository.
Use Flexy Pool instead of flexy-pool
Use Flexy Pool instead of flexy-pool
AsciiDoc
apache-2.0
vladmihalcea/flexy-pool,mosoft521/flexy-pool,wgpshashank/flexy-pool
642109c97a18bc4d12b9b20595cc7349d4d7fc70
README.adoc
README.adoc
= Bestikk Opal Compiler A simple tool to compile Ruby code to JavaScript using Opal. == Install $ npm i --save-dev bestikk-opal-compiler == Usage ```javascript var opalCompiler = require('bestikk-opal-compiler'); var compiler = opalCompiler({ dynamicRequireLevel: 'ignore', defaultPaths: ['special/directory'] }); compiler.compile('hello.rb', 'hello.js'); // <1> compiler.compile('module/hello', 'module.js', ['extra/directory']); // <2> ``` <1> Compile Ruby script `hello.rb` to `hello.js` <2> Compile Ruby module `module/hello` to `module.js` using an extra directory
# Bestikk Opal Compiler ifdef::env-github[] image:http://img.shields.io/npm/v/bestikk-opal-compiler.svg[npm version, link=https://www.npmjs.org/package/bestikk-opal-compiler] endif::[] A simple tool to compile Ruby code to JavaScript using Opal. ## Install $ npm i --save-dev bestikk-opal-compiler ## Usage ```javascript var opalCompiler = require('bestikk-opal-compiler'); var compiler = opalCompiler({ dynamicRequireLevel: 'ignore', defaultPaths: ['special/directory'] }); compiler.compile('hello.rb', 'hello.js'); // <1> compiler.compile('module/hello', 'module.js', ['extra/directory']); // <2> ``` <1> Compile Ruby script `hello.rb` to `hello.js` <2> Compile Ruby module `module/hello` to `module.js` using an extra directory
Use Markdown compatible syntax and add npm badge
Use Markdown compatible syntax and add npm badge
AsciiDoc
mit
bestikk/bestikk-opal-compiler,bestikk/bestikk-opal-compiler
4fcdb9085da0a32e1bbd177aadeedcbffae5bd69
README.asciidoc
README.asciidoc
= Microservices libraries comparison == Purpose This project is the companion of this Blog article: https://cdelmas.github.io/2015/11/01/A-comparison-of-Microservices-Frameworks.html. == Build To build it, just run `gradle shadowJar` in the command line. == Run Then you can run each server using `java -jar <server>.jar`.
= Microservices libraries comparison == Purpose This project is the companion of this Blog article: https://cdelmas.github.io/2015/11/01/A-comparison-of-Microservices-Frameworks.html. == Setup You will need a keystore. You can follow a tutorial http://restlet.com/technical-resources/restlet-framework/guide/2.3/core/security/https[here] to set up a keystore with a self-signed certificate. One of the client libraries requires you to import the Facebook's certificate into the truststore. To do that, you can follow these http://stackoverflow.com/questions/373295/digital-certificate-how-to-import-cer-file-in-to-truststore-file-using[instructions]. == Build To build the servers, just run `gradlew shadowJar` in the command line. By the way, you need a JDK 8, but I guess you're up-to-date :) == Run Then you can run each server using `java -Djavax.net.ssl.trustStore=/path/to/trustStore.jks -Djavax.net.ssl.trustStorePassword=thepass -Djavax.net.ssl.keyStorePassword=thePass -Djavax.net.ssl.keyStorePath=/path/to/keyStore.jks -jar <server>.jar`. Don't forget to replace `<server>` with the correct jar name. The Dropwizard server needs a special command line: `java ... -jar dropwizard.jar server /path/to/dropwizard-server.yml`. == Notes There are no unit tests, and it is fully assumed. == The missing guys In a future version, I will add Restx, Payara and Swarm to the comparison. It is a long exercise though, but stay in touch ;)
Add a more complete documentation.
Add a more complete documentation.
AsciiDoc
apache-2.0
cdelmas/microservices-comparison
70eea8dc670ca17dd453f7d897dcd644f648b36c
docs/modules/ROOT/pages/whats-new.adoc
docs/modules/ROOT/pages/whats-new.adoc
[[new]] = What's New in Spring Security 5.8 Spring Security 5.8 provides a number of new features. Below are the highlights of the release. * https://github.com/spring-projects/spring-security/pull/11782[gh-11782] - @WithMockUser Supported as Merged Annotation
[[new]] = What's New in Spring Security 5.8 Spring Security 5.8 provides a number of new features. Below are the highlights of the release. * https://github.com/spring-projects/spring-security/pull/11638[gh-11638] - Refresh remote JWK when unknown KID error occurs * https://github.com/spring-projects/spring-security/pull/11782[gh-11782] - @WithMockUser Supported as Merged Annotation * https://github.com/spring-projects/spring-security/issues/11661[gh-11661] - Configurable authentication converter for resource-servers with token introspection * https://github.com/spring-projects/spring-security/pull/11771[gh-11771] - `HttpSecurityDsl` should support `apply` method
Update What's New for 5.8
Update What's New for 5.8
AsciiDoc
apache-2.0
spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security
054a17083508356627a85c9bfb8d0a5ebe097fac
docs/java-api/admin/indices/put-mapping.asciidoc
docs/java-api/admin/indices/put-mapping.asciidoc
[[java-admin-indices-put-mapping]] ==== Put Mapping You can add mappings at index creation time: ["source","java",subs="attributes,callouts,macros"] -------------------------------------------------- include-tagged::{client-tests}/IndicesDocumentationIT.java[index-with-mapping] -------------------------------------------------- <1> <<java-admin-indices-create-index,Creates an index>> called `twitter` <2> Add a `_doc` type with a field called `message` that has the datatype `text`. There are several variants of the above `addMapping` method, some taking an `XContentBuilder` or a `Map` with the mapping definition as arguments. Make sure to check the javadocs to pick the simplest one for your use case. The PUT mapping API also allows for updating the mapping after index creation. In this case you can provide the mapping as a String similar to the REST API syntax: ["source","java",subs="attributes,callouts,macros"] -------------------------------------------------- include-tagged::{client-tests}/IndicesDocumentationIT.java[putMapping-request-source] -------------------------------------------------- <1> Puts a mapping on existing index called `twitter` <2> Adds a new field `name` to the mapping <3> The type can be also provided within the source :base-dir!:
[[java-admin-indices-put-mapping]] ==== Put Mapping You can add mappings at index creation time: ["source","java",subs="attributes,callouts,macros"] -------------------------------------------------- include-tagged::{client-tests}/IndicesDocumentationIT.java[index-with-mapping] -------------------------------------------------- <1> <<java-admin-indices-create-index,Creates an index>> called `twitter` <2> Add a `_doc` type with a field called `message` that has the datatype `text`. There are several variants of the above `addMapping` method, some taking an `XContentBuilder` or a `Map` with the mapping definition as arguments. Make sure to check the javadocs to pick the simplest one for your use case. The PUT mapping API also allows for updating the mapping after index creation. In this case you can provide the mapping as a String similar to the REST API syntax: ["source","java",subs="attributes,callouts,macros"] -------------------------------------------------- include-tagged::{client-tests}/IndicesDocumentationIT.java[putMapping-request-source] -------------------------------------------------- <1> Puts a mapping on existing index called `twitter` <2> Adds a new field `name` to the mapping <3> The type can be also provided within the source
Add a change that was accidentally left out of the types documentation commit.
Add a change that was accidentally left out of the types documentation commit.
AsciiDoc
apache-2.0
strapdata/elassandra,strapdata/elassandra,strapdata/elassandra,strapdata/elassandra,vroyer/elassandra,vroyer/elassandra,strapdata/elassandra,vroyer/elassandra
ab26050fe702a2287cca2662fd3a585fad347eef
spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/system-requirements.adoc
spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/system-requirements.adoc
[[getting-started.system-requirements]] == System Requirements Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to and including Java 18. {spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required. Explicit build support is provided for the following build tools: |=== | Build Tool | Version | Maven | 3.5+ | Gradle | 6.8.x, 6.9.x, and 7.x |=== [[getting-started.system-requirements.servlet-containers]] === Servlet Containers Spring Boot supports the following embedded servlet containers: |=== | Name | Servlet Version | Tomcat 9.0 | 4.0 | Jetty 9.4 | 3.1 | Jetty 10.0 | 4.0 | Undertow 2.0 | 4.0 |=== You can also deploy Spring Boot applications to any servlet 3.1+ compatible container.
[[getting-started.system-requirements]] == System Requirements Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to and including Java 19. {spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required. Explicit build support is provided for the following build tools: |=== | Build Tool | Version | Maven | 3.5+ | Gradle | 6.8.x, 6.9.x, and 7.x |=== [[getting-started.system-requirements.servlet-containers]] === Servlet Containers Spring Boot supports the following embedded servlet containers: |=== | Name | Servlet Version | Tomcat 9.0 | 4.0 | Jetty 9.4 | 3.1 | Jetty 10.0 | 4.0 | Undertow 2.0 | 4.0 |=== You can also deploy Spring Boot applications to any servlet 3.1+ compatible container.
Document support for Java 19
Document support for Java 19 Closes gh-32259
AsciiDoc
apache-2.0
mdeinum/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,vpavic/spring-boot,scottfrederick/spring-boot,vpavic/spring-boot,dreis2211/spring-boot,scottfrederick/spring-boot,htynkn/spring-boot,htynkn/spring-boot,htynkn/spring-boot,mdeinum/spring-boot,htynkn/spring-boot,scottfrederick/spring-boot,mdeinum/spring-boot,scottfrederick/spring-boot,wilkinsona/spring-boot,aahlenst/spring-boot,dreis2211/spring-boot,wilkinsona/spring-boot,htynkn/spring-boot,aahlenst/spring-boot,spring-projects/spring-boot,aahlenst/spring-boot,dreis2211/spring-boot,htynkn/spring-boot,wilkinsona/spring-boot,vpavic/spring-boot,mdeinum/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,aahlenst/spring-boot,aahlenst/spring-boot,wilkinsona/spring-boot,wilkinsona/spring-boot,vpavic/spring-boot,scottfrederick/spring-boot,spring-projects/spring-boot,dreis2211/spring-boot,spring-projects/spring-boot,wilkinsona/spring-boot,mdeinum/spring-boot,spring-projects/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,scottfrederick/spring-boot,dreis2211/spring-boot,aahlenst/spring-boot
ec70339b4aef7f6067392d277bc5b5aa906b12b4
README.adoc
README.adoc
= Mongo Client image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-mongo-client["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-mongo-client/"] An asynchronous client for interacting with a MongoDB database Please see the in source asciidoc documentation or the main documentation on the web-site for a full description of Mongo service: * Web-site docs * link:vertx-mongo-client/src/main/asciidoc/java/index.adoc[Java in-source docs] * link:vertx-mongo-client/src/main/asciidoc/js/index.adoc[JavaScript in-source docs] * link:vertx-mongo-client/src/main/asciidoc/groovy/index.adoc[Groovy in-source docs]
= Mongo Client image:https://vertx.ci.cloudbees.com/buildStatus/icon?job=vert.x3-mongo-client["Build Status",link="https://vertx.ci.cloudbees.com/view/vert.x-3/job/vert.x3-mongo-client/"] An asynchronous client for interacting with a MongoDB database Please see the in source asciidoc documentation or the main documentation on the web-site for a full description of Mongo service: * Web-site docs * link:vertx-mongo-client/src/main/asciidoc/java/index.adoc[Java in-source docs] * link:vertx-mongo-client/src/main/asciidoc/js/index.adoc[JavaScript in-source docs] * link:vertx-mongo-client/src/main/asciidoc/groovy/index.adoc[Groovy in-source docs] ``` docker run --rm --name vertx-mongo -p 27017:27017 mongo ```
Update readme with how to run docker for tests
Update readme with how to run docker for tests
AsciiDoc
apache-2.0
diabolicallabs/vertx-mongo-client,diabolicallabs/vertx-mongo-client
66d6f772d71bc2c81d71be3e8b08d2a83ba58341
rest_api/index.adoc
rest_api/index.adoc
[id="welcome-index"] = {product-title} {product-version} REST APIs include::modules/common-attributes.adoc[] :context: rest-apis toc::[] include::modules/apis.adoc[leveloffset=+1]
[id="rest-api"] = {product-title} {product-version} REST APIs include::modules/common-attributes.adoc[] :context: rest-apis toc::[] include::modules/apis.adoc[leveloffset=+1]
Add proper ID to REST API assembly
Add proper ID to REST API assembly
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
87a29ef290e70708b8dc4f7a47cfc6881af99ddd
docs/quickstart.adoc
docs/quickstart.adoc
// Copyright 2015 Cloudera, Inc. // // 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 // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. [[quickstart]] = Kudu Quickstart :author: Kudu Team :imagesdir: ./images :icons: font :toc: left :toclevels: 3 :doctype: book :backend: html5 :sectlinks: :experimental: This quickstart shows how to set up and run a VirtualBox virtual machine pre-installed with Kudu, Kudu_Impala, and CDH. This is the quickest way to take Kudu for a spin. [[quickstart_vm]] == Get The Kudu Quickstart VM Follow these link:https://github.com.cloudera/kudu-examples/[instructions] to download and set up the Kudu Quickstart VM. The VM contains Kudu, Impala, and other Hadoop ecosystem projects, for your convenience. == Load Some Data TBD == Retrieve Some Data TBD == Next Steps - link:installation.html[Installing Kudu] - link:configuration.html[Configuring Kudu]
// Copyright 2015 Cloudera, Inc. // // 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 // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. [[quickstart]] = Kudu Quickstart :author: Kudu Team :imagesdir: ./images :icons: font :toc: left :toclevels: 3 :doctype: book :backend: html5 :sectlinks: :experimental: This quickstart shows how to set up and run a VirtualBox virtual machine pre-installed with Kudu, Kudu_Impala, and CDH. This is the quickest way to take Kudu for a spin. [[quickstart_vm]] == Get The Kudu Quickstart VM Follow these link:https://github.com/cloudera/kudu-examples/[instructions] to download and set up the Kudu Quickstart VM. The VM contains Kudu, Impala, and other Hadoop ecosystem projects, for your convenience. == Load Some Data TBD == Retrieve Some Data TBD == Next Steps - link:installation.html[Installing Kudu] - link:configuration.html[Configuring Kudu]
Fix link to kudu-examples in the docs
Fix link to kudu-examples in the docs Change-Id: I2837b2e33f849a366a762a83eeaa487b3d650242 Reviewed-on: http://gerrit.cloudera.org:8080/1025 Reviewed-by: Todd Lipcon <[email protected]> Tested-by: Todd Lipcon <[email protected]>
AsciiDoc
apache-2.0
InspurUSA/kudu,helifu/kudu,cloudera/kudu,EvilMcJerkface/kudu,EvilMcJerkface/kudu,andrwng/kudu,InspurUSA/kudu,cloudera/kudu,EvilMcJerkface/kudu,andrwng/kudu,InspurUSA/kudu,cloudera/kudu,andrwng/kudu,EvilMcJerkface/kudu,InspurUSA/kudu,andrwng/kudu,helifu/kudu,EvilMcJerkface/kudu,helifu/kudu,cloudera/kudu,EvilMcJerkface/kudu,InspurUSA/kudu,cloudera/kudu,cloudera/kudu,EvilMcJerkface/kudu,helifu/kudu,andrwng/kudu,cloudera/kudu,andrwng/kudu,helifu/kudu,EvilMcJerkface/kudu,andrwng/kudu,helifu/kudu,helifu/kudu,EvilMcJerkface/kudu,InspurUSA/kudu,helifu/kudu,InspurUSA/kudu,cloudera/kudu,cloudera/kudu,InspurUSA/kudu,andrwng/kudu,helifu/kudu,InspurUSA/kudu,andrwng/kudu
897a243fa036a8a86ae783fc86979a401c1d2310
networking/hardware_networks/configuring-sriov-device.adoc
networking/hardware_networks/configuring-sriov-device.adoc
[id="configuring-sriov-device"] = Configuring an SR-IOV network device include::modules/common-attributes.adoc[] :context: configuring-sriov-device toc::[] You can configure a Single Root I/O Virtualization (SR-IOV) device in your cluster. include::modules/nw-sriov-device-discovery.adoc[leveloffset=+1] include::modules/nw-sriov-configuring-device.adoc[leveloffset=+1] .Next steps * xref:../../networking/hardware_networks/configuring-sriov-net-attach.adoc#configuring-sriov-net-attach[Configuring a SR-IOV network attachment]
[id="configuring-sriov-device"] = Configuring an SR-IOV network device include::modules/common-attributes.adoc[] :context: configuring-sriov-device toc::[] You can configure a Single Root I/O Virtualization (SR-IOV) device in your cluster. include::modules/nw-sriov-device-discovery.adoc[leveloffset=+1] include::modules/nw-sriov-configuring-device.adoc[leveloffset=+1] include::modules/nw-sriov-nic-partitioning.adoc[leveloffset=+1] .Next steps * xref:../../networking/hardware_networks/configuring-sriov-net-attach.adoc#configuring-sriov-net-attach[Configuring a SR-IOV network attachment]
Add missing module for SR-IOV
Add missing module for SR-IOV
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
4dae104bc60d451616cc43b3d8e4134b87e1b018
operators/understanding/olm-understanding-operatorhub.adoc
operators/understanding/olm-understanding-operatorhub.adoc
[id="olm-understanding-operatorhub"] = Understanding OperatorHub include::modules/common-attributes.adoc[] :context: olm-understanding-operatorhub toc::[] include::modules/olm-operatorhub-overview.adoc[leveloffset=+1] include::modules/olm-operatorhub-architecture.adoc[leveloffset=+1] [id="olm-understanding-operatorhub-resources"] == Additional resources * xref:../../operators/understanding/olm/olm-understanding-olm.adoc#olm-catalogsource_olm-understanding-olm[Catalog source] * xref:../../operators/operator_sdk/osdk-about.adoc#osdk-about[About the Operator SDK] * xref:../../operators/operator_sdk/osdk-generating-csvs.adoc#osdk-generating-csvs[Generating a ClusterServiceVersion (CSV)] * xref:../../operators/understanding/olm/olm-workflow.adoc#olm-upgrades_olm-workflow[Operator installation and upgrade workflow in OLM] * link:https://connect.redhat.com[Red Hat Partner Connect] * link:https://marketplace.redhat.com[Red Hat Marketplace]
[id="olm-understanding-operatorhub"] = Understanding OperatorHub include::modules/common-attributes.adoc[] :context: olm-understanding-operatorhub toc::[] include::modules/olm-operatorhub-overview.adoc[leveloffset=+1] include::modules/olm-operatorhub-architecture.adoc[leveloffset=+1] [id="olm-understanding-operatorhub-resources"] == Additional resources * xref:../../operators/understanding/olm/olm-understanding-olm.adoc#olm-catalogsource_olm-understanding-olm[Catalog source] * xref:../../operators/operator_sdk/osdk-about.adoc#osdk-about[About the Operator SDK] * xref:../../operators/operator_sdk/osdk-generating-csvs.adoc#osdk-generating-csvs[Defining cluster service versions (CSVs)] * xref:../../operators/understanding/olm/olm-workflow.adoc#olm-upgrades_olm-workflow[Operator installation and upgrade workflow in OLM] * link:https://connect.redhat.com[Red Hat Partner Connect] * link:https://marketplace.redhat.com[Red Hat Marketplace]
Fix link title to osdk-generating-csvs
Fix link title to osdk-generating-csvs
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
77b778ce95005e74c60a5fb2018e4ee87295366d
spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/system-requirements.adoc
spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/system-requirements.adoc
[[getting-started.system-requirements]] == System Requirements Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to and including Java 16. {spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required. Explicit build support is provided for the following build tools: |=== | Build Tool | Version | Maven | 3.5+ | Gradle | 6.8.x, 6.9.x, and 7.x |=== [[getting-started.system-requirements.servlet-containers]] === Servlet Containers Spring Boot supports the following embedded servlet containers: |=== | Name | Servlet Version | Tomcat 9.0 | 4.0 | Jetty 9.4 | 3.1 | Jetty 10.0 | 4.0 | Undertow 2.0 | 4.0 |=== You can also deploy Spring Boot applications to any Servlet 3.1+ compatible container.
[[getting-started.system-requirements]] == System Requirements Spring Boot {spring-boot-version} requires https://www.java.com[Java 8] and is compatible up to and including Java 17. {spring-framework-docs}/[Spring Framework {spring-framework-version}] or above is also required. Explicit build support is provided for the following build tools: |=== | Build Tool | Version | Maven | 3.5+ | Gradle | 6.8.x, 6.9.x, and 7.x |=== [[getting-started.system-requirements.servlet-containers]] === Servlet Containers Spring Boot supports the following embedded servlet containers: |=== | Name | Servlet Version | Tomcat 9.0 | 4.0 | Jetty 9.4 | 3.1 | Jetty 10.0 | 4.0 | Undertow 2.0 | 4.0 |=== You can also deploy Spring Boot applications to any Servlet 3.1+ compatible container.
Document support for Java 17
Document support for Java 17 Closes gh-26767
AsciiDoc
apache-2.0
michael-simons/spring-boot,aahlenst/spring-boot,wilkinsona/spring-boot,michael-simons/spring-boot,vpavic/spring-boot,chrylis/spring-boot,dreis2211/spring-boot,scottfrederick/spring-boot,spring-projects/spring-boot,aahlenst/spring-boot,Buzzardo/spring-boot,aahlenst/spring-boot,htynkn/spring-boot,michael-simons/spring-boot,Buzzardo/spring-boot,spring-projects/spring-boot,wilkinsona/spring-boot,chrylis/spring-boot,michael-simons/spring-boot,chrylis/spring-boot,wilkinsona/spring-boot,wilkinsona/spring-boot,scottfrederick/spring-boot,htynkn/spring-boot,scottfrederick/spring-boot,scottfrederick/spring-boot,scottfrederick/spring-boot,chrylis/spring-boot,vpavic/spring-boot,chrylis/spring-boot,htynkn/spring-boot,wilkinsona/spring-boot,dreis2211/spring-boot,dreis2211/spring-boot,wilkinsona/spring-boot,vpavic/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,mdeinum/spring-boot,spring-projects/spring-boot,vpavic/spring-boot,Buzzardo/spring-boot,aahlenst/spring-boot,mdeinum/spring-boot,scottfrederick/spring-boot,spring-projects/spring-boot,mdeinum/spring-boot,vpavic/spring-boot,htynkn/spring-boot,mdeinum/spring-boot,spring-projects/spring-boot,dreis2211/spring-boot,htynkn/spring-boot,spring-projects/spring-boot,htynkn/spring-boot,chrylis/spring-boot,Buzzardo/spring-boot,aahlenst/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,aahlenst/spring-boot,michael-simons/spring-boot,Buzzardo/spring-boot,Buzzardo/spring-boot,michael-simons/spring-boot,vpavic/spring-boot
34a0581826d88f87f72deff45346168dc8cf9961
docs/quick-start-guide/src/common/midonet/section_midonet_host_registration_en.adoc
docs/quick-start-guide/src/common/midonet/section_midonet_host_registration_en.adoc
= MidoNet Host Registration . *Launch MidoNet CLI* + ==== [source] ---- $ midonet-cli midonet> ---- ==== . *Create tunnel zone* + MidoNet supports the Virtual Extensible LAN (VXLAN) and Generic Routing Encapsulation (GRE) protocols to communicate to other hosts within a tunnel zone. + To use the VXLAN protocol, create the tunnel zone with type 'vxlan': + ==== [source] ---- midonet> tunnel-zone create name tz type vxlan tzone0 ---- ==== + To use the GRE protocol, create the tunnel zone with type 'gre': + ==== [source] ---- midonet> tunnel-zone create name tz type gre tzone0 ---- ==== . *Add hosts to tunnel zone* + ==== [literal,subs="quotes"] ---- midonet> list tunnel-zone tzone tzone0 name tz type vxlan midonet> list host host host0 name *_network_* alive true host host1 name *_compute1_* alive true midonet> tunnel-zone tzone0 add member host host0 address *_ip_address_of_host0_* zone tzone0 host host0 address *_ip_address_of_host0_* midonet> tunnel-zone tzone0 add member host host1 address *_ip_address_of_host1_* zone tzone0 host host1 address *_ip_address_of_host1_* ---- ====
= MidoNet Host Registration . *Launch MidoNet CLI* + ==== [source] ---- $ midonet-cli midonet> ---- ==== . *Create tunnel zone* + MidoNet supports the Virtual Extensible LAN (VXLAN) and Generic Routing Encapsulation (GRE) protocols to communicate to other hosts within a tunnel zone. + To use the VXLAN protocol, create the tunnel zone with type 'vxlan': + ==== [source] ---- midonet> tunnel-zone create name tz type vxlan tzone0 ---- ==== + To use the GRE protocol, create the tunnel zone with type 'gre': + ==== [source] ---- midonet> tunnel-zone create name tz type gre tzone0 ---- ==== [IMPORTANT] Make sure to allow GRE/VXLAN traffic for all hosts that belong to the tunnel zone. For VXLAN MidoNet uses UDP port 6677 as default. . *Add hosts to tunnel zone* + ==== [literal,subs="quotes"] ---- midonet> list tunnel-zone tzone tzone0 name tz type vxlan midonet> list host host host0 name *_network_* alive true host host1 name *_compute1_* alive true midonet> tunnel-zone tzone0 add member host host0 address *_ip_address_of_host0_* zone tzone0 host host0 address *_ip_address_of_host0_* midonet> tunnel-zone tzone0 add member host host1 address *_ip_address_of_host1_* zone tzone0 host host1 address *_ip_address_of_host1_* ---- ====
Add a note to allow traffic for GRE/VXLAN
Add a note to allow traffic for GRE/VXLAN Change-Id: Iecefb2704caf88acfffef6e34e9d38940f6aa47d Signed-off-by: Fernando Moreno <[email protected]> Signed-off-by: Jan Hilberath <[email protected]>
AsciiDoc
apache-2.0
yantarou/midonet-docs,yantarou/midonet-docs,midonet/midonet-docs,yantarou/midonet-docs,midonet/midonet-docs,midonet/midonet-docs,midonet/midonet-docs
bdb8247133d1bbb561ffca2a2b4344393fcdc692
modules/serverless-deleting-knative-serving-crds.adoc
modules/serverless-deleting-knative-serving-crds.adoc
// Module included in the following assemblies: // // serverless/installing-openshift-serverless.adoc [id="deleting-knative-serving-crds_{context}"] = Deleting Knative Serving CRDs from the Operator After uninstalling the {ServerlessOperatorName}, the Operator CRDs and API services remain on the cluster. Use this procedure to completely uninstall the remaining components. .Prerequisite * You have uninstalled Knative Serving and removed the {ServerlessOperatorName} using the previous procedure. .Procedure . Run the following command to delete the remaining Knative Serving CRDs: + ---- $ oc delete crd knativeservings.serving.knative.dev ---- . Delete the Knative Serving API by using command: + ---- $ oc delete apiservice v1alpha1.serving.knative.dev ----
// Module included in the following assemblies: // // serverless/installing-openshift-serverless.adoc [id="deleting-knative-serving-crds_{context}"] = Deleting Knative Serving CRDs from the Operator After uninstalling the {ServerlessOperatorName}, the Operator CRDs and API services remain on the cluster. Use this procedure to completely uninstall the remaining components. .Prerequisite * You have uninstalled Knative Serving and removed the {ServerlessOperatorName} using the previous procedure. .Procedure . Run the following command to delete the remaining Knative Serving CRDs: + ---- $ oc delete crd knativeservings.serving.knative.dev ----
Remove redundant step of removing api services
Remove redundant step of removing api services
AsciiDoc
apache-2.0
vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs,vikram-redhat/openshift-docs
7ed6f1563bdddda8b20a0c73c7328bfbd65bca3b
documentation/src/docs/asciidoc/release-notes-5.0.0-M6.adoc
documentation/src/docs/asciidoc/release-notes-5.0.0-M6.adoc
[[release-notes-5.0.0-m6]] === 5.0.0-M6 *Date of Release:* ❓ *Scope:* Sixth milestone release of JUnit 5 with a focus on Java 9 compatibility, scenario tests, and additional extension APIs for JUnit Jupiter. WARNING: This is a milestone release and contains breaking changes. Please refer to the <<running-tests-ide-intellij-idea,instructions>> above to use this version in a version of IntelliJ IDEA that bundles an older milestone release. For a complete list of all _closed_ issues and pull requests for this release, consult the link:{junit5-repo}+/milestone/11?closed=1+[5.0 M6] milestone page in the JUnit repository on GitHub. [[release-notes-5.0.0-m6-junit-platform]] ==== JUnit Platform ===== Bug Fixes * ❓ ===== Deprecations and Breaking Changes * ❓ ===== New Features and Improvements * ❓ [[release-notes-5.0.0-m6-junit-jupiter]] ==== JUnit Jupiter ===== Bug Fixes * ❓ ===== Deprecations and Breaking Changes * ❓ ===== New Features and Improvements * ❓ [[release-notes-5.0.0-m6-junit-vintage]] ==== JUnit Vintage ===== Bug Fixes * ❓ ===== Deprecations and Breaking Changes * ❓ ===== New Features and Improvements * ❓
[[release-notes-5.0.0-m6]] === 5.0.0-M6 *Date of Release:* ❓ *Scope:* Sixth milestone release of JUnit 5 with a focus on Java 9 compatibility, scenario tests, and additional extension APIs for JUnit Jupiter. WARNING: This is a milestone release and contains breaking changes. Please refer to the <<running-tests-ide-intellij-idea,instructions>> above to use this version in a version of IntelliJ IDEA that bundles an older milestone release. For a complete list of all _closed_ issues and pull requests for this release, consult the link:{junit5-repo}+/milestone/11?closed=1+[5.0 M6] milestone page in the JUnit repository on GitHub. [[release-notes-5.0.0-m6-junit-platform]] ==== JUnit Platform ===== Bug Fixes * ❓ ===== Deprecations and Breaking Changes * ❓ ===== New Features and Improvements * ❓ [[release-notes-5.0.0-m6-junit-jupiter]] ==== JUnit Jupiter ===== Bug Fixes * ❓ ===== Deprecations and Breaking Changes * ❓ ===== New Features and Improvements * All `fail` methods in `Assertions` can now be used as an expression. [[release-notes-5.0.0-m6-junit-vintage]] ==== JUnit Vintage ===== Bug Fixes * ❓ ===== Deprecations and Breaking Changes * ❓ ===== New Features and Improvements * ❓
Add Assertions.fail return type change to M6 release notes
Add Assertions.fail return type change to M6 release notes Closes #845
AsciiDoc
epl-1.0
sbrannen/junit-lambda,junit-team/junit-lambda
43c87450f8bd622b04336a4390cfd7d4f50a4248
content/events/2019/reclojure.adoc
content/events/2019/reclojure.adoc
= re:Clojure London Clojurians 2019-12-02 :jbake-type: event :jbake-edition: 2019 :jbake-link: https://reclojure.org :jbake-location: London, United Kingdom :jbake-start: 2019-12-02 :jbake-end: 2019-12-02 We have the pleasure to invite you to https://reclojure.org[re:Clojure] - a brand new and free community driven conference, taking place in London on Dec 2nd, 2019 in an incredible venue. Many of the original ClojureX speakers will be there. Special thanks to the Clojure community and the sponsors for managing to put this together at such a short notice. We look forward to seeing you there! Please reserve your seat at https://reclojure.org and join #reclojure on Clojurians for more info.
= re:Clojure London Clojurians 2019-12-02 :jbake-type: event :jbake-edition: 2019 :jbake-link: https://reclojure.org :jbake-location: London, United Kingdom :jbake-start: 2019-12-02 :jbake-end: 2019-12-02 We have the pleasure to invite you to https://reclojure.org[re:Clojure] - a brand new and free community driven conference, taking place in London on Dec 2nd, 2019 in an incredible venue. Many of the original ClojureX speakers will be there. Special thanks to the Clojure community and the sponsors for managing to put this together at such short notice. We look forward to seeing you there! Please reserve your seat at https://reclojure.org and join #reclojure on Clojurians for more info.
Update re:Clojure conference information - remove typo
Update re:Clojure conference information - remove typo
AsciiDoc
epl-1.0
clojure/clojure-site
d32dde65e4948aa5ec82ac3b12121751a04e4d8f
README.adoc
README.adoc
= griffon-quartz-plugin :linkattrs: :project-name: griffon-quartz-plugin image:http://img.shields.io/travis/griffon-plugins/{project-name}/master.svg["Build Status", link="https://travis-ci.org/griffon-plugins/{project-name}"] image:http://img.shields.io/coveralls/griffon-plugins/{project-name}/master.svg["Coverage Status", link="https://coveralls.io/r/griffon-plugins/{project-name}"] image:http://img.shields.io/badge/license-ASF2-blue.svg["Apache License 2", link="http://www.apache.org/licenses/LICENSE-2.0.txt"] image:https://api.bintray.com/packages/griffon/griffon-plugins/{project-name}/images/download.svg[link="https://bintray.com/griffon/griffon-plugins/{project-name}/_latestVersion"] --- This plugin allows your Griffon application to schedule jobs to be executed using a specified interval or cron expression. The underlying system uses the http://www.quartz-scheduler.org[Quartz Scheduler, window="_blank"]. Refer to the link:http://griffon-plugins.github.io/{project-name}/[plugin guide, window="_blank"] for further information on configuration and usage.
= griffon-quartz-plugin :linkattrs: :project-name: griffon-quartz-plugin image:http://img.shields.io/travis/griffon-plugins/{project-name}/master.svg["Build Status", link="https://travis-ci.org/griffon-plugins/{project-name}"] image:http://img.shields.io/coveralls/griffon-plugins/{project-name}/master.svg["Coverage Status", link="https://coveralls.io/r/griffon-plugins/{project-name}"] image:http://img.shields.io/badge/license-ASF2-blue.svg["Apache License 2", link="http://www.apache.org/licenses/LICENSE-2.0.txt"] image:https://api.bintray.com/packages/griffon/griffon-plugins/{project-name}/images/download.svg[link="https://bintray.com/griffon/griffon-plugins/{project-name}/_latestVersion"] --- image:https://img.shields.io/gitter/room/griffon/griffon.js.svg[link="https://gitter.im/griffon/griffon] image:https://img.shields.io/badge/donations-Patreon-orange.svg[https://www.patreon.com/user?u=6609318] --- This plugin allows your Griffon application to schedule jobs to be executed using a specified interval or cron expression. The underlying system uses the http://www.quartz-scheduler.org[Quartz Scheduler, window="_blank"]. Refer to the link:http://griffon-plugins.github.io/{project-name}/[plugin guide, window="_blank"] for further information on configuration and usage.
Add Patreon badge to readme
Add Patreon badge to readme
AsciiDoc
apache-2.0
griffon-plugins/griffon-quartz-plugin