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

35

36 /**

37 * The #PangoItem structure stores information about a segment of text.

38 */

39 public final class PgItem

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);

37

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

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 *

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>

20

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">

23

61 </cffunction>

62

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">

65

136 </cffunction>

137

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

37 COOKIE( 1094, STRING_ENTRY, "cookie"),

38 OPTFLAGS( 1122, STRING_ENTRY, "optflags"),

39 PAYLOADFORMAT( 1124, STRING_ENTRY, "payloadformat"),

40 PAYLOADCOMPRESSOR( 1125, STRING_ENTRY, "payloadcompressor"),

41 PAYLOADFLAGS( 1126, STRING_ENTRY, "payloadflags"),

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;

19

20

76

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 }

149

ApiPolicyContract.java (git://github.com/WindowsAzure/azure-sdk-for-java.git) Java · 159 lines

26 * @return the format value.

27 */

28 PolicyContentFormat format();

29

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 }

115

153 * @return the next update stage

154 */

155 Update withFormat(PolicyContentFormat format);

156 }

157

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;

33

34 import java.text.DateFormat;

35 import java.text.ParseException;

36

172

173 if (clazz.equals(Date.class)) {

174 DateFormat dateFormat =

175 DateFormatFactoryUtil.getSimpleDateFormat("yyyy-MM-dd");

176

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

10 // originally intended, but failed to implement.

11 //

12 // For more information, see http://www.boost.org/libs/range/

13 //

14 #ifndef BOOST_RANGE_DETAIL_DEMOTE_ITERATOR_TRAVERSAL_TAG_HPP_INCLUDED

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

31

32 // ErrInvalidPublicKey results when a public key is not usable by this code.

33 // FIPS is quite strict about the format of DSA keys, but other code may be

34 // less so. Thus, when using keys which may have been generated by other code,

35 // this error must be handled.

t-get_si.c (https://gitlab.com/torshie/modern-tool.git) C · 223 lines

192 SIZ(f) = data[i].size;

193 PREC(f) = numberof (data[i].d);

194 MPF_CHECK_FORMAT (f);

195

196 got = mpf_get_si (f);

stuff.d (git://github.com/plol/d-interp.git) D · 277 lines

2

3 import std.typecons, std.functional, std.conv, std.traits, std.range;

4 import std.format, std.array, std.string, std.algorithm;

5 import std.typetuple;

6

14 }

15

16 string format(T...)(T t) {

17 auto app = appender!string();

18 formattedWrite(app, t);

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

139 @Override

140 public String toString() {

141 XMLBuilder builder = XMLBuilder.nonFormatting();

142 appendTo(builder);

143 return builder.toString();

ChangeStreamEvent.java (git://github.com/SpringSource/spring-data-mongodb.git) Java · 223 lines

187

188 throw new IllegalArgumentException(

189 String.format("No converter found capable of converting %s to %s", fullDocument.getClass(), targetType));

190 }

191

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

76

77 if (details->trace_fields) {

78 struct tep_format_field *field;

79

80 if (evsel->core.attr.type != PERF_TYPE_TRACEPOINT) {

83 }

84

85 field = evsel->tp_format->format.fields;

86 if (field == NULL) {

87 printed += comma_fprintf(fp, &first, " (no trace field)");

TrashEntryServiceSoap.java (git://github.com/liferay/liferay-portal.git) Java · 409 lines

43 * compatible. SOAP allows different languages like Java, .NET, C++, PHP, and

44 * even Perl, to call the generated services. One drawback of SOAP is that it is

45 * slow because it needs to serialize all calls into a text format (XML).

46 * </p>

47 *

BattleInformation.as (http://shining-fluff-devkit.googlecode.com/svn/trunk/) ActionScript · 274 lines

13 import flash.events.Event;

14

15 public class BattleInformation extends ComponentBase

16 {

17 private var _landEffect:SpriteEx;

37 private var _currentEnemyDefinition:CharacterDefinition;

38

39 public function BattleInformation() {

40 super();

41 }

266 }

267

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

18

19 To release a closed-source product which uses JUCE, commercial licenses are

20 available: visit www.juce.com for more information.

21

22 ==============================================================================

Event.java (git://github.com/splunk/splunk-sdk-java.git) Java · 304 lines

73

74 if (this.time != null) {

75 writeFieldTo(out, "time", String.format("%.3f", time.getTime() / 1000D));

76 }

77

XDotLexer.java (git://github.com/jgralab/jgralab.git) Java · 256 lines

6 * ist@uni-koblenz.de

7 *

8 * For bug reports, documentation and further information, visit

9 *

10 * https://github.com/jgralab/jgralab

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;

27

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());

166

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.

25

26 /**

27 * Description of the operation. May include HTML formatting tags.

28 */

29 @JsonProperty(value = "properties.description")

90

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

1 package com.intellij.json.formatter;

2

3 import com.intellij.application.options.IndentOptionsEditor;

81 consumer.showCustomOption(JsonCodeStyleSettings.class,

82 "PROPERTY_ALIGNMENT",

83 JsonBundle.message("formatter.align.properties.caption"),

84 "Objects",

85 Holder.ALIGN_OPTIONS,

introspection.py (git://github.com/JetBrains/intellij-community.git) Python · 122 lines

89 """

90 Returns a dictionary of fieldname -> infodict for the given table,

91 where each infodict is in the format:

92 {'primary_key': boolean representing whether it's the primary key,

93 'unique': boolean representing whether it's a unique index}

FieldCountInspection.java (git://github.com/JetBrains/intellij-community.git) Java · 154 lines

69 final String configurationLabel = getConfigurationLabel();

70 final JLabel label = new JLabel(configurationLabel);

71 final JFormattedTextField valueField = prepareNumberEditor("m_limit");

72

73 final CheckBox includeCheckBox =

Bucket.java (git://github.com/infinispan/infinispan.git) Java · 147 lines

62 try {

63 setBucketId(Integer.parseInt(bucketId));

64 } catch (NumberFormatException e) {

65 throw new IllegalArgumentException(

66 "bucketId: " + bucketId + " (expected: integer)");

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>();

92

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

51

52 @Override

53 public String getFormat() {

54 return "xml";

55 }

BuffFrame.lua (git://github.com/Shestak/ShestakUI.git) Lua · 155 lines

7 local rowbuffs = 16

8

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

79

80 * In Java SE there is no JSF `FacesContext` to which messages can be added. Instead

81 the Game class provides additional information about the state of the current game

82 including:

83

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" %>

68

69 <%@ page import="java.text.Format" %>

70

71 <%@ page import="java.util.HashMap" %><%@

85 TrashDisplayContext trashDisplayContext = new TrashDisplayContext(request, liferayPortletResponse);

86

87 Format dateFormatDateTime = FastDateFormatFactoryUtil.getDateTime(locale, timeZone);

88

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

169 /**

170 * Can use human labels e.g. "London" or "Pacific Standard Time (US & Canada)", or GMT offsets, e.g. "+0100"

171 * There are many quasi-formats: UTC-20, GMT+0100, GMT+1, PST, EST which it would be nice to support.

172 */

173 public String timezone;

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

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.

template.go (git://github.com/smyrman/units.git) Go · 215 lines

166

167 // Units for {{.Name}} values. Always multiply with a unit when setting the initial value like you would for

168 // time.Time. This prevents you from having to worry about the internal storage format.

169 const ({{range .Units}}

170 {{.Name}} {{$name}} = {{.Value}}{{end}}

DBusAnnotationInfo.d (git://github.com/gtkd-developers/GtkD.git) D · 211 lines

35

36 /**

37 * Information about an annotation.

38 *

39 * Since: 2.26

CmsUgcSessionQueue.java (git://github.com/alkacon/opencms-core.git) Java · 138 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 *

gpuPlugin.h (http://psx4m.googlecode.com/svn/trunk/) C Header · 157 lines

13 * the Free Software Foundation; either version 2 of the License, or *

14 * (at your option) any later version. See also the license.txt file for *

15 * additional informations. *

16 * *

17 ***************************************************************************/

image-metadata-geographic.adb (git://git.savannah.nongnu.org/v2p.git) Ada · 159 lines

32

33 ------------

34 -- Format --

35 ------------

36

37 procedure Format

38 (Position : in out Geo_Position'Class;

39 Coordinate : in Geo_Coordinate)

43 Position.Format_Direction (Coordinate);

44

45 -- The sign information is in Formatted.C_Direction

46 -- Then work only with positive coordinate

47

pairwise.R (http://renjin.googlecode.com/svn/trunk/) R · 145 lines

137 cat("\n\tPairwise comparisons using", x$method, "\n\n")

138 cat("data: ", x$data.name, "\n\n")

139 pp <- format.pval(x$p.value, 2, na.form="-")

140 attributes(pp) <- attributes(x$p.value)

141 print(pp, quote=FALSE)

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);

107

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;

57

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

160

161 /**

162 * Returns the data contained in JSon Format

163 *

164 * @return the data contained in JSon Format

logger.py (https://code.google.com/p/xyzcmd/) Python · 170 lines

32 ERROR: Non-critical error.

33 WARNING: Warning.

34 INFO: Informational message.

35 DEBUG: Debug messages.

36 ALL: All of the above.

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 |

83

84 The first 3 lines of the this file are used as headers,

85 on the following format:

86

87 line1: document title

106

107 The TYPEWRITER type that uses monospaced font for

108 pre-formatted text.

109

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 }

169

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 }

181

geant_copy_command.e (git://github.com/gobo-eiffel/gobo.git) Specman e · 232 lines

175 l_fileset.after or else exit_code /= 0

176 loop

177 if l_fileset.is_in_gobo_31_format and then attached l_fileset.directory_name as l_fileset_directory_name then

178 a_from_file := unix_file_system.pathname (l_fileset_directory_name, l_fileset.item_filename)

179 else

ptr_inserter.hpp (git://github.com/MisterTea/HyperNEAT.git) C++ Header · 258 lines

7 // http://www.boost.org/LICENSE_1_0.txt)

8 //

9 // For more information, see http://www.boost.org/libs/ptr_container/

10 //

11

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

67

68 private CoinbaseAddress getAddressFromNode(JsonNode addressNode)

69 throws com.fasterxml.jackson.databind.exc.InvalidFormatException {

70

71 final JsonNode nestedAddressNode = addressNode.path("address");

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

9 [BSD 3-Clause](./LICENSE)

10

11 ## Information

12

13 - Programs using HFuse should be compiled with -threaded.

command_legacy.go (git://github.com/mkb218/gosndfile.git) Go · 82 lines

53 }

54

55 // Set instrument information from file including MIDI base note, keyboard mapping and looping information (start/stop and mode).

56

57 // Return true if the file header contains instrument information for the file. false otherwise.

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

88

89 /**

90 * Returns the server-specific information.

91 *

92 * @return The server-specific information.

AlterTableRenameConstraintToStep.java (git://github.com/jOOQ/jOOQ.git) Java · 109 lines

18 * database integrations.

19 *

20 * For more information, please visit: http://www.jooq.org/licenses

21 *

22 *

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);

75

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

14 * + read subset of columns

15 *

16 * - smart reader: should guess field types according to file content (try all date formats, integer, double, string)

17 *

18 * - detect when file content doesn't match "beanType"

AbstractIdentifierServiceAwareMetadataProvider.java (git://github.com/SpringSource/spring-roo.git) Java · 77 lines

50 *

51 * @param javaType the entity or PK identifier class for which column

52 * information is desired (required)

53 * @return the applicable identifiers, or null if no registered

54 * {@link IdentifierService} was authoritative for this type TODO

indirected.hpp (git://github.com/MisterTea/HyperNEAT.git) C++ Header · 100 lines

6 // http://www.boost.org/LICENSE_1_0.txt)

7 //

8 // For more information, see http://www.boost.org/libs/range/

9 //

10

SLASerDes.java (git://github.com/liferay/liferay-portal.git) Java · 442 lines

57 sb.append("{");

58

59 DateFormat liferayToJSONDateFormat = new SimpleDateFormat(

60 "yyyy-MM-dd'T'HH:mm:ss'Z'");

61

83 sb.append("\"");

84

85 sb.append(liferayToJSONDateFormat.format(sla.getDateModified()));

86

87 sb.append("\"");

204 Map<String, String> map = new TreeMap<>();

205

206 DateFormat liferayToJSONDateFormat = new SimpleDateFormat(

207 "yyyy-MM-dd'T'HH:mm:ss'Z'");

208

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

19

20 To release a closed-source product which uses JUCE, commercial licenses are

21 available: visit www.rawmaterialsoftware.com/juce for more information.

22

23 ==============================================================================

SpellChecker2_Options.lua (http://sarf-wow-addons.googlecode.com/svn/trunk/) Lua · 150 lines

10 stateMsg = SPELLCHECKER2_STATE_BOOLEAN_FALSE;

11 end

12 return format(msg, stateMsg);

13 end

14

debug.scm (git://git.savannah.nongnu.org/skribilo.git) Scheme · 189 lines

88 (equal? (getenv "TERM") "xterm"))

89 (lambda ()

90 (format #t "[1;~Am" (+ 31 col))

91 (for-each display o)

92 (display ""))

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.

69

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

11 # Copyright (c) 2002 - 2003 CENA, Patrick Lecoanet

12 #

13 # See the file "Copyright" for information on usage and redistribution

14 # of this file, and for a DISCLAIMER OF ALL WARRANTIES.

15 #

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

58 <h2>Performance</h2>

59 <p>

60 <span class="emphasis"><em>fsig</em></span> -- output pv stream in TRACKS format

61 </p>

62 <p>

68 <p>

69

70 <span class="emphasis"><em>fin</em></span> -- input pv stream in TRACKS format.

71 </p>

72 <p>

rcstime.c (git://git.savannah.gnu.org/rcs.git) C · 171 lines

1 /* Convert between RCS time format and POSIX and/or C formats.

2

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

6

7 # source in procedures

8 source ReadSMDfile.tcl; # procedure for reading GM file and converting it to proper format

9

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

9 ** Commercial use of this program without express permission of the **

10 ** University of California, Berkeley, is strictly prohibited. See **

11 ** file 'COPYRIGHT' in main directory for information on usage and **

12 ** redistribution, and for a DISCLAIMER OF ALL WARRANTIES. **

13 ** **

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.

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).

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');

269

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.

101 i.e. 'inverse document frequency' or 'ICF' i.e.

102 'inverse collection frequency'; defaults to 'IDF')

103 @param verbose: whether information on the progress should be printed

104 on screen

105 '''

README.vmgen (git://github.com/earl/gforth-mirror.git) Unknown · 69 lines

32

33 There is a simple usage example in vmgen-ex (and a variation on that

34 in vmgen-ex2). See the documentation for more information on that.

35

36 To report a bug, use

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.

40

41 /**

42 * Flag indicating if the parser should be strict about the format

43 * of the JSON string it is attempting to decode.

44 */

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.

2

3 /**

4 * Class for handling width/height length attribute transformations to CSS

5 */

6 class HTMLPurifier_AttrTransform_Length extends HTMLPurifier_AttrTransform

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.

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/>.

54

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.

8 // For details, see the script.aculo.us web site: http://script.aculo.us/

9

10 // converts rgb() and #xxx to #xxxxxx format,

11 // returns self (or first argument) if not convertable

12 String.prototype.parseColor = function() {

README (https://PHPExcel.svn.codeplex.com/svn) Unknown · 109 lines

89 ------------------------

90

91 The files with .sfd (Spline Font Database) are in FontForge's native format.

92 Please use these if you plan to modify the font files.

93

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.

35 #define ACM_SERIAL_STATE 0x20

36

37 /* Format of response expected by a ACM_GET_LINE_ENCODING request */

38 struct rs232_emu{

39 unsigned long dter;

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.

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.

10 * All other rights reserved.

11 *

12 * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,

13 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED

14 * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.

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.

24

25 /**

26 * An exception that provides information on a stack error or other errors.

27 *

28 * @author erick.svenson@yahoo.com

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.

52 \ special conditionals supporting gforths'

53 \ local variables

54 true Constant header \ save a header information

55

56 true Constant ec

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.

33 import mpv5.utils.images.MPIcon;

34 import mpv5.utils.models.MPTableModel;

35 import mpv5.utils.tables.TableFormat;

36

37 /**

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>`_.

180

181 System Package

182 A package provided by in a format native to the operating system.

183 e.g. rpm or dpkg file.

184

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

35 a fingerprint file. A number of functions are provided

36 that parse the fingerprints from the output of the CDK, MOE and the

37 BCI toolkit. In addition, support is now available for the FPS format

38 from the chemfp project (\url{http://code.google.com/p/chem-fingerprints}).

39 }

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;

161

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

5 -invalid $invalid -map $map -graph png -auto</command>

6 <inputs>

7 <param format="data" name="input1" type="data">

8 <label>Sequence</label>

9 </param>

42 </inputs>

43 <outputs>

44 <data format="png" name="ofile2" />

45 <data format="epestfind" name="ofile1" />

aetools.rst (http://unladen-swallow.googlecode.com/svn/trunk/) Unknown · 91 lines

49 .. function:: keysubst(arguments, keydict)

50

51 Converts a Python keyword argument dictionary ``arguments`` to the format

52 required by ``packevent`` by replacing the keys, which are Python identifiers,

53 by the four-character OSA keys according to the mapping specified in

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) });

54

55 ImageDeformation postDef = new ImageDeformationByFilters(new ImageFilter[] {});

56 ImageDeformation backDef = new ImageDeformationByFilters(new ImageFilter[] {});

57 ImageDeformation textDef = new ImageDeformationByFilters(new ImageFilter[] {});

58

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.

33

34 sub dynamic_template {

35 return 'category/<$MTCategoryID$>/<$MTArchiveDate format="%Y%m%d"$>';

36 }

37

87 my $start = start_end_day( $stamp, $ctx->stash('blog') );

88 my $date = MT::Template::Context::_hdlr_date( $ctx,

89 { ts => $start, 'format' => "%x" } );

90 my $cat = $obj->display_name($ctx);

91

README.txt (https://bitbucket.org/tarek/hitchhiker-guide-packaging/) Plain Text · 18 lines

5 other aspects of the Python module packaging ecosystem.

6

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/>.

13

14 Please see the `source/license.txt` file for license information.

15

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.

73 return _serializers.keys()

74

75 def get_public_serializer_formats():

76 if not _serializers:

77 _load_serializers()

83 return _serializers[format].Deserializer

84

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

118