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
<?xml version="1.0" encoding="utf-8"?> | |
<ServiceMetadataFiles> | |
<ServiceMetadataFile name="developer.atlassian.com.rpc.soap-axis.confluenceservice-v2.wsdl"> | |
<wsdl:definitions xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:intf="https://developer.atlassian.com/rpc/soap-axis/confluenceservice-v2" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns1="http://rpc.confluence.atlassian.com" xmlns:tns2="http://beans.soap.rpc.confluence.atlassian.com" xmlns:impl="https://developer.atlassian.com/rpc/soap-axis/confluenceservice-v2" targetNamespace="https://developer.atlassian.com/rpc/soap-axis/confluenceservice-v2" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | |
<wsdl:types> | |
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="https://developer.atlassian.com/rpc/soap-axis/confluenceservice-v2"> | |
<import namespace="http://beans.soap.rpc.confluence.atlassian.co |
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
public IEnumerable<Row> Execute(IEnumerable<Row> rows) | |
{ | |
var blockingCollection = new BlockingCollection<Row>(); | |
var count = _operations.Count; | |
if (count == 0) | |
{ | |
yield break; | |
} | |
var tasks = _operations.Select(currentOp => | |
Task.Factory.StartNew(() => |
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
// have no idea what exact type should look like | |
type Node = { Reference : int } | |
let mkArgs0 (target : Node) (source : Node) = dict ["n", box target.Reference; "m", box source.Reference] | |
// symbolic operators FTW | |
let (=>) (a : string) b = a, box b | |
let mkArgs1_1 (target : Node) (source : Node) = dict ["n" => target.Reference; "m" => source.Reference] | |
let (!) = box |
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
let rec findPivot (myArray : int[]) i = | |
if i = 0 then | |
-1 | |
else | |
System.Diagnostics.Trace.Assert false | |
if myArray.[i] > myArray.[i-1] then i - 1 | |
else findPivot myArray (i - 1) | |
findPivot [| 1; 2; 3; 4 |] 3 |
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
// add reference to System.DirectoryServices.AccountManagement.dll | |
var sidAttr = pool.Attributes["applicationPoolSid"]; | |
var securityIdentifier = new SecurityIdentifier((string)sidAttr.Value); | |
using(var ctx = new PrincipalContext(ContextType.Machine)) | |
using(var group = GroupPrincipal.FindByIdentity(ctx, IdentityType.Sid, (string)securityIdentifier.Value)) | |
{ | |
Debug.Assert(group != null); | |
} |
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
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Run().Wait(); | |
} | |
static async Task Run() | |
{ | |
var tcs = new TaskCompletionSource<object>(); |
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
type A = | |
val x: string | |
new(x : string) = | |
if x = null then nullArg "x" | |
{x = x} | |
then | |
printfn "x=%s" x |
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
type A() = | |
[<DefaultValue>] | |
val mutable x: string | |
new(x : string) = | |
if x = null then nullArg "x" | |
A() | |
then | |
printfn "x=%s" x | |
type B(x : string) = |
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
type A private() = | |
[<DefaultValue>] | |
val mutable x: string | |
new(x : string) = | |
if x = null then nullArg "x" | |
A() | |
then | |
printfn "x=%s" x | |
type B(x : string) = |
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
var x = /°+/ |
OlderNewer