100+ results for 'Format'
Not the results you expected?
CeylonCopyAntTask.java (git://github.com/ceylon/ceylon-compiler.git) Java · 178 lines
4 * Licensed to the Apache Software Foundation (ASF) under one or
5 * more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information regarding
7 * copyright ownership. The ASF licenses this file to You under
8 * the Apache License, Version 2.0 (the "License"); you may not
PgItem.d (git://github.com/gtkd-developers/GtkD.git) D · 215 lines
StandardEncryptionInfoBuilder.java (git://github.com/plutext/docx4j.git) Java · 128 lines
8 Licensed to the Apache Software Foundation (ASF) under one or more
9 contributor license agreements. See the NOTICE file distributed with
10 this work for additional information regarding copyright ownership.
11 The ASF licenses this file to You under the Apache License, Version 2.0
12 (the "License"); you may not use this file except in compliance with
UnitsOfMeasurement.java (git://github.com/plutext/docx4j.git) Java · 205 lines
36 private final static Logger log = LoggerFactory.getLogger(UnitsOfMeasurement.class);
38 public final static DecimalFormat format2DP;
39 public final static int DPI;
40 static {
41 format2DP = new DecimalFormat("##.##",
42 new DecimalFormatSymbols(Locale.ENGLISH));
129 log.debug(leftL + " twips -> " + inches + "inches");
130 // inches work
131 return format2DP.format(inches) + "in";
132 } else {
133 float mm = inches/0.0394f;
134 log.debug(leftL + " twips -> " + mm + "mm ("+ format2DP.format(inches) + "inches)");
135 return Math.round(mm) + "mm";
136 }
Utils.java (git://github.com/jersey/jersey.git) Java · 116 lines
DiagnosticLogsTests.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 99 lines
39 .defineDiagnosticLogsConfiguration()
40 .withApplicationLogging()
41 .withLogLevel(LogLevel.INFORMATION)
42 .withApplicationLogsStoredOnFileSystem()
43 .attach()
58 Assertions.assertNotNull(webApp1.diagnosticLogsConfig());
59 Assertions
60 .assertEquals(LogLevel.INFORMATION, webApp1.diagnosticLogsConfig().applicationLoggingFileSystemLogLevel());
61 Assertions.assertEquals(LogLevel.OFF, webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobLogLevel());
62 Assertions.assertNull(webApp1.diagnosticLogsConfig().applicationLoggingStorageBlobContainer());
ApplicationInsightsManagementClientImpl.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 406 lines
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License. See License.txt in the project root for
4 * license information.
5 *
6 * Code generated by Microsoft (R) AutoRest Code Generator.
402 @Override
403 public String userAgent() {
404 return String.format("%s (%s, %s)", super.userAgent(), "ApplicationInsightsManagementClient", "2015-05-01");
405 }
406 }
PropertiesHelperTest.java (git://github.com/jersey/jersey.git) Java · 200 lines
23 * Modifications:
24 * If applicable, add the following below the License Header, with the fields
25 * enclosed by brackets [] replaced by your own identifying information:
26 * "Portions Copyright [year] [name of copyright owner]"
27 *
154 */
155 @Test
156 public void testGetValueNoTransformation() {
157 Map<String, Object> properties = new HashMap<>();
158 final String key = "my.property";
ServiceWatcher.cfc (git://github.com/sebtools/Neptune.git) ColdFusion CFScript · 258 lines
19 </cffunction>
21 <cffunction name="getBigHitters" access="public" returntype="query" output="no" hint="I return information about slow loading services.">
22 <cfargument name="SinceDate" type="date" required="false">
61 </cffunction>
63 <cffunction name="getLastLoadData" access="public" returntype="query" output="no" hint="I return information about the last time that the given service was loaded.">
64 <cfargument name="ServiceName" type="string" required="true">
136 </cffunction>
138 <cffunction name="logServiceLoad" access="public" returntype="numeric" output="no" hint="I log information about the loading of a service.">
139 <cfargument name="ServiceName" type="string" required="true">
140 <cfargument name="Service" type="any" required="true">
Header.java (git://github.com/craigwblake/redline.git) Java · 130 lines
TypeInfo.java (git://github.com/jOOQ/jOOQ.git) Java · 175 lines
16 import org.jooq.impl.SQLDataType;
17 import org.jooq.impl.TableImpl;
18 import org.jooq.meta.h2.information_schema.InformationSchema;
77 /**
78 * The column <code>INFORMATION_SCHEMA.TYPE_INFO.MINIMUM_SCALE</code>.
79 */
80 public final TableField<Record, Short> MINIMUM_SCALE = createField(DSL.name("MINIMUM_SCALE"), SQLDataType.SMALLINT, this, "");
145 @Override
146 public Schema getSchema() {
147 return InformationSchema.INFORMATION_SCHEMA;
148 }
ApiPolicyContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 159 lines
26 * @return the format value.
27 */
28 PolicyContentFormat format();
30 /**
109 * Specifies format.
110 * @param format Format of the policyContent. Possible values include: 'xml', 'xml-link', 'rawxml', 'rawxml-link'
111 * @return the next definition stage
112 */
113 WithCreate withFormat(PolicyContentFormat format);
114 }
153 * @return the next update stage
154 */
155 Update withFormat(PolicyContentFormat format);
156 }
BaseReportFillManager.java (git://github.com/liferay/liferay-portal.git) Java · 203 lines
19 import com.liferay.portal.kernel.log.Log;
20 import com.liferay.portal.kernel.log.LogFactoryUtil;
21 import com.liferay.portal.kernel.util.DateFormatFactoryUtil;
22 import com.liferay.portal.kernel.util.GetterUtil;
23 import com.liferay.portal.kernel.util.ListUtil;
32 import java.sql.Connection;
34 import java.text.DateFormat;
35 import java.text.ParseException;
173 if (clazz.equals(Date.class)) {
174 DateFormat dateFormat =
175 DateFormatFactoryUtil.getSimpleDateFormat("yyyy-MM-dd");
177 try {
178 value = dateFormat.parse(stringValue);
179 }
180 catch (ParseException parseException) {
FluentMethodNameCheck.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 139 lines
74 // logs error if the @Fluent method has 'throws' at the method declaration.
75 if (token.findFirstToken(TokenTypes.LITERAL_THROWS) != null) {
76 log(token, String.format(
77 "Fluent Method ''%s'' must not be declared to throw any checked exceptions.",
78 token.findFirstToken(TokenTypes.IDENT).getText()));
114 avoidStartWords.forEach(avoidStartWord -> {
115 if (methodName.length() >= avoidStartWord.length() && methodName.startsWith(avoidStartWord)) {
116 log(methodDefToken, String.format("''%s'' fluent method name should not start with keyword ''%s''.",
117 methodName, avoidStartWord));
118 }
demote_iterator_traversal_tag.hpp (git://github.com/MisterTea/HyperNEAT.git) C++ Header · 91 lines
AuthorizationDocumentReader.java (git://github.com/twilio/twilio-java.git) Java · 184 lines
44 * signing, 3. signed LOA, 4. canceled, 5. failed. See the section entitled <a
45 * href="https://www.twilio.com/docs/api/phone-numbers/hosted-number-authorization-documents#status-values">Status
46 * Values</a> for more information on each of these statuses..
47 *
48 * @param status The Status of this AuthorizationDocument.
dsa.go (git://github.com/axw/llgo.git) Go · 278 lines
t-get_si.c (https://gitlab.com/torshie/modern-tool.git) C · 223 lines
stuff.d (git://github.com/plol/d-interp.git) D · 277 lines
TaskQueueCreator.java (git://github.com/twilio/twilio-java.git) Java · 172 lines
44 * enter the TaskQueue. For example, `'"language" == "spanish"'`. The default
45 * value is `1==1`. If this value is empty, Tasks will wait in the TaskQueue
46 * until they are deleted or moved to another TaskQueue. For more information
47 * about Worker selection, see <a
48 * href="https://www.twilio.com/docs/taskrouter/api/taskqueues#target-workers">Describing
Table.java (git://github.com/jOOQ/jOOQ.git) Java · 218 lines
ChangeStreamEvent.java (git://github.com/SpringSource/spring-data-mongodb.git) Java · 223 lines
xm_xslt_system_function_library.e (git://github.com/gobo-eiffel/gobo.git) Specman e · 137 lines
39 elseif a_fingerprint = Element_available_function_type_code then
40 Result := an_arity = -1 or else an_arity = 1
41 elseif a_fingerprint = Format_date_function_type_code and then not is_restricted then
42 Result := an_arity = -1 or else an_arity = 2 or else an_arity = 5
43 elseif a_fingerprint = Format_datetime_function_type_code and then not is_restricted then
44 Result := an_arity = -1 or else an_arity = 2 or else an_arity = 5
45 elseif a_fingerprint = Format_number_function_type_code and then not is_restricted then
46 Result := an_arity = -1 or else an_arity = 2 or else an_arity = 3
47 elseif a_fingerprint = Format_time_function_type_code and then not is_restricted then
91 when Element_available_function_type_code then
92 create {XM_XSLT_ELEMENT_AVAILABLE} a_function_call.make
93 when Format_date_function_type_code then
94 create {XM_XSLT_FORMAT_DATE_TIME} a_function_call.make_date
95 when Format_datetime_function_type_code then
96 create {XM_XSLT_FORMAT_DATE_TIME} a_function_call.make_date_time
evsel_fprintf.c (git://github.com/torvalds/linux.git) C · 242 lines
TrashEntryServiceSoap.java (git://github.com/liferay/liferay-portal.git) Java · 409 lines
BattleInformation.as (http://shining-fluff-devkit.googlecode.com/svn/trunk/) ActionScript · 274 lines
13 import flash.events.Event;
15 public class BattleInformation extends ComponentBase
16 {
17 private var _landEffect:SpriteEx;
37 private var _currentEnemyDefinition:CharacterDefinition;
39 public function BattleInformation() {
40 super();
41 }
266 }
268 public function moveEnemyInformation(tx:int, ty:int):void {
269 _enemyInfo.x = tx;
270 _enemyInfo.y = ty;
APIsUser32.cs (https://quickmon.svn.codeplex.com/svn) C# · 183 lines
41 static public extern bool EmptyClipboard();
42 [DllImport("user32.dll", CharSet=CharSet.Auto)]
43 static public extern IntPtr SetClipboardData( uint Format, IntPtr hData);
44 [DllImport("user32.dll", CharSet=CharSet.Auto)]
45 static public extern bool GetMenuItemRect(IntPtr hWnd, IntPtr hMenu, uint Item, ref APIsStructs.RECT rc);
71 public static extern IntPtr SetFocus(IntPtr hWnd);
72 [DllImport("user32.dll", CharSet=CharSet.Auto)]
73 public extern static int DrawText(IntPtr hdc, string lpString, int nCount, ref APIsStructs.RECT lpRect, APIsEnums.DrawTextFormatFlags flags);
74 [DllImport("user32.dll", CharSet=CharSet.Auto)]
75 public extern static IntPtr SetParent(IntPtr hChild, IntPtr hParent);
juce_StretchableLayoutManager.cpp (https://vocalremover.svn.codeplex.com/svn) C++ · 343 lines
Event.java (git://github.com/splunk/splunk-sdk-java.git) Java · 304 lines
XDotLexer.java (git://github.com/jgralab/jgralab.git) Java · 256 lines
WebRequestor.java (git://github.com/revetkn/restfb.git) Java · 176 lines
24 import static com.restfb.util.StringUtils.isBlank;
25 import static com.restfb.util.StringUtils.trimToEmpty;
26 import static java.lang.String.format;
28 import java.io.IOException;
88 public String toString() {
89 if (isBlank(getBody())) {
90 return format("HTTP status code %d and an empty response body.", getStatusCode());
91 }
92 return format("HTTP status code %d and response body: %s", getStatusCode(), getBody());
167 /**
168 * Provides access to the facebook header information.
169 *
170 * The fields <code>x-fb-rev</code>, <code>x-fb-trace-id</code> and <code>x-fb-debug</code> are checked and returned
OperationUpdateContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 231 lines
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License. See License.txt in the project root for
4 * license information.
5 *
6 * Code generated by Microsoft (R) AutoRest Code Generator.
26 /**
27 * Description of the operation. May include HTML formatting tags.
28 */
29 @JsonProperty(value = "properties.description")
91 /**
92 * Get description of the operation. May include HTML formatting tags.
93 *
94 * @return the description value
Language_en.properties (git://github.com/liferay/liferay-portal.git) Properties File · 39 lines
8 ds-lock-timeout-milliseconds-help=Configure how long a lock is held before releasing due to suspected deadlock.
9 ds-loglevel=SCR Log Level
10 ds-loglevel-help=Configure the log level to limit the amount of logging information sent to the OSGi LogService. Supported values are DEBUG, INFO, WARN, and ERROR. This property is not used if a R7 LogService implementation is available as the log level can be configured through that service. The default value is ERROR.
11 ds-stop-timeout-milliseconds=Stop Timeout Milliseconds
12 ds-stop-timeout-milliseconds-help=Configure how long to wait for a bundle to stop before continuing due to suspected deadlock.
JsonLanguageCodeStyleSettingsProvider.java (git://github.com/JetBrains/intellij-community.git) Java · 115 lines
introspection.py (git://github.com/JetBrains/intellij-community.git) Python · 122 lines
FieldCountInspection.java (git://github.com/JetBrains/intellij-community.git) Java · 154 lines
Bucket.java (git://github.com/infinispan/infinispan.git) Java · 147 lines
VMParamsAllAndReadonlyDigestZkACLProvider.java (git://github.com/apache/lucene-solr.git) Java · 117 lines
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
91 List<ACL> result = new ArrayList<ACL>();
93 // Not to have to provide too much credentials and ACL information to the process it is assumed that you want "ALL"-acls
94 // added to the user you are using to connect to ZK (if you are using VMParamsSingleSetCredentialsDigestZkCredentialsProvider)
95 if (!StringUtils.isEmpty(digestAllUsername) && !StringUtils.isEmpty(digestAllPassword)) {
saveVersion.sh (git://github.com/apache/hbase.git) Shell · 142 lines
6 # Licensed to the Apache Software Foundation (ASF) under one or more
7 # contributor license agreements. See the NOTICE file distributed with
8 # this work for additional information regarding copyright ownership.
9 # The ASF licenses this file to You under the Apache License, Version 2.0
10 # (the "License"); you may not use this file except in compliance with
42 url=$( (svn info | sed -n -e 's/^URL: \(.*\)/\1/p') || true)
43 elif [ -d .git ]; then
44 revision=$(git log -1 --no-show-signature --pretty=format:"%H" || true)
45 hostname=$(hostname)
46 url="git://${hostname}${cwd}"
68 * Licensed to the Apache Software Foundation (ASF) under one
69 * or more contributor license agreements. See the NOTICE file
70 * distributed with this work for additional information
71 * regarding copyright ownership. The ASF licenses this file
72 * to you under the Apache License, Version 2.0 (the
DDLXMLExporter.java (git://github.com/liferay/liferay-portal.git) Java · 159 lines
BuffFrame.lua (git://github.com/Shestak/ShestakUI.git) Lua · 155 lines
7 local rowbuffs = 16
9 local GetFormattedTime = function(s)
10 if s >= 86400 then
11 return format("%dd", floor(s / 86400 + 0.5))
12 elseif s >= 3600 then
13 return format("%dh", floor(s / 3600 + 0.5))
14 elseif s >= 60 then
15 return format("%dm", floor(s / 60 + 0.5))
100 local duration = auraButton.duration
101 if timeLeft and C.aura.show_timer == true then
102 duration:SetFormattedText(GetFormattedTime(timeLeft))
103 duration:SetVertexColor(1, 1, 1)
104 duration:Show()
README.md (git://github.com/weld/core.git) Markdown · 101 lines
LocalFileSystemRepository.java (git://github.com/apache/lucene-solr.git) Java · 158 lines
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
TestSchedulingPolicy.java (git://github.com/apache/hadoop-common.git) Java · 128 lines
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
init.jsp (git://github.com/liferay/liferay-portal.git) JavaServer Pages · 96 lines
42 page import="com.liferay.portal.kernel.trash.TrashRenderer" %><%@
43 page import="com.liferay.portal.kernel.util.Constants" %><%@
44 page import="com.liferay.portal.kernel.util.FastDateFormatFactoryUtil" %><%@
45 page import="com.liferay.portal.kernel.util.HtmlUtil" %><%@
46 page import="com.liferay.portal.kernel.util.ListUtil" %><%@
67 page import="com.liferay.trash.web.internal.search.EntrySearchTerms" %>
69 <%@ page import="java.text.Format" %>
71 <%@ page import="java.util.HashMap" %><%@
85 TrashDisplayContext trashDisplayContext = new TrashDisplayContext(request, liferayPortletResponse);
87 Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone);
89 String trashEntriesMaxAgeTimeDescription = LanguageUtil.getTimeDescription(locale, TrashUtil.getMaxAge(themeDisplay.getScopeGroup()) * Time.MINUTE, true);
workplace.properties (git://github.com/alkacon/opencms-core.git) Properties File · 87 lines
6 desc.flex_formatter=Allows flexible rendering of content elements with advanced logic.
7 desc.formatter_config=Contains the configuration for a single formatter.
8 desc.function=Special elements that programmatically create dynamic content.
9 desc.groupcontainer=Stores a group of content elements that can be re-used on various pages.
13 desc.jsp-search = Configuration of a search or content list for the easy integration of a server-side Solr search.
14 desc.listconfig=Configuration for a list that collects contents based on the specified search criteria.
15 desc.macro_formatter=Allows to render content elements from a combination of available fragment formatters.
16 desc.modelgroup=Stores the arrangement of content elements and settings that make up a model group.
17 desc.module_config=Defines resource types, property configurations and functions provided by a module.
29 fileicon.containerpage_template=Page template
30 fileicon.elementview=Element view
31 fileicon.flex_formatter=Flex formatter
32 fileicon.formatter_config=Formatter configuration
39 fileicon.jsp-search = Search Configuration
40 fileicon.listconfig=List
41 fileicon.macro_formatter=Macro formatter
42 fileicon.modelgroup=Model group
43 fileicon.module_config=Module configuration
GeoCodeQuery.java (git://github.com/winterstein/JTwitter.git) Java · 216 lines
CmsAddCategoriesPostCreateHandler.java (git://github.com/alkacon/opencms-core.git) Java · 111 lines
15 * Lesser General Public License for more details.
16 *
17 * For further information about Alkacon Software, please see the
18 * company website: http://www.alkacon.com
19 *
20 * For further information about OpenCms, please see the
21 * project website: http://www.opencms.org
22 *
50 * the path without the category repositories base path.<p>
51 *
52 * @see I_CmsCollectorPostCreateHandler for more information on where post create handlers can be configured.
53 */
54 public class CmsAddCategoriesPostCreateHandler implements I_CmsCollectorPostCreateHandler {
SchemaContractImpl.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 153 lines
template.go (git://github.com/smyrman/units.git) Go · 215 lines
DBusAnnotationInfo.d (git://github.com/gtkd-developers/GtkD.git) D · 211 lines
CmsUgcSessionQueue.java (git://github.com/alkacon/opencms-core.git) Java · 138 lines
gpuPlugin.h (http://psx4m.googlecode.com/svn/trunk/) C Header · 157 lines
image-metadata-geographic.adb (git://git.savannah.nongnu.org/v2p.git) Ada · 159 lines
pairwise.R (http://renjin.googlecode.com/svn/trunk/) R · 145 lines
AbstractRequestResponse.java (http://websecuritynotebook.googlecode.com/svn/trunk/) Java · 140 lines
23 import java.io.Writer;
24 import java.nio.charset.Charset;
25 import java.text.DateFormat;
26 import java.text.SimpleDateFormat;
63 String dateformat = TCPMonBundle.getMessage("dateformat00", "yyyy-MM-dd HH:mm:ss");
64 DateFormat df = new SimpleDateFormat(dateformat);
65 return df.format(new Date());
95 }
96 });
97 if (config.isXmlFormat()) {
98 HttpRequestFilter filter = new HttpRequestFilter(true);
99 filter.setContentFilterFactory(contentFilterFactory);
108 final Pipeline pipeline = new Pipeline();
109 if (config.isXmlFormat()) {
110 HttpResponseFilter filter = new HttpResponseFilter(true);
111 filter.setContentFilterFactory(contentFilterFactory);
texi2man (git://git.savannah.gnu.org/xboard.git) Perl · 190 lines
151 if (/\@display/) { printf("%s.nf\n", $manprefix); $example=1; next; }
152 if (/\@end display/) { printf("%s.fi\n", $manprefix); $example=0; next; }
153 if (/\@format/) { printf("%s.nf\n", $manprefix); $example=1; next; }
154 if (/\@end format/) { printf("%s.fi\n", $manprefix); $example=0; next; }
IntervalCategoryLabelGenerator.java (http://atf2flightsim.googlecode.com/svn/trunk/) Java · 128 lines
73 * @param formatter the number formatter (<code>null</code> not permitted).
74 */
75 public IntervalCategoryLabelGenerator(String labelFormat, NumberFormat formatter) {
76 super(labelFormat, formatter);
83 * @param formatter the date formatter (<code>null</code> not permitted).
84 */
85 public IntervalCategoryLabelGenerator(String labelFormat, DateFormat formatter) {
86 super(labelFormat, formatter);
104 if (getNumberFormat() != null) {
105 result[2] = getNumberFormat().format(value);
106 }
107 else if (getDateFormat() != null) {
116 result[3] = getNumberFormat().format(start);
117 result[4] = getNumberFormat().format(end);
118 }
119 else if (getDateFormat() != null) {
handle.c (http://nativecmd.googlecode.com/svn/trunk/) C · 219 lines
46 */
47 BOOL WINAPI
48 GetHandleInformation (HANDLE hObject,
49 LPDWORD lpdwFlags)
50 {
51 OBJECT_HANDLE_ATTRIBUTE_INFORMATION HandleInfo;
52 ULONG BytesWritten;
53 NTSTATUS Status;
58 Status = NtQueryObject (hObject,
59 ObjectHandleFlagInformation,
60 &HandleInfo,
61 sizeof(OBJECT_HANDLE_ATTRIBUTE_INFORMATION),
QuartilesDataSeries.java (http://pride-toolsuite.googlecode.com/svn/) Java · 170 lines
logger.py (https://code.google.com/p/xyzcmd/) Python · 170 lines
t_box_player_ctx.h (http://mingw-lib.googlecode.com/svn/trunk/) C Header · 180 lines
71 public:
72 T_Box_Input_Sequence *m_box_input;
73 AVFormatContext *m_format_ctx;
74 T_Box_Core m_core;
75 T_Box_Stream_Info m_audio;
83 T_Box_Stream_Main m_stream_main;
84 public:
85 explicit T_Box_Player_Context(T_Box_Input_Sequence *a_box_input, AVFormatContext *a_format_ctx);
86 ~T_Box_Player_Context();
87 void setAudioOutput(QAudioOutput *a_audioOutput)
91 qint64 duration()
92 {
93 return ((qint64)1000) * this->m_format_ctx->duration / AV_TIME_BASE;
94 }
95 QString durationToString(const QString &a_format)
toc-slide.aat (http://txt2tags.googlecode.com/svn/trunk/) Unknown · 409 lines
32 | * Fonts and Beautifiers |
33 | * Beautifiers |
34 | * Pre-Formatted Text |
35 | * More Cosmetics |
36 | * Lists |
84 The first 3 lines of the this file are used as headers,
85 on the following format:
87 line1: document title
107 The TYPEWRITER type that uses monospaced font for
108 pre-formatted text.
110 We will now enter on a subtitle...
VertexList.h (http://monsterrun.googlecode.com/svn/trunk/) C Header · 344 lines
12 /**
13 * This class contains a list of vertices. The list can be configured
14 * to contain several different formats, such as VertexVNT, VertexVNTT
15 * and so on.
16 *
210 /**
211 * Transform the vector found at a given semantic with the
212 * provided matrix. The matrix transformation includes the translation
213 * part of the matrix
214 * @param matrix the matrix to use.
217 /**
218 * Transforms the normal found at a give semantic with
219 * provided matrix. The matrix transformation excludes the translation
220 * part of the matrix.
221 * @param matrix the matrix to use.
DragListener.java (git://github.com/metsci/glimpse.git) Java · 180 lines
168 }
170 //@formatter:off
171 @Override public void eventsHovered( GlimpseMouseEvent ev, Set<EventSelection> events, TimeStamp time ) { }
172 @Override public void eventsExited( GlimpseMouseEvent ev, Set<EventSelection> events, TimeStamp time ) { }
177 @Override public void mousePressed( GlimpseMouseEvent ev ) { }
178 @Override public void mouseWheelMoved( GlimpseMouseEvent ev ) { }
179 //@formatter:on
180 }
geant_copy_command.e (git://github.com/gobo-eiffel/gobo.git) Specman e · 232 lines
ptr_inserter.hpp (git://github.com/MisterTea/HyperNEAT.git) C++ Header · 258 lines
FaxReader.java (git://github.com/twilio/twilio-java.git) Java · 222 lines
35 /**
36 * Retrieve only those faxes sent from this phone number, specified in <a
37 * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> format..
38 *
39 * @param from Retrieve only those faxes sent from this phone number
47 /**
48 * Retrieve only those faxes sent to this phone number, specified in <a
49 * href="https://www.twilio.com/docs/glossary/what-e164">E.164</a> format..
50 *
51 * @param to Retrieve only those faxes sent to this phone number
60 * Retrieve only those faxes with a `date_created` that is before or equal to
61 * this value, specified in <a href="https://en.wikipedia.org/wiki/ISO_8601">ISO
62 * 8601</a> format..
63 *
64 * @param dateCreatedOnOrBefore Retrieve only faxes created on or before this
PathToRouterBuilder.java (git://github.com/jersey/jersey.git) Java · 65 lines
23 * Modifications:
24 * If applicable, add the following below the License Header, with the fields
25 * enclosed by brackets [] replaced by your own identifying information:
26 * "Portions Copyright [year] [name of copyright owner]"
27 *
44 * An intermediate path matching router builder.
45 *
46 * This builder completes a routing information for a single routed {@link org.glassfish.jersey.uri.PathPattern}.
47 * In case the unmatched right-hand part of the request path is matched by the routed path pattern, the request
48 * processing context will be serially routed to all the child routers attached to the routing pattern using this
CoinbaseAddresses.java (git://github.com/timmolter/XChange.git) Java · 81 lines
messages_da.properties (git://github.com/alkacon/opencms-core.git) Properties File · 29 lines
7 #ERR_BAD_RESOURCENAME_DOTS_1 =Der angegebene Ressourcenname "{0}" ist ungültig. Er darf nicht nur Punkte enthalten.
8 #ERR_BAD_ORGUNIT_2 =Die angegebene Organisationseinheit "{0}" stimmt nicht mit der Organisationseinheit "{1}" des Benutzers überein.
9 #ERR_USER_ADDINFO_KEY_NULL_1 =Fehler beim Versuch, eine zus�tzliche Information mit dem Namen 'null' f�r den Benutzer "{0}" zu setzen.
10 #
11 #ERR_EMPTY_SITEROOT_0 =Kann die Siteroot nicht wiederherstellen, da die gespeicherte Siteroot leer ist.
OfflineBeatDetection.pde (git://github.com/ddf/Minim.git) Processing · 83 lines
4 * You can do this inside of <code>draw</code> by calling <code>read</code> on the AudioRecordingStream for the file.
5 * <p>
6 * For more information about Minim and additional features,
7 * visit http://code.compartmental.net/minim/
8 */
32 // expects buffers the length of song's buffer size
33 // and samples captured at songs's sample rate
34 beat = new BeatDetect(buffer.getBufferSize(), song.getFormat().getSampleRate());
35 // set the sensitivity to 300 milliseconds
36 // After a beat has been detected, the algorithm will wait for 300 milliseconds
README.md (git://github.com/GaloisInc/halfs.git) Markdown · 106 lines
command_legacy.go (git://github.com/mkb218/gosndfile.git) Go · 82 lines
pt.js (git://github.com/sebtools/Neptune.git) JavaScript · 64 lines
20 "UPLOAD_FILES_SMALLER_THAN": "Favor enviar apenas arquivos menores que %s.",
21 "UPLOAD_IMAGES_ONLY": "Favor enviar apenas imagens. Outros arquivos não são aceitos.",
22 "UPLOAD_IMAGES_TYPE_JPEG_GIF_PNG": "Favor enviar apenas imagens no formato JPG, GIF ou PNG.",
23 "browse": "Browse...",
24 "bytes": " bytes",
HttpResponse.java (git://github.com/restlet/restlet-framework-java.git) Java · 108 lines
AlterTableRenameConstraintToStep.java (git://github.com/jOOQ/jOOQ.git) Java · 109 lines
GoodLoggerCheckTests.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 79 lines
42 public void externalLoggerLibraryTestData() throws Exception {
43 String[] expected = {
44 expectedErrorMessage(3,1, String.format(EXTERNAL_LOGGER_USED_MESSAGE,
45 "org.apache.logging.log4j")),
46 expectedErrorMessage(4,1, String.format(EXTERNAL_LOGGER_USED_MESSAGE, "org.slf4j")),
47 expectedErrorMessage(5,1, String.format(EXTERNAL_LOGGER_USED_MESSAGE, "java.util.logging"))
48 };
49 verify(checker, getPath("ExternalLoggerLibraryTestData.java"), expected);
76 private String expectedErrorMessage(int line, int column, String errorMessage) {
77 return String.format("%d:%d: %s", line, column, errorMessage);
78 }
79 }
CsvReader.groovy (git://github.com/dkandalov/groovy-beans.git) Groovy · 114 lines
AbstractIdentifierServiceAwareMetadataProvider.java (git://github.com/SpringSource/spring-roo.git) Java · 77 lines
indirected.hpp (git://github.com/MisterTea/HyperNEAT.git) C++ Header · 100 lines
SLASerDes.java (git://github.com/liferay/liferay-portal.git) Java · 442 lines
57 sb.append("{");
59 DateFormat liferayToJSONDateFormat = new SimpleDateFormat(
60 "yyyy-MM-dd'T'HH:mm:ss'Z'");
83 sb.append("\"");
85 sb.append(liferayToJSONDateFormat.format(sla.getDateModified()));
87 sb.append("\"");
204 Map<String, String> map = new TreeMap<>();
206 DateFormat liferayToJSONDateFormat = new SimpleDateFormat(
207 "yyyy-MM-dd'T'HH:mm:ss'Z'");
AggregateLifecycle.java (git://github.com/AxonFramework/AxonFramework.git) Java · 217 lines
109 * Note that different repository implementations may react differently to aggregates marked for deletion.
110 * Typically, Event Sourced Repositories will ignore the marking and expect deletion to be provided as part of Event
111 * information.
112 */
113 public static void markDeleted() {
144 * Marks this aggregate as deleted. Implementations may react differently to aggregates marked for deletion.
145 * Typically, Event Sourced Repositories will ignore the marking and expect deletion to be provided as part of Event
146 * information.
147 */
148 protected abstract void doMarkDeleted();
juce_FileSearchPathListComponent.h (http://juced.googlecode.com/svn/trunk/) C Header · 133 lines
SpellChecker2_Options.lua (http://sarf-wow-addons.googlecode.com/svn/trunk/) Lua · 150 lines
debug.scm (git://git.savannah.nongnu.org/skribilo.git) Scheme · 189 lines
dll_kernel32_char.pas (http://litwrd.googlecode.com/svn/) Pascal · 173 lines
103 function GetTimeFormat(Locale: LCID; dwFlags: DWORD; lpTime: PSystemTime;
104 lpFormat: PAnsiChar; lpTimeStr: PAnsiChar; cchTime: Integer): Integer; stdcall; external kernel32 name 'GetTimeFormatA';
105 function GetDateFormat(Locale: LCID; dwFlags: DWORD; lpDate: PSystemTime;
106 lpFormat: PAnsiChar; lpDateStr: PAnsiChar; cchDate: Integer): Integer; stdcall; external kernel32 name 'GetDateFormatA';
107 function GetNumberFormat(Locale: LCID; dwFlags: DWORD; lpValue: PAnsiChar;
108 lpFormat: PNumberFmt; lpNumberStr: PAnsiChar; cchNumber: Integer): Integer; stdcall; external kernel32 name 'GetNumberFormatA';
109 function GetCurrencyFormat(Locale: LCID; dwFlags: DWORD; lpValue: PAnsiChar;
110 lpFormat: PCurrencyFmt; lpCurrencyStr: PAnsiChar; cchCurrency: Integer): Integer; stdcall; external kernel32 name 'GetCurrencyFormatA';
111 // function EnumCalendarInfo(lpCalInfoEnumProc: TFNCalInfoEnumProc; Locale: LCID;
112 // Calendar: CALID; CalType: CALTYPE): BOOL; stdcall;
119 lpDestStr: PAnsiChar; cchDest: Integer): Integer; stdcall; external kernel32 name 'FoldStringA';
120 { LPWSTR pMessage = L"%1!*.*s! %3 %4!*s!";
121 FormatMessage(FORMAT_MESSAGE_FROM_STR |
122 FORMAT_MESSAGE_ALLOCATE_BUFFER,
DscNodeReportInner.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 517 lines
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License. See License.txt in the project root for
4 * license information.
5 *
6 * Code generated by Microsoft (R) AutoRest Code Generator.
70 /**
71 * Gets or sets the reportFormatVersion of the node report.
72 */
73 @JsonProperty(value = "reportFormatVersion")
307 * Set gets or sets the reportFormatVersion of the node report.
308 *
309 * @param reportFormatVersion the reportFormatVersion value to set
310 * @return the DscNodeReportInner object itself.
311 */
312 public DscNodeReportInner withReportFormatVersion(String reportFormatVersion) {
313 this.reportFormatVersion = reportFormatVersion;
zincText.tcl (http://tcl-map.googlecode.com/svn/trunk/) TCL · 181 lines
ClassificationInfoUI.java (http://rapla.googlecode.com/svn/) Java · 121 lines
105 buf.append(getString("created_at"));
106 buf.append(" ");
107 buf.append(getRaplaLocale().formatDate(createTime));
108 buf.append(", ");
109 }
110 buf.append(getString("last_changed"));
111 buf.append(" ");
112 buf.append(getRaplaLocale().formatDate(lastChangeTime));
113 buf.append("</div>");
114 buf.append("\n");
privacy.php (http://massey-se-c-team2.googlecode.com/svn/trunk/) PHP · 88 lines
17 <ul>
18 <li>
19 Before or at the time of collecting personal information, we will identify the purposes for which information is being collected.
20 </li>
21 <li>
26 </li>
27 <li>
28 We will collect personal information by lawful and fair means and, where appropriate, with the knowledge or consent of the individual concerned.
29 </li>
30 <li>
35 </li>
36 <li>
37 We will make readily available to customers information about our policies and practices relating to the management of personal information.
38 </li>
39 </ul>
55 identify one unique visitor from another visitor during a particular session. A session is the period of active site-use while that
56 unique visitor is linked to our server. We may use cookie technology during a session as a tool to carry forward your input
57 information during the enrollment process. This enables the visitor to input their information once and have the information appear
58 later during the enrollment process. No personally identifiable information is stored on the cookie. The cookie expires and is
trlowest.html (http://cecilia4.googlecode.com/svn/trunk/) HTML · 146 lines
rcstime.c (git://git.savannah.gnu.org/rcs.git) C · 171 lines
1 /* Convert between RCS time format and POSIX and/or C formats.
3 Copyright (C) 2010-2012 Thien-Thi Nguyen
30 void
31 time2date (time_t unixtime, char date[datesize])
32 /* Convert Unix time to RCS format. For compatibility with older versions of
33 RCS, dates from 1900 through 1999 are stored without the leading "19". */
34 {
52 void
53 str2date (char const *source, char target[datesize])
54 /* Parse a free-format date in ‘source’, convert it into
55 RCS internal format, and store the result into ‘target’. */
91 char const *
92 date2str (char const date[datesize], char datebuf[datesize + zonelenmax])
93 /* Format a user-readable form of the RCS format ‘date’
94 into the buffer ‘datebuf’. Return ‘datebuf’. */
95 {
Ex8.genericFrame3D.analyze.Dynamic.EQ.bidirect.tcl (https://code.google.com/p/opensees-websocket/) TCL · 100 lines
7 # source in procedures
8 source ReadSMDfile.tcl; # procedure for reading GM file and converting it to proper format
10 # Bidirectional Uniform Earthquake ground motion (uniform acceleration input at all support nodes)
57 ReadSMDFile $inFile $outFile dt; # call procedure to convert the ground-motion file
58 set GMfatt [expr $g*$GMfact]; # data in input file is in g Unifts -- ACCELERATION TH
59 set AccelSeries "Series -dt $dt -filePath $outFile -factor $GMfatt"; # time series information
60 pattern UniformExcitation $IDloadTag $GMdirection -accel $AccelSeries ; # create Unifform excitation
61 }
SubdomainAnalysis.h (https://code.google.com/p/opensees-websocket/) C Header · 144 lines
LineBuild.cs
(git://github.com/chrisforbes/OpenRA.git)
C# · 21 lines
✨ Summary
This C# code defines a custom trait LineBuild
for OpenRA, a real-time strategy game mod. It specifies that the LineBuild
trait has an associated integer value Range
, set to 5. The trait is then defined as an empty class, indicating it’s a simple data structure used in the game’s logic.
This C# code defines a custom trait LineBuild
for OpenRA, a real-time strategy game mod. It specifies that the LineBuild
trait has an associated integer value Range
, set to 5. The trait is then defined as an empty class, indicating it’s a simple data structure used in the game’s logic.
This C# code defines a custom trait LineBuild
for OpenRA, a real-time strategy game mod. It specifies that the LineBuild
trait has an associated integer value Range
, set to 5. The trait is then defined as an empty class, indicating it’s a simple data structure used in the game’s logic.
This C# code defines a custom trait LineBuild
for OpenRA, a real-time strategy game mod. It specifies that the LineBuild
trait has an associated integer value Range
, set to 5. The trait is then defined as an empty class, indicating it’s a simple data structure used in the game’s logic.
1 #region Copyright & License Information
2 /*
3 * Copyright 2007-2011 The OpenRA Developers (see AUTHORS)
4 * This file is part of OpenRA, which is free software. It is made
5 * available to you under the terms of the GNU General Public License
6 * as published by the Free Software Foundation. For more information,
7 * see COPYING.
8 */
messages_en.properties (http://mobicents.googlecode.com/svn/trunk/) Unknown · 91 lines
31 javax.faces.component.UIInput.CONVERSION=value could not be converted to the expected type
32 javax.faces.component.UIInput.REQUIRED=value is required
33 javax.faces.component.UIInput.UPDATE=an error occurred when processing your submitted information
34 javax.faces.component.UISelectOne.INVALID=value is not valid
35 javax.faces.component.UISelectMany.INVALID=value is not valid
Worksheet.php
(https://PHPExcel.svn.codeplex.com/svn)
PHP · 1096 lines
✨ Summary
This PHP code is part of a library for generating Microsoft Office XML files, specifically worksheets. It writes data to an XML file in a format compatible with Microsoft Excel. The code handles various elements such as cells, drawings, comments, and legacy drawing styles, formatting the output according to specific office versions (e.g., 2003, 2007, 2010).
This PHP code is part of a library for generating Microsoft Office XML files, specifically worksheets. It writes data to an XML file in a format compatible with Microsoft Excel. The code handles various elements such as cells, drawings, comments, and legacy drawing styles, formatting the output according to specific office versions (e.g., 2003, 2007, 2010).
61 $objWriter->startElement('worksheet');
62 $objWriter->writeAttribute('xml:space', 'preserve');
63 $objWriter->writeAttribute('xmlns', 'http://schemas.openxmlformats.org/spreadsheetml/2006/main');
64 $objWriter->writeAttribute('xmlns:r', 'http://schemas.openxmlformats.org/officeDocument/2006/relationships');
270 /**
271 * Write SheetFormatPr
272 *
273 * @param PHPExcel_Shared_XMLWriter $objWriter XML Writer
398 $objWriter->writeAttribute('objects', ($pSheet->getProtection()->getObjects() ? 'true' : 'false'));
399 $objWriter->writeAttribute('scenarios', ($pSheet->getProtection()->getScenarios() ? 'true' : 'false'));
400 $objWriter->writeAttribute('formatCells', ($pSheet->getProtection()->getFormatCells() ? 'true' : 'false'));
401 $objWriter->writeAttribute('formatColumns', ($pSheet->getProtection()->getFormatColumns() ? 'true' : 'false'));
402 $objWriter->writeAttribute('formatRows', ($pSheet->getProtection()->getFormatRows() ? 'true' : 'false'));
403 $objWriter->writeAttribute('insertColumns', ($pSheet->getProtection()->getInsertColumns() ? 'true' : 'false'));
404 $objWriter->writeAttribute('insertRows', ($pSheet->getProtection()->getInsertRows() ? 'true' : 'false'));
extras.py
(git://github.com/apresta/tagger.git)
Python · 152 lines
✨ Summary
This Python code defines a set of classes and functions for natural language processing tasks, including text processing, stemming, tagging, and dictionary building. It provides tools for converting Unicode strings to ASCII, parsing HTML, and analyzing text data, as well as creating dictionaries based on NLTK corpora. The code is designed to be used in a text analysis or information retrieval application.
This Python code defines a set of classes and functions for natural language processing tasks, including text processing, stemming, tagging, and dictionary building. It provides tools for converting Unicode strings to ASCII, parsing HTML, and analyzing text data, as well as creating dictionaries based on NLTK corpora. The code is designed to be used in a text analysis or information retrieval application.
README.vmgen (git://github.com/earl/gforth-mirror.git) Unknown · 69 lines
JSONDecoder.as
(http://gmaps-utility-library-flash.googlecode.com/svn/trunk/)
ActionScript · 330 lines
✨ Summary
This ActionScript code defines a class for parsing JSON data from an input stream. It uses a finite state machine to recognize and parse different types of JSON elements, such as objects, arrays, strings, numbers, booleans, and null values. The parser throws errors if it encounters unexpected or malformed input.
This ActionScript code defines a class for parsing JSON data from an input stream. It uses a finite state machine to recognize and parse different types of JSON elements, such as objects, arrays, strings, numbers, booleans, and null values. The parser throws errors if it encounters unexpected or malformed input.
Length.php
(http://0byte.googlecode.com/svn/trunk/)
PHP · 28 lines
✨ Summary
This is a class for handling width/height length attribute transformations to CSS. It takes an attribute name and optionally a CSS property name, and uses the confiscateAttr
method to remove the attribute from the array and add it as a CSS property with the specified value.
This is a class for handling width/height length attribute transformations to CSS. It takes an attribute name and optionally a CSS property name, and uses the confiscateAttr
method to remove the attribute from the array and add it as a CSS property with the specified value.
Document.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 768 lines
✨ Summary
This is a Java class implementation of a Document object, which represents an XML document. It provides methods for creating and manipulating elements, comments, processing instructions, and doc types, as well as iterating over descendants and setting arbitrary properties. The class also implements the Parent interface and provides access to its own document.
This is a Java class implementation of a Document object, which represents an XML document. It provides methods for creating and manipulating elements, comments, processing instructions, and doc types, as well as iterating over descendants and setting arbitrary properties. The class also implements the Parent interface and provides access to its own document.
50 individuals on behalf of the JDOM Project and was originally
51 created by Jason Hunter <jhunter_AT_jdom_DOT_org> and
52 Brett McLaughlin <brett_AT_jdom_DOT_org>. For more information
53 on the JDOM Project, please see <http://www.jdom.org/>.
62 /**
63 * An XML document. Methods allow access to the root element as well as the
64 * {@link DocType} and other document-level information.
65 *
66 * @version $Revision: 1.85 $, $Date: 2007/11/10 05:28:58 $
610 * should be used.
611 *
612 * @return <code>String</code> - information about the
613 * <code>Document</code>
614 */
effects.js
(http://mobicents.googlecode.com/svn/trunk/)
JavaScript · 1128 lines
✨ Summary
This JavaScript code defines a set of visual effects and utility functions for manipulating HTML elements, such as fading, animating, highlighting, and modifying element styles. It also provides methods for getting inline styles, forcing re-rendering, and collecting text nodes from an element. The effects are designed to be reusable and can be chained together to create complex animations.
This JavaScript code defines a set of visual effects and utility functions for manipulating HTML elements, such as fading, animating, highlighting, and modifying element styles. It also provides methods for getting inline styles, forcing re-rendering, and collecting text nodes from an element. The effects are designed to be reusable and can be chained together to create complex animations.
README (https://PHPExcel.svn.codeplex.com/svn) Unknown · 109 lines
usb_cdc_acm.h
(git://github.com/earl/gforth-mirror.git)
C++ Header · 44 lines
✨ Summary
This C header defines constants and a struct for interacting with an ACM (Asynchronous Communication Module) device, likely used for serial communication. It specifies request codes, notification codes, and a packed struct to represent the format of a response expected by ACM_GET_LINE_ENCODING
. The code is part of a larger program that uses this ACM device, possibly for serial port emulation or other purposes.
This C header defines constants and a struct for interacting with an ACM (Asynchronous Communication Module) device, likely used for serial communication. It specifies request codes, notification codes, and a packed struct to represent the format of a response expected by ACM_GET_LINE_ENCODING
. The code is part of a larger program that uses this ACM device, possibly for serial port emulation or other purposes.
This C header defines constants and a struct for interacting with an ACM (Asynchronous Communication Module) device, likely used for serial communication. It specifies request codes, notification codes, and a packed struct to represent the format of a response expected by ACM_GET_LINE_ENCODING
. The code is part of a larger program that uses this ACM device, possibly for serial port emulation or other purposes.
This C header defines constants and a struct for interacting with an ACM (Asynchronous Communication Module) device, likely used for serial communication. It specifies request codes, notification codes, and a packed struct to represent the format of a response expected by ACM_GET_LINE_ENCODING
. The code is part of a larger program that uses this ACM device, possibly for serial port emulation or other purposes.
storage_volumes_controller.rb
(http://mobicents.googlecode.com/svn/trunk/)
Ruby · 70 lines
✨ Summary
This Ruby code defines a controller class StorageVolumesController
that handles HTTP requests related to storage volumes in an environment. It includes methods for deleting and updating the status of a storage volume, as well as retrieving its details. The controller uses before_filters to require user authentication and environment authorization.
This Ruby code defines a controller class StorageVolumesController
that handles HTTP requests related to storage volumes in an environment. It includes methods for deleting and updating the status of a storage volume, as well as retrieving its details. The controller uses before_filters to require user authentication and environment authorization.
27 if @storage_volume && @storage_volume.can_be_deleted?
28 @storage_volume.destroy
29 respond_to do |format|
30 format.js { render(generate_json_response(:ok,
35 else
36 message = (@storage_volume && !@storage_volume.can_delete?) ? "Cannot delete volume while it is #{@storage_volume.current_state}." : "Cannot find volume."
37 respond_to do |format|
38 format.js { render(generate_json_response(:error, :message=>message)) }
45 get_storage_volume
46 if @storage_volume
47 respond_to do |format|
48 format.js { render(generate_json_response(:ok,
51 end
52 else
53 respond_to do |format|
54 format.js { render(generate_json_response(:error, :message=>"Cannot find requested volume")) }
NAnt.DotNetTasks.xml (git://github.com/philiplaureano/LinFu.git) XML · 5334 lines
317 <summary>
318 The culture string associated with the output assembly.
319 The string must be in RFC 1766 format, such as "en-US".
320 </summary>
321 <remarks>
502 <member name="P:NAnt.DotNet.Tasks.AssemblyLinkerTask.Version">
503 <summary>
504 Specifies version information for the assembly. The format of the
505 version string is <c>major</c>.<c>minor</c>.<c>build</c>.<c>revision</c>.
506 </summary>
561 Determines the manifest resource name of the given resource file.
562 </summary>
563 <param name="resources">The <see cref="T:NAnt.DotNet.Types.ResourceFileSet"/> containing information that will used to assemble the manifest resource name.</param>
564 <param name="resourcePhysicalFile">The resource file of which the manifest resource name should be determined.</param>
565 <param name="resourceLogicalFile">The logical location of the resource file.</param>
MFCCreateCOMPage.h
(https://cfx.svn.codeplex.com/svn)
C Header · 40 lines
✨ Summary
This is a C++ header file for a dialog box class named CMFCCreateCOMPage
. It defines a custom dialog box with a specific ID (IDD_CREATECOM_PAGE
) and contains member functions for handling user interactions, data exchange, and message mapping. The class inherits from CDialog
and uses Microsoft-specific features like the DECLARE_DYNAMIC
macro.
This is a C++ header file for a dialog box class named CMFCCreateCOMPage
. It defines a custom dialog box with a specific ID (IDD_CREATECOM_PAGE
) and contains member functions for handling user interactions, data exchange, and message mapping. The class inherits from CDialog
and uses Microsoft-specific features like the DECLARE_DYNAMIC
macro.
InternalException.java
(http://mobicents.googlecode.com/svn/trunk/)
Java · 68 lines
✨ Summary
This Java code defines a custom exception class InternalException
that extends the built-in Exception
class. It provides three constructors to create instances of this exception, allowing for different levels of detail and context information about the error. The exception can be used in Java applications to handle internal errors or other unexpected events.
This Java code defines a custom exception class InternalException
that extends the built-in Exception
class. It provides three constructors to create instances of this exception, allowing for different levels of detail and context information about the error. The exception can be used in Java applications to handle internal errors or other unexpected events.
mach.fs
(git://github.com/earl/gforth-mirror.git)
F# · 65 lines
✨ Summary
This is not F# code, but rather a C-like assembly language file for the Gforth programming language. It defines various constants and features that configure the behavior of the Gforth interpreter, such as the presence of floating-point operations, memory allocation, and wordsets. The constants define parameters for target systems, kernel size, stack sizes, and other settings.
This is not F# code, but rather a C-like assembly language file for the Gforth programming language. It defines various constants and features that configure the behavior of the Gforth interpreter, such as the presence of floating-point operations, memory allocation, and wordsets. The constants define parameters for target systems, kernel size, stack sizes, and other settings.
This is not F# code, but rather a C-like assembly language file for the Gforth programming language. It defines various constants and features that configure the behavior of the Gforth interpreter, such as the presence of floating-point operations, memory allocation, and wordsets. The constants define parameters for target systems, kernel size, stack sizes, and other settings.
This is not F# code, but rather a C-like assembly language file for the Gforth programming language. It defines various constants and features that configure the behavior of the Gforth interpreter, such as the presence of floating-point operations, memory allocation, and wordsets. The constants define parameters for target systems, kernel size, stack sizes, and other settings.
StartPage.java
(http://mp-rechnungs-und-kundenverwaltung.googlecode.com/svn/trunk/)
Java · 367 lines
✨ Summary
This Java code sets up a GUI with multiple tabs, each containing different components such as text areas, tables, and lists. It displays system information, database settings, and file paths. The fillFiles
method populates the list of files and licenses from a local resource file. The GUI is designed to display various types of data in a tabbed layout.
This Java code sets up a GUI with multiple tabs, each containing different components such as text areas, tables, and lists. It displays system information, database settings, and file paths. The fillFiles
method populates the list of files and licenses from a local resource file. The GUI is designed to display various types of data in a tabbed layout.
glossary.txt (https://bitbucket.org/tarek/hitchhiker-guide-packaging/) Plain Text · 208 lines
156 Making a release may entail the publishing of multiple distributions.
157 For example, if version 1.0 of a project was released, it could be
158 available in both a source distribution format and a Windows
159 installer distribution format.
162 A plain text format used in many Python projects for documentation. The
163 reStructuredText format is used in this document. For more information,
164 please see the `reStructuredText Documentation
165 <http://docutils.sourceforge.net/rst.html>`_.
181 System Package
182 A package provided by in a format native to the operating system.
183 e.g. rpm or dpkg file.
185 Tarball
186 An archive format for collected a group of files together as one. The
187 format's extension is usually ``.tar``, which represents its meaning,
read.Rd (git://github.com/rajarshi/cdkr.git) Unknown · 65 lines
MetadataCacheManagerSQL.cs (https://hg01.codeplex.com/hydrodesktop) C# · 1175 lines
131 public DataServiceInfo GetServiceByServiceUrl(string serviceURL)
132 {
133 var sql = string.Format("SELECT * FROM DataServices where ServiceID = '{0}'", serviceURL);
134 var tbl = _db.LoadTable("services", sql);
135 return tbl.Rows.Count == 1 ? ServiceFromDataRow(tbl.Rows[0]) : null;
162 string sql = "SELECT * FROM DataServicesCache WHERE " +
163 String.Format("EastLongitude BETWEEN {0} AND {1}", xMin, xMax) +
164 String.Format("OR WestLongitude BETWEEN {0} AND {1}", xMin, xMax) +
165 String.Format("OR NorthLatitude BETWEEN {0} AND {1}", yMin, yMax) +
166 String.Format("OR SouthLatitude BETWEEN {0} AND {1}", yMin, yMax);
emboss_epestfind.xml (https://bitbucket.org/cistrome/cistrome-harvard/) XML · 71 lines
aetools.rst (http://unladen-swallow.googlecode.com/svn/trunk/) Unknown · 91 lines
GmailEngine.java (http://beangle.googlecode.com/svn/) Java · 65 lines
8 import com.octo.captcha.component.image.backgroundgenerator.UniColorBackgroundGenerator;
9 import com.octo.captcha.component.image.color.RandomListColorGenerator;
10 import com.octo.captcha.component.image.deformation.ImageDeformation;
11 import com.octo.captcha.component.image.deformation.ImageDeformationByFilters;
53 new Font("Credit valley", Font.BOLD, fontSize) });
55 ImageDeformation postDef = new ImageDeformationByFilters(new ImageFilter[] {});
56 ImageDeformation backDef = new ImageDeformationByFilters(new ImageFilter[] {});
57 ImageDeformation textDef = new ImageDeformationByFilters(new ImageFilter[] {});
59 WordToImage word2image = new DeformedComposedWordToImage(font, background, randomPaster,
CategoryDaily.pm
(git://github.com/openmelody/melody.git)
Perl · 284 lines
✨ Summary
This is a Perl module that defines a class MT::ArchiveType::CategoryDaily
. It provides functionality for managing daily archives of blog posts, including methods for generating archive files, counting entries, and iterating over categories. The code appears to be part of the MT (Making Things) blogging platform’s architecture.
This is a Perl module that defines a class MT::ArchiveType::CategoryDaily
. It provides functionality for managing daily archives of blog posts, including methods for generating archive files, counting entries, and iterating over categories. The code appears to be part of the MT (Making Things) blogging platform’s architecture.
README.txt (https://bitbucket.org/tarek/hitchhiker-guide-packaging/) Plain Text · 18 lines
5 other aspects of the Python module packaging ecosystem.
7 All chapters of the Guide are written in [reStructuredText][1] format,
8 and the Guide itself is built using the [Sphinx][2] documentation
9 tool.
12 <http://guide.python-distribute.org/>.
14 Please see the `source/license.txt` file for license information.
16 [1]: http://docutils.sourceforge.net/rst.html
__init__.py
(https://code.google.com/p/mango-py/)
Python · 118 lines
✨ Summary
This Python code provides a set of functions and classes for serializing and deserializing Django objects to various formats, such as JSON, XML, and YAML. It allows users to register custom serializers and provides a way to serialize and deserialize querysets, making it easier to work with data in different formats.
This Python code provides a set of functions and classes for serializing and deserializing Django objects to various formats, such as JSON, XML, and YAML. It allows users to register custom serializers and provides a way to serialize and deserialize querysets, making it easier to work with data in different formats.
73 return _serializers.keys()
75 def get_public_serializer_formats():
76 if not _serializers:
77 _load_serializers()
83 return _serializers[format].Deserializer
85 def serialize(format, queryset, **options):
86 """
87 Serialize a queryset (or any iterator that returns database objects) using
112 for format in BUILTIN_SERIALIZERS:
113 register_serializer(format, BUILTIN_SERIALIZERS[format], serializers)
114 if hasattr(settings, "SERIALIZATION_MODULES"):
115 for format in settings.SERIALIZATION_MODULES:
116 register_serializer(format, settings.SERIALIZATION_MODULES[format], serializers)
117 _serializers = serializers