100+ results for '@microsoft.com'

Not the results you expected?

Utils.fs (https://hg01.codeplex.com/boogie) F# · 368 lines

2 /// Various utility functions

3 ///

4 /// author: Aleksandar Milicevic (t-alekm@microsoft.com)

5 // ####################################################################

6

sbs_simple_compare.py (https://IronPython.svn.codeplex.com/svn) Python · 187 lines ✨ Summary

The code tests various data types (int, float, str, complex, dict) for comparison and boolean equality with themselves and other instances of the same type, as well as with None and each other’s instances. It ensures that comparisons work correctly across different types, including when one type is converted to another.

6 # License. A copy of the license can be found in the License.html file at the

7 # root of this distribution. If you cannot locate the Microsoft Public

8 # License, please send an email to dlr@microsoft.com. By using this source

9 # code in any fashion, you are agreeing to be bound by the terms of the

10 # Microsoft Public License.

TestData.cs (https://hg.codeplex.com/pytools) C# · 145 lines

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * vspython@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

IngestManifestFile.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 576 lines

17 * @category Microsoft

18 *

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

33 * @category Microsoft

34 *

35 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

36 * @copyright Microsoft Corporation

37 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

sbs_simple_ops.py (https://IronPython.svn.codeplex.com/svn) Python · 224 lines ✨ Summary

The code tests various mathematical operations on different data types, including integers, floats, and complex numbers, with both normal and reflected operators (e.g., +, -, *, /). It compares results from different operator implementations, such as old-style, new-style, and inplace operators. The output shows which operations produce the same result for each data type.

6 # for IronPython. A copy of the license can be found in the License.html file

7 # at the root of this distribution. If you can not locate the Shared Source License

8 # for IronPython, please send an email to ironpy@microsoft.com.

9 # By using this source code in any fashion, you are agreeing to be bound by

10 # the terms of the Shared Source License for IronPython.

DefaultBinder.DeleteMember.cs (https://IronPython.svn.codeplex.com/svn) C# · 141 lines ✨ Summary

This C# code defines a class DefaultBinder that handles delete operations on dynamic objects. It checks if a member with the given name exists and, if so, calls its deletion method. If no such member is found, it throws an error. The code uses a combination of reflection and dynamic typing to handle different types of members (properties, methods, etc.).

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

DefaultBinder.DeleteMember.cs (https://IronPython.svn.codeplex.com/svn) C# · 141 lines ✨ Summary

This C# code defines a class DefaultBinder that handles delete operations on dynamic objects. It checks if a member with the given name exists and, if so, calls its deletion method. If no such member is found, it throws an error. The code uses a combination of reflection and dynamic typing to handle different types of members (properties, methods, etc.).

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Microsoft Public License, please send an email to

8 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Microsoft Public License.

10 *

TypeDescriptor.cs (https://IronPython.svn.codeplex.com/svn) C# · 167 lines ✨ Summary

This C# code is a test suite for IronPython, verifying its compatibility with reflection and COM activation. It provides methods to inspect properties, classes, and events of Python objects using .NET’s TypeDescriptor class. Additionally, it demonstrates registration-free COM activation by creating a password object using the IClassFactory interface.

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Microsoft Public License, please send an email to

8 * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Microsoft Public License.

10 *

indexerdefinitionsvb.vb (git://github.com/IronLanguages/main.git) Visual Basic · 156 lines ✨ Summary

This is a collection of classes and structures that demonstrate various ways to implement indexers in Visual Basic. The code includes examples of indexers with different signatures, optional parameters, parameter arrays, static indexers, and overloaded indexers.

6 ' copy of the license can be found in the License.html file at the root of this distribution. If

7 ' you cannot locate the Apache License, Version 2.0, please send an email to

8 ' ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 ' by the terms of the Apache License, Version 2.0.

10 '

generate_dict_views.py (git://github.com/IronLanguages/main.git) Python · 113 lines ✨ Summary

This is a Python script that generates C# code for set operations and comparison operators on dictionaries. It uses the generate function from the generate module to generate the code based on a list of generators, which are functions that take a CodeWriter object as an argument and write code to it. The generators in this case define how to generate the set operations and comparison operators for different types of dictionaries (e.g., DictionaryKeyView, DictionaryItemView). The generated code includes methods for union, intersection, symmetric difference, and difference operations, as well as comparison operators such as equality and inequality.

6 # copy of the license can be found in the License.html file at the root of this distribution. If

7 # you cannot locate the Apache License, Version 2.0, please send an email to

8 # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 # by the terms of the Apache License, Version 2.0.

10 #

sbs_newtype.py (https://IronPython.svn.codeplex.com/svn) Python · 131 lines ✨ Summary

This Python script tests various class definitions and exception handling scenarios, specifically focusing on __slots__ usage and method resolution order (MRO). It generates classes with different base types and slot configurations, executes them, and checks for exceptions related to MRO conflicts and invalid slot configurations. The output indicates whether the execution was successful or not.

6 # copy of the license can be found in the License.html file at the root of this distribution. If

7 # you cannot locate the Microsoft Public License, please send an email to

8 # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 # by the terms of the Microsoft Public License.

10 #

test_tuple.py (https://IronPython.svn.codeplex.com/svn) Python · 158 lines ✨ Summary

This Python code tests various aspects of tuples, including assignment, unpacking, arithmetic operations, hashing, and indexing. It verifies that certain operations raise errors, such as assigning to an empty tuple or attempting to index a tuple with a float. The code also checks the behavior of tuples in different contexts, like sorting and slicing.

6 # copy of the license can be found in the License.html file at the root of this distribution. If

7 # you cannot locate the Microsoft Public License, please send an email to

8 # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 # by the terms of the Microsoft Public License.

10 #

RubyUtilsTests.cs (https://hg.codeplex.com/quartz) C# · 157 lines

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Microsoft Public License, please send an email to

8 * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Microsoft Public License.

10 *

StyleCopQuickFixBase.cs (https://hg01.codeplex.com/stylecop) C# · 230 lines

7 // Public License. A copy of the license can be found in the License.html

8 // file at the root of this distribution. If you cannot locate the

9 // Microsoft Public License, please send an email to dlr@microsoft.com.

10 // By using this source code in any fashion, you are agreeing to be bound

11 // by the terms of the Microsoft Public License. You must not remove this

AppData.cs (https://MySpaceSilverlight.svn.codeplex.com/svn) C# · 298 lines

3 // </copyright>

4 // <author>Michael S. Scherotter</author>

5 // <email>mischero@microsoft.com</email>

6 // <date>2009-05-28</date>

7 // <summary>Application Data</summary>

BrokeredMessage.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 554 lines

17 * @category Microsoft

18 * @package WindowsAzure\ServiceBus\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

34 * @category Microsoft

35 * @package WindowsAzure\ServiceBus\Models

36 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

37 * @copyright 2012 Microsoft Corporation

38 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

UnsignedBigIntegerParser.cs (git://github.com/IronLanguages/main.git) C# · 202 lines ✨ Summary

This is a class that takes an input string and returns a BigInteger object representing the value of the string as a number in base 10. It uses a custom algorithm to parse the string and convert it into a binary representation, which is then used to construct the BigInteger object. The class also includes methods for parsing strings with different bases, such as hexadecimal or octal, and for converting between different bases.

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

CreateContainerOptionsTest.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 143 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Blob\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

32 * @category Microsoft

33 * @package Tests\Unit\WindowsAzure\Blob\Models

34 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

35 * @copyright 2012 Microsoft Corporation

36 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

Program.cs (https://hg01.codeplex.com/microparser) C# · 225 lines

5 // copy of the license can be found in the License.html file at the root of this distribution.

6 // If you cannot locate the Microsoft Public License, please send an email to

7 // dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

8 // by the terms of the Microsoft Public License.

9 // ----------------------------------------------------------------------------------------------

git-branch-push.ps1 (git://github.com/WindowsAzure/azure-sdk-for-java.git) Powershell · 191 lines

86 $amendOption = ""

87 }

88 Write-Host "git -c user.name=`"azure-sdk`" -c user.email=`"azuresdk@microsoft.com`" commit $amendOption -am `"$($CommitMsg)`""

89 git -c user.name="azure-sdk" -c user.email="azuresdk@microsoft.com" commit $amendOption -am "$($CommitMsg)"

163 }

164

165 Write-Host "git -c user.name=`"azure-sdk`" -c user.email=`"azuresdk@microsoft.com`" commit -m `"$($CommitMsg)`""

166 git -c user.name="azure-sdk" -c user.email="azuresdk@microsoft.com" commit -m "$($CommitMsg)"

DataServicesResources.Designer.cs (https://stackhash.svn.codeplex.com/svn) C# · 136 lines

89

90 /// <summary>

91 /// Looks up a localized string similar to An unhandled exception occurred. Please contact the WER support team [e-mail: wer@microsoft.com] for assistance..

92 /// </summary>

93 internal static string FEED_EXCEPTION_DEFAULT_MESSAGE {

ResizingAdorner.cs (git://github.com/IronLanguages/main.git) C# · 96 lines ✨ Summary

This is a custom adorner class for resizing elements in WPF. It creates a thumb element that can be dragged to resize the adorned element. The thumb has a specific cursor and can be styled with a dotted triangle background. When the thumb is dragged, it updates the maximum width and height of the adorned element and measures its desired size.

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

Operator.Generated.cs (https://IronPython.svn.codeplex.com/svn) C# · 128 lines ✨ Summary

This C# code defines a set of binary operators for Python, such as +, -, **, etc., and maps them to corresponding IronPython operations. It provides a way to access these operators in C# code, allowing for the creation of Python-like expressions and calculations. The operators are generated automatically and can be used throughout the application.

6 * for IronPython. A copy of the license can be found in the License.html file

7 * at the root of this distribution. If you can not locate the Shared Source License

8 * for IronPython, please send an email to ironpy@microsoft.com.

9 * By using this source code in any fashion, you are agreeing to be bound by

10 * the terms of the Shared Source License for IronPython.

FloatOps.Generated.cs (https://IronPython.svn.codeplex.com/svn) C# · 296 lines ✨ Summary

This C# code defines a class that implements various mathematical operations for complex numbers, including addition, subtraction, multiplication, division, and others. It provides overloads for each operation to accommodate different types of inputs, such as integers, floats, and other complex numbers. The implementation is likely generated by a tool, given the presence of #region and #endregion directives.

6 * License. A copy of the license can be found in the License.html file at the

7 * root of this distribution. If you cannot locate the Microsoft Public

8 * License, please send an email to dlr@microsoft.com. By using this source

9 * code in any fashion, you are agreeing to be bound by the terms of the

10 * Microsoft Public License.

errorlistener.py (git://github.com/IronLanguages/main.git) Python · 195 lines ✨ Summary

This Python code uses the Microsoft.Scripting and IronPython.Hosting libraries to test the functionality of an ErrorListener class in IronPython. The code defines a custom ErrorListener class called MyErrorListener, which inherits from the ErrorListener base class provided by Microsoft. The MyErrorListener class overrides the ErrorReported method, which is called whenever an error occurs during compilation.

The code then uses the CreateEngine() function to create an instance of the Python engine and the CreateScriptSourceFromString() function to create a ScriptSource object from a string containing Python code. The Compile() method of the ScriptSource object is then called with an instance of MyErrorListener as its argument, which causes the error listener to be invoked whenever an error occurs during compilation.

The test_no_errors() function compiles a simple expression and checks that no errors were reported. The test_assignment_to_none() function compiles code that assigns a value to None and checks that an error was reported. The test_multiple_erroneous_statements() function compiles code that contains multiple erroneous statements and checks that the correct number of errors were reported.

The code also includes tests for warnings, which are messages that indicate potential problems but do not prevent compilation from succeeding. The test_warning() function compiles code that contains a warning and checks that the warning was reported correctly.

6 # copy of the license can be found in the License.html file at the root of this distribution. If

7 # you cannot locate the Apache License, Version 2.0, please send an email to

8 # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 # by the terms of the Apache License, Version 2.0.

10 #

InputEndpoint.php (https://hg.codeplex.com/bukuphpjs) PHP · 152 lines

17 * @category Microsoft

18 * @package WindowsAzure\ServiceManagement\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

32 * @category Microsoft

33 * @package WindowsAzure\ServiceManagement\Models

34 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

35 * @copyright 2012 Microsoft Corporation

36 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

GetQueueMetadataResultTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 124 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Queue\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

31 * @category Microsoft

32 * @package Tests\Unit\WindowsAzure\Queue\Models

33 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

34 * @copyright 2012 Microsoft Corporation

35 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

IntegrationTestBase.php (https://hg.codeplex.com/bukuphpjs) PHP · 106 lines

17 * @category Microsoft

18 * @package Tests\Functional\WindowsAzure\ServiceBus

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

Gears.cs (git://github.com/Wiladams/NewTOAPIA.git) C# · 212 lines

9

10 /*

11 * 2008: Converted to C# by William Adams (wiladams@microsoft.com)

12 * 1996: "written" by Danny Sung <dannys@ucla.edu>

13 * Based on 3-D gear wheels by Brian Paul which is in the public domain.

readme.html (https://bitbucket.org/pwr235728/avl_tree.git) HTML · 77 lines

67 <p>Check out the <a href="http://aka.ms/vslinux">VC++ for Linux Development page</a> where we will keep updates posted and provider more in depth details on usage.</p>

68 <h1>Give us feedback</h1>

69 <p>Use the send feedback function in Visual Studio or contact us directly at <a href="mailto:vcpplinux-support@microsoft.com?subject=Linux%20Console%20App%20question">VC++ Linux Support</a></p>

70 </div>

71 </td>

ServiceRestTrait.php (https://bitbucket.org/AndreFigueira93/siscon-laravel.git) PHP · 259 lines

18 * @category Microsoft

19 * @package MicrosoftAzure\Storage\Common\Internal

20 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

21 * @copyright 2017 Microsoft Corporation

22 * @license https://github.com/azure/azure-storage-php/LICENSE

40 * @category Microsoft

41 * @package MicrosoftAzure\Storage\Common\Internal

42 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

43 * @copyright 2017 Microsoft Corporation

44 * @license https://github.com/azure/azure-storage-php/LICENSE

CloudConfigurationManagerTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 227 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Common

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

32 * @category Microsoft

33 * @package Tests\Unit\WindowsAzure\Common

34 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

35 * @copyright 2012 Microsoft Corporation

36 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

RoleInstanceTest.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 181 lines

17 * @category Microsoft

18 *

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

34 * @category Microsoft

35 *

36 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

37 * @copyright 2012 Microsoft Corporation

38 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

gen_ctrl_flow.rb (git://github.com/IronLanguages/main.git) Ruby · 168 lines ✨ Summary

This Ruby code generates test cases for control flow statements (while, until, for, and do-end) in Ruby using a combination of loops and boolean sequences. It first defines two functions: one_level_loop and three_level_loop, which generate test cases for one-level and three-level loops respectively.

The code then calls the one_level_loop function to generate test cases for while and until loops with different boolean sequences. The three_level_loop function is called next to generate test cases for nested loops.

Finally, the code creates temporary files containing the generated test cases using the GenFile class and runs them using the run method. If the output of the program matches the expected output, the test case is considered successful, otherwise it is considered a failure.

6 # copy of the license can be found in the License.html file at the root of this distribution. If

7 # you cannot locate the Apache License, Version 2.0, please send an email to

8 # ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 # by the terms of the Apache License, Version 2.0.

10 #

WinClass.cs (https://IronPython.svn.codeplex.com/svn) C# · 231 lines ✨ Summary

This C# code defines a class with several methods that simulate user interactions on a graphical application, likely a game or demo, using a UI condition object to wait for the window to open and then click a close button. The methods are named after different demos or tutorials, suggesting they test specific features of the application.

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

CSHerbivore.cs (https://terrarium2.svn.codeplex.com/svn) C# · 191 lines

10 // The following Assembly attributes must be applied to each Organism Assembly

11 [assembly: OrganismClass("CSharpCreatures.SimpleHerbivore")] // The class that derives from Animal

12 [assembly: AuthorInformation("Your Name", "someone@microsoft.com")] // Provide Author Information

13 // Author Name, Email

14 namespace CSharpCreatures

AtomBase.php (https://hg.codeplex.com/bukuphpjs) PHP · 327 lines

17 * @category Microsoft

18 * @package WindowsAzure\Common\Internal\Atom

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

33 * @category Microsoft

34 * @package WindowsAzure\Common\Internal\Atom

35 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

36 * @copyright 2012 Microsoft Corporation

37 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

QueueServiceFunctionalOptionsTest.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 219 lines

17 * @category Microsoft

18 * @package Tests\Functional\WindowsAzure\Queue

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

ResourcePathProcessor.php (https://hg01.codeplex.com/odataphpproducer) PHP · 162 lines

7 * @category ODataProducer

8 * @package ODataProducer_UriProcessor_ResourcePathProcessor

9 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

10 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

11 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

29 * @category ODataProducer

30 * @package ODataProducer_UriProcessor_ResourcePathProcessor

31 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

32 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

33 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

MailAddress.cs (https://higlabonet.svn.codeplex.com/svn) C# · 228 lines

133 if (valueIndex > -1)

134 {

135 //"Bill Gates" <bill@microsoft.com>

136 //Bill <bill@microsoft.com>

137 //<bill@microsoft.com>

138 m.DisplayName = trimValue.Substring(0, displayNameEndIndex).Trim();

139 if (m.DisplayName.Length > 1 &&

149 else

150 {

151 //bill@microsoft.com

152 valueIndex = 0;

153 m.Value = value;

ChromaKeyAlphaEffect.cs (https://win7oob.svn.codeplex.com/svn) C# · 120 lines

3 // </copyright>

4 // <author>Michael S. Scherotter</author>

5 // <email>mischero@microsoft.com</email>

6 // <date>2009-05-10</date>

7 // <summary>Color Key Alpha Pixel Effect for Silverlight 3</summary>

Facets.cs (https://moss.svn.codeplex.com/svn) C# · 298 lines

7 ///

8 /// Project: MOSS Faceted Search

9 /// Author: Leonid Lyublinski (leonidly@microsoft.com)

10 /// Company: Microsoft Services

11 /// Date: 09/17/2007 Version: 1.1

BrokeredMessageTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 514 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\ServiceBus\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

32 * @category Microsoft

33 * @package Tests\Unit\WindowsAzure\ServiceBus\Models

34 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

35 * @copyright 2012 Microsoft Corporation

36 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

scoped_any.h (https://dotnetinstaller.svn.codeplex.com/svn) C Header · 258 lines

15 // address

16 //

17 // Author: Eric Niebler ( ericne@microsoft.com )

18 //

19 //----------------------------------------------------------------------------

ServicesBuilderTest.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 301 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Common\Internal

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

39 * @category Microsoft

40 * @package Tests\Unit\WindowsAzure\Common\Internal

41 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

42 * @copyright 2012 Microsoft Corporation

43 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

StringDictionaryExpando.cs (https://IronSmalltalk.svn.codeplex.com/svn) C# · 167 lines

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

TabularDatabase.KPI.cs (https://hg.codeplex.com/tabularcmdlets) C# · 180 lines

15 action or operation over a logical tabular object.

16

17 Authors: JuanPablo Jofre (jpjofre@microsoft.com)

18 Date: 04-Apr-2012

19

shared_any.cpp (https://dotnetinstaller.svn.codeplex.com/svn) C++ · 241 lines

11 // Functions:

12 //

13 // Author: Eric Niebler ( ericne@microsoft.com )

14 //

15 //----------------------------------------------------------------------------

String.php (https://hg01.codeplex.com/odataphpproducer) PHP · 124 lines

7 * @category ODataProducer

8 * @package ODataProducer_Providers_Metadata_Type

9 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

10 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

11 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

20 * @category ODataProducer

21 * @package ODataProducer_Providers_Metadata_Type

22 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

23 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

24 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

InstallPackageWithAvailableItemNameTests.cs (git://github.com/mono/monodevelop.git) C# · 182 lines

3 //

4 // Author:

5 // Matt Ward <matt.ward@microsoft.com>

6 //

7 // Copyright (c) 2019 Microsoft

EdmTypeTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 359 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Table\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

31 * @category Microsoft

32 * @package Tests\Unit\WindowsAzure\Table\Models

33 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

34 * @copyright 2012 Microsoft Corporation

35 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

ListBlobsOptions.php (https://bitbucket.org/reareaf/blubberwasser-com.git) PHP · 237 lines

17 * @category Microsoft

18 * @package MicrosoftAzure\Storage\Blob\Models

19 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

20 * @copyright 2016 Microsoft Corporation

21 * @license https://github.com/azure/azure-storage-php/LICENSE

32 * @category Microsoft

33 * @package MicrosoftAzure\Storage\Blob\Models

34 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

35 * @copyright 2016 Microsoft Corporation

36 * @license https://github.com/azure/azure-storage-php/LICENSE

ListBlobBlocksResult.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 275 lines

17 * @category Microsoft

18 * @package WindowsAzure\Blob\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

33 * @category Microsoft

34 * @package WindowsAzure\Blob\Models

35 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

36 * @copyright 2012 Microsoft Corporation

37 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

ListBlobsResult.php (https://bitbucket.org/reareaf/wp-re.git) PHP · 345 lines

17 * @category Microsoft

18 * @package MicrosoftAzure\Storage\Blob\Models

19 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

20 * @copyright 2016 Microsoft Corporation

21 * @license https://github.com/azure/azure-storage-php/LICENSE

34 * @category Microsoft

35 * @package MicrosoftAzure\Storage\Blob\Models

36 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

37 * @copyright 2016 Microsoft Corporation

38 * @license https://github.com/azure/azure-storage-php/LICENSE

StorageAuthSchemeTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 128 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Common\Internal\Authentication

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

34 *

35 * @package Tests\Unit\WindowsAzure\Common\Internal\Authentication

36 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

37 * @copyright 2012 Microsoft Corporation

38 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

GeneratorTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 191 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Common\Internal\Atom

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

31 * @category Microsoft

32 * @package Tests\Unit\WindowsAzure\Common\Internal\Atom

33 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

34 * @copyright 2012 Microsoft Corporation

35 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

RuntimeVersionManagerTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 140 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\ServiceRuntime\Internal

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

35 * @category Microsoft

36 * @package Tests\Unit\WindowsAzure\ServiceRuntime\Internal

37 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

38 * @copyright 2012 Microsoft Corporation

39 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

QueryEntitiesResult.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 151 lines

17 * @category Microsoft

18 * @package WindowsAzure\Table\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

32 * @category Microsoft

33 * @package WindowsAzure\Table\Models

34 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

35 * @copyright 2012 Microsoft Corporation

36 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

Dispatcher.php (https://hg01.codeplex.com/odataphpproducer) PHP · 212 lines

7 * @category ODataProducer

8 * @package ODataProducer

9 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

10 * @author Neelesh Vijaivargia <odataphpproducer_alias@microsoft.com>

31 * @category ODataProducer

32 * @package ODataProducer

33 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

34 * @author Neelesh Vijaivargia <odataphpproducer_alias@microsoft.com>

reference.htm (https://foursquarehelper.svn.codeplex.com/svn) HTML · 153 lines

144 </div>

145 <ul class="footer">

146 <li>We're always looking for <a href="mailto:webapp@microsoft.com">bugs, feedback and

147 suggestions!</a></li>

148 <li>&copy; 2010-2011 Microsoft Corporation. Powered by IIS Express.</li>

ProgressEvent.cs (https://kinectapi.svn.codeplex.com/svn) C# · 86 lines

13 * One Microsoft Way

14 * Redmond, WA 98052

15 * awilson@microsoft.com

16 *

17 * Yang Li, Ph.D.

typelib.py (git://github.com/IronLanguages/main.git) Python · 83 lines ✨ Summary

This Python code uses the clr module to load a COM type library and create an instance of a class defined in that library. The dlrcomlib_guid variable is used to specify the GUID of the type library, which is then passed to the LoadTypeLibrary() method to load it. Once loaded, the type library can be accessed using its namespace name, and the CreateInstance() method can be called on any class defined in that library to create an instance of that class.

6 # copy of the license can be found in the License.html file at the root of this distribution. If

7 # you cannot locate the Apache License, Version 2.0, please send an email to

8 # ironpy@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 # by the terms of the Apache License, Version 2.0.

10 #

Generator.cs (git://github.com/IronLanguages/main.git) C# · 86 lines ✨ Summary

This is a C# program that generates code for the IronRuby compiler. It uses the Microsoft.Scripting.Ast namespace to create expressions and statements, and it has several options for customizing the generated code. The program can generate code for different scenarios such as reflection caching or generating code for a specific set of arguments.

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

50 * copy of the license can be found in the License.html file at the root of this distribution. If

51 * you cannot locate the Apache License, Version 2.0, please send an email to

52 * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

53 * by the terms of the Apache License, Version 2.0.

54 *

UrlTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 336 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Common\Internal\Http

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

34 * @category Microsoft

35 * @package Tests\Unit\WindowsAzure\Common\Internal\Http

36 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

37 * @copyright 2012 Microsoft Corporation

38 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

ContentPropertiesTest.php (https://bitbucket.org/egyptstudio/studio-code.git) PHP · 182 lines

16 * @category Microsoft

17 * @package Tests\Unit\WindowsAzure\MediaServices\Models

18 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

19 * @copyright Microsoft Corporation

20 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

31 * @category Microsoft

32 * @package Tests\Unit\WindowsAzure\Common\Internal\Atom

33 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

34 * @copyright Microsoft Corporation

35 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

mapmakerigc.h (https://FAZ.svn.codeplex.com/svn) C Header · 605 lines

4 ** File: mapmakerigc.h

5 **

6 ** Author: Jeff Fink (jfink@microsoft.com)

7 **

8 ** Description:

GetOperationStatusResultTest.php (https://hg.codeplex.com/bukuphpjs) PHP · 134 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\ServiceManagement\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

33 * @category Microsoft

34 * @package Tests\Unit\WindowsAzure\ServiceManagement\Models

35 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

36 * @copyright 2012 Microsoft Corporation

37 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

SECURITY.md (git://github.com/WindowsAzure/azure-sdk-for-java.git) Markdown · 41 lines

13 Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://msrc.microsoft.com/create-report).

14

15 If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://www.microsoft.com/msrc/pgp-key-msrc).

16

17 You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc).

ServiceConfig.php (https://hg.codeplex.com/odatamysqlphpconnect) PHP · 123 lines

7 * @category ODataConnectorForMySQLException

8 * @package ODataConnectorForMySQLException_Common

9 * @author Yash K. Kothari <odataphpproducer_alias@microsoft.com>

10 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

11 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

21 * @category ODataConnectorForMySQL

22 * @package ODataConnectorForMySQL_Common

23 * @author Yash K. Kothari <odataphpproducer_alias@microsoft.com>

24 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

25 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

MetadataResourceTypeSet.php (https://hg01.codeplex.com/odataphpproducer) PHP · 316 lines

19 * @category ODataProducer

20 * @package ODataProducer_Writers_Metadata

21 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

22 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

23 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

39 * @category ODataProducer

40 * @package ODataProducer_Writers_Metadata

41 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

42 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

43 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

Views.cs (https://descry.svn.codeplex.com/svn) C# · 159 lines

6 * copy of the license can be found at http://go.microsoft.com/fwlink/?LinkID=131993. If

7 * you cannot locate the Microsoft Public License, please send an email to

8 * mixon@microsoft.com. By using this source code in any fashion, you are agreeing to

9 * be bound by the terms of the Microsoft Public License.

10 *

GIZMOBAR.H (http://wcwp.googlecode.com/svn/trunk/) C Header · 243 lines

12 * Microsoft Systems Developer Relations

13 *

14 * Internet : kraigb@microsoft.com

15 * Compuserve: >INTERNET:kraigb@microsoft.com

Img_ScanConvert.hpp (https://hg.codeplex.com/saliency) C++ Header · 236 lines

12

13 History:

14 Created on 2005 June, 9 by t-yinli@microsoft.com

15

16 \*************************************************************************/

PropertyAccessExpression.php (https://hg01.codeplex.com/odataphpproducer) PHP · 284 lines

7 * @category ODataProducer

8 * @package ODataProducer_UriProcessor_QueryProcessor_ExpressionParser_Expressions

9 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

10 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

11 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

27 * @category ODataProducer

28 * @package ODataProducer_UriProcessor_QueryProcessor_ExpressionParser_Expressions

29 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

30 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

31 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

Text.cs (https://Word2007ToXaml.svn.codeplex.com/svn) C# · 137 lines

3 // </copyright>

4 // <author>Michael S. Scherotter</author>

5 // <email>mischero@microsoft.com</email>

6 // <date>2009-01-30</date>

7 // <summary>Text class for IgnoreWhitespace Custom Attached Property</summary>

TrackMultiScaleImage.cs (https://slaf.svn.codeplex.com/svn) C# · 119 lines

3 // </copyright>

4 // <author>Microsoft</author>

5 // <email>mischero@microsoft.com</email>

6 // <date>2010-01-01</date>

7 // <summary>Web analytics service behavior class definition</summary>

setup.py (https://hg.codeplex.com/pytools) Python · 50 lines

37 long_description='The pykinect package provides access to the Kinect device. The pykinect package includes both the "nui" and "audio" subpackages. The nui package provides interactions with the Kinect cameras including skeleton tracking, video camera, as well as the depth camera. The audio subpackage provides access to the Kinect devices microphones.',

38 author='Microsoft',

39 author_email='vspython@microsoft.com',

40 url='http://pytools.codeplex.com/',

41 packages=['pykinect', 'winspeech', 'pykinect.audio', 'pykinect.nui'],

RubyVsUtils.cs (git://github.com/IronLanguages/main.git) C# · 98 lines ✨ Summary

This is a static class that provides utility methods for working with Ruby projects and Visual Studio. It defines several methods, including GetRubyProject, which retrieves a Ruby project from an EnvDTE.Project object; GetOrCreateOutputPane, which creates or retrieves an output pane in the Visual Studio Output window; and ShowWindow, which shows a specific window in Visual Studio. Additionally, it defines several constants for use with the IVsOutputWindow interface.

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * ironruby@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

CloudStorageService.php (https://hg.codeplex.com/bukuphpjs) PHP · 187 lines

17 * @category Microsoft

18 * @package Client

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

38 * @category Microsoft

39 * @package Client

40 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

41 * @copyright 2012 Microsoft Corporation

42 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

FormattingHelper.cs (git://github.com/IronLanguages/main.git) C# · 149 lines

6 * copy of the license can be found in the License.html file at the root of this distribution. If

7 * you cannot locate the Apache License, Version 2.0, please send an email to

8 * dlr@microsoft.com. By using this source code in any fashion, you are agreeing to be bound

9 * by the terms of the Apache License, Version 2.0.

10 *

ConfigurationTest.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 165 lines

17 * @category Microsoft

18 * @package Tests\Unit\WindowsAzure\Common\Internal

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

34 *

35 * @package Tests\Unit\WindowsAzure\Common\Internal

36 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

37 * @copyright 2012 Microsoft Corporation

38 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

FilterUsersByKeyword.cs (https://hg.codeplex.com/orchardqa) C# · 79 lines

56 {

57 TestLibrary.UserHelper.LogOnAsAdmin();

58 var user1 = TestLibrary.UserHelper.AddUser(new UserSettings() { UserName = "user1", Email = "1email@microsoft.com" });

59 var user2 = TestLibrary.UserHelper.AddUser(new UserSettings() { UserName = "user2", Email = "2email@microsoft.com" });

IEDMXGenerator.php (https://hg.codeplex.com/odatamysqlphpconnect) PHP · 122 lines

7 * @category ODataConnectorForMySQL

8 * @package ODataConnectorForMySQL_EDMXGenerator

9 * @author Yash K. Kothari <odataphpproducer_alias@microsoft.com>

10 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

11 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

22 * @category ODataConnectorForMySQL

23 * @package ODataConnectorForMySQL_EDMXGenerator

24 * @author Yash K. Kothari <odataphpproducer_alias@microsoft.com>

25 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

26 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

SharedKeyAuthSchemeTest.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 111 lines

17 * @category Microsoft

18 *

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

34 * Unit tests for SharedKeyAuthScheme class.

35 *

36 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

37 * @copyright 2012 Microsoft Corporation

38 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

MimeReaderWriter.php (https://hg.codeplex.com/bukuphpjs) PHP · 117 lines

17 * @category Microsoft

18 * @package WindowsAzure\Table\Internal

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

35 * @category Microsoft

36 * @package WindowsAzure\Table\Internal

37 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

38 * @copyright 2012 Microsoft Corporation

39 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

ListQueuesResult.php (https://hg.codeplex.com/bukuphpjs) PHP · 203 lines

17 * @category Microsoft

18 * @package WindowsAzure\Queue\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

33 * @category Microsoft

34 * @package WindowsAzure\Queue\Models

35 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

36 * @copyright 2012 Microsoft Corporation

37 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

LinqToSqlRepositoryTests.cs (https://oxite.svn.codeplex.com/svn) C# · 205 lines

142 {

143 Body = "Body",

144 Creator = new UserBase() { Email = "test@microsoft.com", HashedEmail = "XXXXXX", Name = "Test", Url = "http://microsoft.com" },

145 CreatorIP = 1L,

146 CreatorUserAgent = "UA",

153 Comment addedComment = repo2.GetComments(existingPost, false).Where(c => c.Body == "Body").FirstOrDefault();

154 Assert.NotNull(addedComment);

155 Assert.Equal("test@microsoft.com", addedComment.Creator.Email);

156 Assert.Equal("XXXXXX", addedComment.Creator.HashedEmail);

157 Assert.Equal("Test", addedComment.Creator.Name);

DataModel.cs (https://MVTCharts.svn.codeplex.com/svn) C# · 255 lines

12 // 2008 by Mario Meir-Huber

13 // Mail: mario_mh@vb-magazin.de

14 // i-mameir@microsoft.com

15 namespace ChartLibrary.Data

16 {

AtkCocoaHelperNoOp.cs (git://github.com/mono/monodevelop.git) C# · 335 lines

3 //

4 // Author:

5 // iain <iaholmes@microsoft.com>

6 //

7 // Copyright (c) 2017

detalle_productos_cotizados.vbs (https://workflowmagic.svn.codeplex.com/svn) Visual Basic · 149 lines

25 ' .CompanyName = "Microsoft"

26 ' .HomeTelephoneNumber = "704-555-8888"

27 ' .Email1Address = "alguien@microsoft.com"

28 ' .JobTitle = "Developer"

29 ' .HomeAddress = "111 Main St."

RetentionPolicy.php (https://hg.codeplex.com/bukuphpjs) PHP · 137 lines

17 * @category Microsoft

18 * @package WindowsAzure\Common\Models

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

31 * @category Microsoft

32 * @package WindowsAzure\Common\Models

33 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

34 * @copyright 2012 Microsoft Corporation

35 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

PageUtilsTest.cs (git://pkgs.fedoraproject.org/wine-mono) C# · 156 lines

145 var jsUri = new Uri("javascript:alert('Hello world');");

146 var fileShareUri = new Uri(@"c:\windows\system32\notepad.exe");

147 var mailToUti = new Uri("mailto:invalid-email@microsoft.com");

148

149 // Act and Assert

RetryMiddlewareFactory.php (https://bitbucket.org/vaderdeveloper/autovidas.git) PHP · 234 lines

17 * @category Microsoft

18 * @package MicrosoftAzure\Storage\Common\Internal

19 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

20 * @copyright 2016 Microsoft Corporation

21 * @license https://github.com/azure/azure-storage-php/LICENSE

35 * @category Microsoft

36 * @package MicrosoftAzure\Storage\Common\Internal

37 * @author Azure Storage PHP SDK <dmsh@microsoft.com>

38 * @copyright 2016 Microsoft Corporation

39 * @license https://github.com/azure/azure-storage-php/LICENSE

hv.h (git://github.com/CyanogenMod/cm-kernel.git) C Header · 141 lines

17 *

18 * Authors:

19 * Haiyang Zhang <haiyangz@microsoft.com>

20 * Hank Janssen <hjanssen@microsoft.com>

HomologyComputation.cpp (https://bitbucket.org/pefarrell/gmsh.git) C++ · 155 lines

4 // bugs and problems to the public mailing list <gmsh@onelab.info>.

5 //

6 // Contributed by Matti Pellikka <matti.pellikka@microsoft.com>.

7

8 #include <stdlib.h>

IServiceFilter.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 62 lines

17 * @category Microsoft

18 * @package WindowsAzure\Common\Internal

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

31 * @category Microsoft

32 * @package WindowsAzure\Common\Internal

33 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

34 * @copyright 2012 Microsoft Corporation

35 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

WrapService.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 59 lines

17 * @category Microsoft

18 * @package WindowsAzure\ServiceBus

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

32 * @category Microsoft

33 * @package WindowsAzure\ServiceBus

34 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

35 * @copyright 2012 Microsoft Corporation

36 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

MyAnimal.vb (https://terrarium2.svn.codeplex.com/svn) Visual Basic · 141 lines

1

2 <Assembly: OrganismClass("Exercise1.MyAnimal")>

3 <Assembly: AuthorInformation("Your Name", "someone@microsoft.com")>

4

5 < _

IdSpec.cs (https://MySpaceSilverlight.svn.codeplex.com/svn) C# · 211 lines

3 // </copyright>

4 // <author>Michael S. Scherotter</author>

5 // <email>mischero@microsoft.com</email>

6 // <date>2009-03-24</date>

7 // <summary>OpenSocial IdSpec</summary>

ResourceAssociationSetEnd.php (https://hg01.codeplex.com/odataphpproducer) PHP · 153 lines

7 * @category ODataProducer

8 * @package ODataProducer_Providers_Metadata

9 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

10 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

11 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

21 * @category ODataProducer

22 * @package ODataProducer_Providers_Metadata

23 * @author Anu T Chandy <odataphpproducer_alias@microsoft.com>

24 * @copyright 2011 Microsoft Corp. (http://www.microsoft.com)

25 * @license New BSD license, (http://www.opensource.org/licenses/bsd-license.php)

RuntimeKernel.php (git://github.com/WindowsAzure/azure-sdk-for-php.git) PHP · 254 lines

17 * @category Microsoft

18 * @package WindowsAzure\ServiceRuntime\Internal

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

30 * @category Microsoft

31 * @package WindowsAzure\ServiceRuntime\Internal

32 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

33 * @copyright 2012 Microsoft Corporation

34 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0

FunctionalTestBase.php (https://hg.codeplex.com/bukuphpjs) PHP · 126 lines

17 * @category Microsoft

18 * @package Tests\Functional\WindowsAzure\Table

19 * @author Azure PHP SDK <azurephpsdk@microsoft.com>

20 * @copyright 2012 Microsoft Corporation

21 * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0