This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <infinispan> | |
| <jgroups> | |
| <!-- Load external JGroups stacks --> | |
| <stack-file name="jgroups-udp" path="jgroups-udp.xml"/> | |
| </jgroups> | |
| <cache-container name="clustered"> | |
| <!-- Use the stack --> | |
| <transport cluster="cluster" stack="jgroups-udp"/> | |
| ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # This script can be set as a git alias (I alias it to `pr`) | |
| # It will force push the current branch to your fork (github.userfork) and open your browser to the PR creation page already | |
| # compiled with a link to the corresponding Jira (assuming the local branch begins with the Jira issue name) | |
| # | |
| # Configure the variables below for your environment | |
| ORIGIN_REMOTE=`git config --get github.upstream` | |
| if [ -z "$ORIGIN_REMOTE" ]; then | |
| echo "Missing git config property 'github.upstream'. Set it to the name of the remote repository which represents upstream" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.infinispan.server.hotrod; | |
| import java.util.List; | |
| import io.netty.buffer.ByteBuf; | |
| import io.netty.channel.ChannelHandlerContext; | |
| import java.time.ZonedDateTime; | |
| import java.time.temporal.Temporal; | |
| import java.util.ArrayList; | |
| import java.util.HashMap; | |
| import java.util.HashSet; | |
| import java.util.Map; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div.message_content { | |
| font-family: 'Cantarell'; | |
| font-size: 16px; | |
| } | |
| textarea.new_message_textarea { | |
| font-family: 'Cantarell'; | |
| font-size: 16px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CachingProvider cachingProvider = Caching.getCachingProvider(); | |
| CacheManager cacheManager = cachingProvider.getCacheManager( | |
| this.getClass().getResource("wildcard.xml").toURI(), | |
| this.getClass().getClassLoader() | |
| ); | |
| Cache<Object, Object> basiccache1 = cacheManager.createCache( | |
| "basiccache1", | |
| new MutableConfiguration<>() | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| EmbeddedCacheManager cm = new DefaultCacheManager(); | |
| cm.defineConfiguration("basecache*", new ConfigurationBuilder() | |
| .expiration().lifespan(10) | |
| .build()); | |
| Cache<Object, Object> basecache1 = cm.getCache("basecache1"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <infinispan> | |
| <cache-container> | |
| <local-cache-configuration name="basecache*"> | |
| <expiration interval="10500" lifespan="11" max-idle="11"/> | |
| </local-cache-configuration> | |
| <local-cache name="basecache-1"/> | |
| <local-cache name="basecache-2"/> | |
| </cache-container> | |
| </infinispan> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "github": "anistor", | |
| "tz": "Europe/Bucharest" | |
| }, | |
| { | |
| "github": "danberindei", | |
| "tz": "Europe/Bucharest" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Aug 28 16:02:56 <ttarrant> #startmeeting | |
| Aug 28 16:03:16 <jsenko> ttarrant: skip me pls for now | |
| Aug 28 16:03:25 <ttarrant> I guess jbott is out of order | |
| Aug 28 16:03:39 * rettori_argh ([email protected]) has joined | |
| Aug 28 16:03:39 * rettori_argh is now known as rettori | |
| Aug 28 16:03:45 <ttarrant> #topic ttarrant | |
| Aug 28 16:04:09 <ttarrant> not much to report | |
| Aug 28 16:04:17 <ttarrant> as I've been on PTO for two weeks | |
| Aug 28 16:04:21 <ttarrant> very much rested | |
| Aug 28 16:04:36 <ttarrant> so much that I'll be on PTO again for the first four days next week too :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <cache-container default-cache="default"> | |
| <local-cache name="default"> | |
| <persistence passivation="false"> | |
| <cloud-store xmlns="urn:infinispan:config:store:cloud:8.0" | |
| provider="transient" | |
| location="test-location" | |
| identity="me" | |
| credential="s3cr3t" | |
| container="test-container" | |
| endpoint="http://test.endpoint" |