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
#!/usr/bin/env python3 | |
import requests | |
import sys | |
import logging | |
import os | |
# | |
# START of config-section - modify your needs! | |
# |
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
using Raven.Client.Embedded; | |
using Raven.Client.Indexes; | |
using Raven.Database.Extensions; | |
using Xunit; | |
namespace Raven.Tests.Bugs.Indexing | |
{ | |
public class RestartingADocumentStore : RavenTest | |
{ | |
public class Foo |
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
using System; | |
using System.IO; | |
using System.Linq; | |
using Raven.Abstractions.Data; | |
using Raven.Client.Embedded; | |
using Raven.Client.Indexes; | |
class Program | |
{ | |
private static void Main(string[] args) |
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
using System.Linq; | |
using Raven.Client.Embedded; | |
using Raven.Database.Extensions; | |
namespace etobi.RavenDB2Test01 | |
{ | |
public class Program | |
{ | |
private static EmbeddableDocumentStore _documentStore; |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Linq.Expressions; | |
using Raven.Abstractions.Data; | |
namespace Raven.Client | |
{ | |
public static class StronglyTypedDocumentQueryExtensions | |
{ |
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
... | |
DocumentStore = new EmbeddableDocumentStore | |
{ | |
Configuration = | |
{ | |
Catalog = { Catalogs = { new TypeCatalog(typeof(FixedPasswordAuthenticateClient)) } }, | |
AuthenticationMode = "oauth", | |
OAuthTokenCertificate = CertGenerator.GenerateNewCertificate("MyApp"), |