PageRenderTime 201ms queryTime 54ms sortTime 11ms getByIdsTime 70ms findMatchingLines 13ms

100+ results results for 'helloworld' (201 ms)

Not the results you expected?
01-creating-a-sitemap-intro.markdown https://github.com/JorgeFerrer/liferay-docs.git | Markdown | 219 lines
                    
70                    {
                    
71                        "portletId": "com_liferay_hello_world_web_portlet_HelloWorldPortlet"
                    
72                    },
                    
139                    {
                    
140                        "portletId": "com_liferay_hello_world_web_portlet_HelloWorldPortlet"
                    
141                    }
                    
171                    {
                    
172                        "portletId": "com_liferay_hello_world_web_portlet_HelloWorldPortlet"
                    
173                    }
                    
                
IntrospectionModellerTest.java https://gitlab.com/jaragan/jersey | Java | 235 lines
                    
76
                    
77    @Path("/helloworld")
                    
78    @Produces(" a/b, c/d ")
                    
79    @Consumes({"e/f,g/h", " i/j"})
                    
80    public static class HelloWorldResource {
                    
81
                    
154
                    
155        // HelloWorldResource
                    
156        resourceClass = HelloWorldResource.class;
                    
                
main.cpp https://github.com/Tellus/anachronox1.git | C++ | 388 lines
                    
6
                    
7Lets start like the HelloWorld example: We include
                    
8the irrlicht header files and an additional file to be able
                    
111	/*
                    
112	Like in the HelloWorld example, we create an IrrlichtDevice with
                    
113	createDevice(). The difference now is that we ask the user to select
                    
                
SubDeploymentAvailableInClassPathTestCase.java https://github.com/aminorex/jboss-as.git | Java | 200 lines
                    
37import org.jboss.as.test.spec.ear.classpath.servlet.EjbInvokingServlet;
                    
38import org.jboss.as.test.spec.ear.classpath.servlet.HelloWorldServlet;
                    
39import org.jboss.as.test.spec.ear.classpath.servlet.ServletInOtherWar;
                    
74        final WebArchive war = ShrinkWrap.create(WebArchive.class, WEB_APP_CONTEXT_ONE + ".war");
                    
75        war.addClasses(HelloWorldServlet.class, EjbInvokingServlet.class);
                    
76
                    
95        final WebArchive war = ShrinkWrap.create(WebArchive.class, WEB_APP_CONTEXT_TWO + ".war");
                    
96        war.addClasses(HelloWorldServlet.class, EjbInvokingServlet.class);
                    
97
                    
132
                    
133        final String requestURL = BASE_URL + WEB_APP_CONTEXT_ONE + HelloWorldServlet.URL_PATTERN + "?" + HelloWorldServlet.PARAMETER_NAME + "=" + message;
                    
134        final HttpGet request = new HttpGet(requestURL);
                    
159        final HttpClient httpClient = new DefaultHttpClient();
                    
160        final String classInWar = HelloWorldServlet.class.getName();
                    
161        final String requestURL = BASE_URL + WEB_APP_CONTEXT_ONE + EjbInvokingServlet.URL_PATTERN + "?" + EjbInvokingServlet.CLASS_IN_WAR_PARAMETER + "=" + classInWar;
                    
                
README.html git://github.com/jersey/jersey-1.x.git | HTML | 178 lines
                    
42-->
                    
43<html><head><title>HelloWorld OSGi Example</title></head>
                    
44
                    
46<body>
                    
47<h1>HelloWorld OSGi Example</h1>
                    
48
                    
53<dl>
                    
54    <dt><code>com.sun.jersey.samples.helloworld.HelloWorldResource</code></dt>
                    
55    <dd>that produces a textual response to an HTTP GET</dd>
                    
153  class com.sun.jersey.samples.helloworld.AnotherResource
                    
154  class com.sun.jersey.samples.helloworld.HelloWorldResource
                    
155Nov 15, 2013 5:05:46 PM com.sun.jersey.api.core.ScanningResourceConfig init
                    
162<ul>
                    
163    <li><a href="http://localhost:8080/helloworld/webresources/helloworld">http://localhost:8080/helloworld/webresources/helloworld</a></li>
                    
164    <li><a href="http://localhost:8080/helloworld/webresources/another">http://localhost:8080/helloworld/webresources/another</a></li>
                    
                
CompositeComponentClientBehaviorTestCase.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 274 lines
                    
35    {
                    
36        HelloWorld helloWorld = new HelloWorld(); 
                    
37        
                    
64    {
                    
65        HelloWorld helloWorld = new HelloWorld(); 
                    
66        
                    
122    {
                    
123        HelloWorld helloWorld = new HelloWorld(); 
                    
124        
                    
209    {
                    
210        HelloWorld helloWorld = new HelloWorld(); 
                    
211        
                    
242    {
                    
243        HelloWorld helloWorld = new HelloWorld(); 
                    
244        
                    
                
httpserver_test.py https://github.com/yinhm/tornado.git | Python | 277 lines
                    
22
                    
23class HelloWorldRequestHandler(RequestHandler):
                    
24    def initialize(self, protocol="http"):
                    
43    def get_app(self):
                    
44        return Application([('/', HelloWorldRequestHandler, 
                    
45                             dict(protocol="https"))])
                    
105        return [("/multipart", MultipartTestHandler),
                    
106                ("/hello", HelloWorldRequestHandler)]
                    
107
                    
259        sock = netutil.bind_unix_socket(sockfile)
                    
260        app = Application([("/hello", HelloWorldRequestHandler)])
                    
261        server = HTTPServer(app, io_loop=self.io_loop)
                    
                
dispatch-filters.rst https://github.com/MontBlanc-Sucks/docs.git | ReStructuredText | 226 lines
                    
115    App::uses('DispatcherFilter', 'Routing');
                    
116    class HelloWorldFilter extends DispatcherFilter {
                    
117
                    
131
                    
132This class should be saved in a file in ``app/Routing/Filter/HelloWorldFilter.php``
                    
133and configured in the bootstrap file according to how it was explained in the
                    
                
string.js https://bitbucket.org/esatterwhite/braveheart.git | JavaScript | 277 lines
                    
84
                    
85			str = "helloWorld";
                    
86			test.strictEqual( string.hyphenate( str ), "hello-world", "Expected \"hello-world\" got :" + string.hyphenate( str ) );
                    
103			str = "hello-world";
                    
104			test.strictEqual( string.camelCase( str ), "helloWorld", "Expected \"helloWorld\" got :" + string.camelCase( str ) );
                    
105
                    
                
ImplicitReferenceTest.java https://gitlab.com/cde/debian_android-tools_libsmali-java | Java | 260 lines
                    
42        String source = "" +
                    
43                ".class public LHelloWorld;\n" +
                    
44                ".super Ljava/lang/Object;\n" +
                    
46                "    .registers 1\n" +
                    
47                "    invoke-static {p0}, LHelloWorld;->toString()V\n" +
                    
48                "    invoke-static {p0}, LHelloWorld;->V()V\n" +
                    
48                "    invoke-static {p0}, LHelloWorld;->V()V\n" +
                    
49                "    invoke-static {p0}, LHelloWorld;->I()V\n" +
                    
50                "    return-void\n" +
                    
53        String expected = "" +
                    
54                ".class public LHelloWorld;\n" +
                    
55                ".super Ljava/lang/Object;\n" +
                    
73        String source = "" +
                    
74                ".class public LHelloWorld;\n" +
                    
75                ".super Ljava/lang/Object;\n" +
                    
                
ExamplePlugin.php https://github.com/ntulip/piwik.git | PHP | 170 lines
                    
65	/**
                    
66	 * Go to /piwik/?module=ExamplePlugin&action=helloWorld to execute this method
                    
67	 *
                    
68	 */
                    
69	function helloWorld()
                    
70	{
                    
                
PhpMatcherDumperTest.php https://gitlab.com/techniconline/kmc | PHP | 264 lines
                    
135        $collection1->add('overridden2', new Route('/old'));
                    
136        $collection1->add('helloWorld', new Route('/hello/{who}', array('who' => 'World!')));
                    
137        $collection2 = new RouteCollection();
                    
                
restxmlTest.php https://github.com/leoken/plivohelper-php.git | PHP | 385 lines
                    
333            $g->append(new Speak("Hello World"));
                    
334            $g->append(new Play("helloworld.mp3"));
                    
335            $g->append(new Wait());
                    
339                        <Speak>Hello World</Speak>
                    
340                        <Play>helloworld.mp3</Play>
                    
341                        <Wait></Wait>
                    
350            $g->addSpeak("Hello World");
                    
351            $g->addPlay("helloworld.mp3");
                    
352            $g->addWait();
                    
356                        <Speak>Hello World</Speak>
                    
357                        <Play>helloworld.mp3</Play>
                    
358                        <Wait></Wait>
                    
                
TileMapScene.m https://bitbucket.org/akuandev/cocos2dsample.git | Objective C | 296 lines
                    
1//
                    
2//  HelloWorldLayer.m
                    
3//  Tilemap
                    
                
x11-Xlib.c https://bitbucket.org/preining/tex-live.git | C | 282 lines
                    
27I could never have done this without David Rosenthal's Hello World
                    
28program for X. See $X/mit/doc/HelloWorld.
                    
29
                    
                
ExtInternalClass.as https://github.com/changm/tessa.git | ActionScript | 263 lines
                    
56 *
                    
57 * var helloWorld = "Hello World";
                    
58 *
                    
59 * AddTestCase(
                    
60 * "var helloWorld = 'Hello World'",   // description of the test
                    
61 *  "Hello World",                     // expected result
                    
61 *  "Hello World",                     // expected result
                    
62 *  helloWorld );                      // actual result
                    
63 *
                    
                
helloworld.html https://github.com/aptana/frameworks.git | HTML | 263 lines
                    
23			
                    
24			var helloWorld = {
                    
25				/* hello world messages to be sent */
                    
28				initialize: function(){
                    
29					console.debug("helloWorld.initialize");
                    
30					
                    
181			// is also finished loading.
                    
182			dojo.connect(dojox.off.ui, "onLoad", helloWorld, "initialize");
                    
183			
                    
256			<button id="sendMessage" 
                    
257							onclick="helloWorld.send()"
                    
258							style="margin-right: 0.2em;">Send</button>
                    
                
HelloWorld.cpp https://gitlab.com/adam.lukaitis/opencl-book-samples | C++ | 335 lines
                    
10
                    
11// HelloWorld.cpp
                    
12//
                    
224///
                    
225//	main() for HelloWorld example
                    
226//
                    
253
                    
254    // Create OpenCL program from HelloWorld.cl kernel source
                    
255    program = CreateProgram(context, device, "HelloWorld.cl");
                    
                
ios_intermediate_dump_reader_test.cc https://github.com/chromium/chromium.git | C++ | 265 lines
                    
88
                    
89TEST_F(IOSIntermediateDumpReaderTest, ReadHelloWorld) {
                    
90  std::string hello_world("hello world.");
                    
                
Basics.elm https://gitlab.com/suyesh/elm-bingo | Elm | 152 lines
                    
126            , test "isInfinite 1" <| assertEqual False (isInfinite 1)
                    
127            , test "\"hello\" ++ \"world\"" <| assertEqual "helloworld" ("hello" ++ "world")
                    
128            , test "[1, 1, 2] ++ [3, 5, 8]" <| assertEqual [1, 1, 2, 3, 5, 8] ([1, 1, 2] ++ [3, 5, 8])
                    
                
hello_world.wsdl https://github.com/nsaputro/cxf.git | Web Services Description Language | 245 lines
                    
19-->
                    
20<wsdl:definitions name="HelloWorld" targetNamespace="http://apache.org/hello_world" 
                    
21    xmlns="http://schemas.xmlsoap.org/wsdl/" 
                    
                
TracWikiSyntax.md https://bitbucket.org/wez/mtrack/ | Markdown | 480 lines
                    
154 {{{
                    
155  def HelloWorld():
                    
156      print "Hello World"
                    
161{{{
                    
162 def HelloWorld():
                    
163     print "Hello World"
                    
                
TestPluginSystem.java https://github.com/ufwebadmin/nutch.git | Java | 282 lines
                    
125            Object object = extension.getExtensionInstance();
                    
126            if (!(object instanceof HelloWorldExtension))
                    
127                fail(" object is not a instance of HelloWorldExtension");
                    
258                + "<implementation name=\"simple Parser Extension\" "
                    
259                + "id=\"aExtensionId.\" class=\"org.apache.nutch.plugin.HelloWorldExtension\">"
                    
260                + "<parameter name=\"dummy-name\" value=\"a simple param value\"/>"
                    
                
storage-azure-cli.md https://gitlab.com/yeah568/azure-content | Markdown | 222 lines
                    
82
                    
83    - **<image_to_upload>** Enter a path to a picture on your local computer, such as: "~/images/HelloWorld.png".
                    
84
                    
139
                    
140        azure storage blob upload '~/images/HelloWorld.png' mycontainer myBlockBlob
                    
141
                    
155
                    
156    azure storage blob upload '~/Images/HelloWorld.png' mycontainer2 myBlockBlob2 -a <accountName2> -k <accountKey2>
                    
157
                    
                
WebServiceClient.java http://jwebsocket.googlecode.com/svn/trunk/ | Java | 236 lines
                    
30 *     XMLFormat} or directly with the XML streams (StAX). For example:[code]
                    
31 *     private static class HelloWorld extends WebServiceClient  {
                    
32 *         protected void writeRequest(XMLObjectWriter out) throws XMLStreamException {
                    
34 *             xml.writeDefaultNamespace("http://www.openuri.org/");
                    
35 *             xml.writeEmptyElement("helloWorld"); // Operation name.
                    
36 *         }
                    
43 *     }
                    
44 *     WebServiceClient ws = new HelloWorld().setAddress("http://acme.com:80/HelloWorld.jws");
                    
45 *     ws.invoke();
                    
                
SubDeploymentAvailableInClassPathTestCase.java https://bitbucket.org/cprenzberg/wildfly.git | Java | 203 lines
                    
39import org.jboss.as.test.integration.deployment.classloading.ear.subdeployments.servlet.EjbInvokingServlet;
                    
40import org.jboss.as.test.integration.deployment.classloading.ear.subdeployments.servlet.HelloWorldServlet;
                    
41import org.jboss.as.test.integration.deployment.classloading.ear.subdeployments.servlet.ServletInOtherWar;
                    
77        final WebArchive war = ShrinkWrap.create(WebArchive.class, WEB_APP_CONTEXT_ONE + ".war");
                    
78        war.addClasses(HelloWorldServlet.class, EjbInvokingServlet.class);
                    
79
                    
98        final WebArchive war = ShrinkWrap.create(WebArchive.class, WEB_APP_CONTEXT_TWO + ".war");
                    
99        war.addClasses(HelloWorldServlet.class, EjbInvokingServlet.class);
                    
100
                    
135
                    
136        final String requestURL = managementClient.getWebUri() + "/" + WEB_APP_CONTEXT_ONE + HelloWorldServlet.URL_PATTERN + "?" + HelloWorldServlet.PARAMETER_NAME + "=" + message;
                    
137        final HttpGet request = new HttpGet(requestURL);
                    
162        final HttpClient httpClient = new DefaultHttpClient();
                    
163        final String classInWar = HelloWorldServlet.class.getName();
                    
164        final String requestURL = managementClient.getWebUri() + "/"  + WEB_APP_CONTEXT_ONE + EjbInvokingServlet.URL_PATTERN + "?" + EjbInvokingServlet.CLASS_IN_WAR_PARAMETER + "=" + classInWar;
                    
                
live_stream_test.rb https://github.com/mitchel456/rails.git | Ruby | 298 lines
                    
203      get :basic_stream
                    
204      assert_equal "helloworld", @response.body
                    
205      assert_equal 'text/event-stream', @response.headers['Content-Type']
                    
                
HelloWorld.html http://rtag.googlecode.com/svn/trunk/ | HTML | 256 lines
                    
6<TITLE>
                    
7HelloWorld
                    
8</TITLE>
                    
61  <A HREF="../../../index.html?it/polimi/rtag/HelloWorld.html" target="_top"><B>FRAMES</B></A>  &nbsp;
                    
62&nbsp;<A HREF="HelloWorld.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
                    
63&nbsp;<SCRIPT type="text/javascript">
                    
92<BR>
                    
93Class HelloWorld</H2>
                    
94<PRE>
                    
116<TR BGCOLOR="white" CLASS="TableRowColor">
                    
117<TD><CODE><B><A HREF="../../../it/polimi/rtag/HelloWorld.html#HelloWorld()">HelloWorld</A></B>()</CODE>
                    
118
                    
134<CODE>static&nbsp;void</CODE></FONT></TD>
                    
135<TD><CODE><B><A HREF="../../../it/polimi/rtag/HelloWorld.html#main(java.lang.String[])">main</A></B>(java.lang.String[]&nbsp;args)</CODE>
                    
136
                    
                
TearDownPageTest.java https://github.com/oterral/liferay-portal.git | Java | 343 lines
                    
14
                    
15package com.liferay.portalweb.portlet.helloworld.portlet.addportlethwduplicate;
                    
16
                    
                
TearDownPageTest.java https://github.com/oterral/liferay-portal.git | Java | 343 lines
                    
14
                    
15package com.liferay.portalweb.portlet.helloworld.portlet.addportlethw;
                    
16
                    
                
TearDownPageTest.java https://github.com/oterral/liferay-portal.git | Java | 343 lines
                    
14
                    
15package com.liferay.portalweb.portlet.helloworld.portlet.removeportlethw;
                    
16
                    
                
src_script_qscriptengine.cpp https://bitbucket.org/kasimling/qt.git | C++ | 332 lines
                    
55//! [2]
                    
56QString fileName = "helloworld.qs";
                    
57QFile scriptFile(fileName);
                    
                
PDETemplateMessages.java https://gitlab.com/essere.lab.public/qualitas.class-corpus | Java | 316 lines
                    
31
                    
32	public static String HelloWorldNewWizard_wtitle;
                    
33	public static String HelloWorldTemplate_title;
                    
33	public static String HelloWorldTemplate_title;
                    
34	public static String HelloWorldTemplate_desc;
                    
35	public static String HelloRCPNewWizard_title;
                    
44	public static String HelloNonUIRCPTemplate_defaultMessage;
                    
45	public static String HelloWorldTemplate_packageName;
                    
46	public static String HelloWorldTemplate_className;
                    
47	public static String HelloRCPTemplate_windowTitle;
                    
48	public static String HelloWorldTemplate_messageText;
                    
49	public static String HelloWorldTemplate_defaultMessage;
                    
49	public static String HelloWorldTemplate_defaultMessage;
                    
50	public static String HelloWorldTemplate_sampleActionSet;
                    
51	public static String HelloWorldTemplate_sampleMenu;
                    
                
Tutorial4.md https://gitlab.com/vikash.patel/qwertyu | Markdown | 133 lines
                    
37### Adding Logging Code
                    
38Let’s add some logging code to the `tutorial/HelloWorld` widget, add the following into the `postMixInProperties` function. 
                    
39
                    
49
                    
50Now refresh the page and amongst all the logging will be the output from the HelloWorld widget….. hard to find wasn’t it?
                    
51
                    
51
                    
52![Browser console with highlighted log from HelloWorld widget](../resources/Tutorial4-Image2.png "Browser console with highlighted log from HelloWorld widget")
                    
53
                    
53
                    
54Fortunately we can configure a filter on the LoggingService to only output messages from specific packages, modules or even functions. If you wondered why the HelloWorld widget was given a specific function name then this is why.
                    
55
                    
72
                    
73![Browser console with filtered log showing only HelloWorld widget logging](../resources/Tutorial4-Image3.png "Browser console with filtered log showing only HelloWorld widget logging")
                    
74
                    
                
glob_test.cpp https://bitbucket.org/liflg/library-boost.git | C++ | 163 lines
                    
29    BOOST_TEST(quickbook::glob("hello.txt", "hello.txt"));
                    
30    BOOST_TEST(!quickbook::glob("world.txt", "helloworld.txt"));
                    
31    BOOST_TEST(quickbook::glob("*world.txt", "helloworld.txt"));
                    
31    BOOST_TEST(quickbook::glob("*world.txt", "helloworld.txt"));
                    
32    BOOST_TEST(!quickbook::glob("world.txt*", "helloworld.txt"));
                    
33    BOOST_TEST(!quickbook::glob("hello", "helloworld.txt"));
                    
33    BOOST_TEST(!quickbook::glob("hello", "helloworld.txt"));
                    
34    BOOST_TEST(!quickbook::glob("*hello", "helloworld.txt"));
                    
35    BOOST_TEST(quickbook::glob("hello*", "helloworld.txt"));
                    
35    BOOST_TEST(quickbook::glob("hello*", "helloworld.txt"));
                    
36    BOOST_TEST(quickbook::glob("*world*", "helloworld.txt"));
                    
37
                    
                
ErrorLoggerTests.vb https://gitlab.com/sharadag/Roslyn | Visual Basic | 309 lines
                    
21        Public Sub NoDiagnostics()
                    
22            Dim helloWorldVB As String = <text>
                    
23Imports System
                    
30
                    
31            Dim hello = Temp.CreateFile().WriteAllText(helloWorldVB).Path
                    
32            Dim errorLogDir = Temp.CreateDirectory()
                    
                
DeploymentServiceUnitSpec.groovy https://gitlab.com/kps007/asgard | Groovy | 192 lines
                    
170    def 'should indicate that a workflow execution is in progress for the specified cluster'() {
                    
171        Link link = Link.to(EntityType.cluster, 'helloworld-example')
                    
172
                    
173        when:
                    
174        Deployment deployment = deploymentService.getRunningDeploymentForCluster(Region.US_WEST_1, 'helloworld-example')
                    
175
                    
182    def 'should indicate that a workflow execution is not in progress for the specified cluster'() {
                    
183        Link link = Link.to(EntityType.cluster, 'helloworld-example')
                    
184
                    
185        when:
                    
186        Deployment deployment = deploymentService.getRunningDeploymentForCluster(Region.US_WEST_1, 'helloworld-example')
                    
187
                    
                
CloudEnvironment.java git://github.com/cloudfoundry/vcap-java.git | Java | 290 lines
                    
184	 * <code><pre>
                    
185	 * cloud.application.name = helloworld
                    
186	 * cloud.provider.url = cloudfoundry.com
                    
                
active_admin.rb https://gitlab.com/adamlwalker/resume | Ruby | 246 lines
                    
28  #
                    
29  # This will create resources in the HelloWorld module and
                    
30  # will namespace routes to /hello_world/*
                    
                
TearDownProducerTest.java https://github.com/lululiferay/liferay-portal.git | Java | 280 lines
                    
14
                    
15package com.liferay.portalweb.plugins.wsrp.helloworld.addproducerhw;
                    
16
                    
                
TearDownConsumerTest.java https://github.com/lululiferay/liferay-portal.git | Java | 280 lines
                    
14
                    
15package com.liferay.portalweb.plugins.wsrp.helloworld.addconsumerhw;
                    
16
                    
                
nulecule.md https://gitlab.com/gbraad/atomicapp | Markdown | 240 lines
                    
197specversion: 0.0.2
                    
198id: helloworld
                    
199
                    
                
README.md https://gitlab.com/JamesClonk/concourse-tutorial | Markdown | 405 lines
                    
211cd ../02_job_hello_world
                    
212fly set-pipeline -t tutorial -c pipeline.yml -p 02helloworld
                    
213fly unpause-pipeline -p 02helloworld
                    
245pipeline created!
                    
246you can view your pipeline here: http://192.168.100.4:8080/pipelines/02helloworld
                    
247```
                    
                
index.js https://gitlab.com/losch/react-presentation | JavaScript | 215 lines
                    
4import MarkdownComponent from '../../components/MarkdownComponent';
                    
5import { HelloWorldEs6Func } from './components/HelloWorld';
                    
6import Soap from './props-and-state/Soap';
                    
74  () => <MarkdownComponent contents={require('raw-loader!./components/3-demo-1-2.md')} />,
                    
75  () => <div className="mui-panel example-panel"><HelloWorldEs6Func /></div>,
                    
76  () => <MarkdownComponent contents={require('raw-loader!./components/3-demo-2-1.md')} />,
                    
                
package-summary.html http://rtag.googlecode.com/svn/trunk/ | HTML | 222 lines
                    
143<TR BGCOLOR="white" CLASS="TableRowColor">
                    
144<TD WIDTH="15%"><B><A HREF="../../../it/polimi/rtag/HelloWorld.html" title="class in it.polimi.rtag">HelloWorld</A></B></TD>
                    
145<TD>&nbsp;</TD>
                    
                
Makefile https://bitbucket.org/muegamma/rome3.git | Makefile | 340 lines
                    
80                argus/tabs/tbmonitor.exe \
                    
81                argus/helloWorld/hwmonitor.exe \
                    
82                argus/histogram/romeproject/hgframework.exe \
                    
217argus/helloWorld/hwmonitor.exe :
                    
218	$(ROMESYS)/bin/romebuilder.exe -i argus/helloWorld/HelloWorld.xml -o argus/helloWorld -nl -pch
                    
219	make $(JOBSFLAG) -C argus/helloWorld/
                    
315
                    
316	cd argus/helloWorld; $(VALGRIND) ./hwmonitor.exe -i romeConfig.xml -q -nc & \
                    
317	sleep 10; killall -9 hwmonitor.exe
                    
                
rakefile.rb https://github.com/adbrowne/fubumvc.git | Ruby | 234 lines
                    
80  MSBuildRunner.compile :compilemode => COMPILE_TARGET, :solutionfile => 'src/FubuMVC.sln', :clrversion => CLR_TOOLS_VERSION
                    
81  #AspNetCompilerRunner.compile :webPhysDir => "src/FubuMVC.HelloWorld", :webVirDir => "localhost/xyzzyplugh"
                    
82
                    
126
                    
127desc "Set up the virtual directories for the HelloWorld applications"
                    
128task :virtual_dir => [:compile] do
                    
128task :virtual_dir => [:compile] do
                    
129  fubu("createvdir src/FubuMVC.HelloWorld helloworld")
                    
130  fubu("createvdir src/FubuMVC.HelloFubuSpark hellofubuspark")
                    
                
StubTest.php https://gitlab.com/itlboy/yii2-starter-installed | PHP | 447 lines
                    
42        $dummy = Stub::makeEmptyExcept('DummyClass', 'helloWorld');
                    
43        $this->assertEquals($this->dummy->helloWorld(), $dummy->helloWorld());
                    
44        $this->assertNull($dummy->goodByeWorld());
                    
70        }));
                    
71        $this->assertEquals($this->dummy->helloWorld(), $dummy->helloWorld());
                    
72        $this->assertEquals("hello world", $dummy->goodByeWorld());
                    
179        );
                    
180        $dummy = Stub::makeEmptyExcept(new \DummyOverloadableClass(), 'helloWorld');
                    
181        $this->assertTrue(isset($dummy->__mocked));
                    
200        );
                    
201        $dummy = Stub::constructEmptyExcept(new \DummyOverloadableClass(), 'helloWorld');
                    
202        $this->assertTrue(isset($dummy->__mocked));
                    
207        $this->assertTrue(method_exists($dummy, 'helloWorld'));
                    
208        $this->assertNotEquals($this->dummy->helloWorld(), $dummy->helloWorld());
                    
209        $this->assertEquals($dummy->helloWorld(), 'good bye world');
                    
                
LibraryDependenciesIntegrationTest.groovy https://github.com/andrewhj-mn/gradle.git | Groovy | 399 lines
                    
18import org.gradle.nativeplatform.fixtures.AbstractInstalledToolChainIntegrationSpec
                    
19import org.gradle.nativeplatform.fixtures.app.CppHelloWorldApp
                    
20import org.gradle.nativeplatform.fixtures.app.ExeWithDiamondDependencyHelloWorldApp
                    
20import org.gradle.nativeplatform.fixtures.app.ExeWithDiamondDependencyHelloWorldApp
                    
21import org.gradle.nativeplatform.fixtures.app.ExeWithLibraryUsingLibraryHelloWorldApp
                    
22import org.gradle.util.Requires
                    
45        given:
                    
46        def app = new CppHelloWorldApp()
                    
47        app.executable.writeSources(file("exe/src/main"))
                    
90        given:
                    
91        def app = new CppHelloWorldApp()
                    
92        app.executable.writeSources(file("src/main"))
                    
123        given:
                    
124        def app = new CppHelloWorldApp()
                    
125        app.executable.writeSources(file("src/main"))
                    
                
textsplit.py https://github.com/alexissmirnov/donomo.git | Python | 210 lines
                    
64    Courier characters should be 6 points wide.
                    
65    >>> wordSplit('HelloWorld', 30, 'Courier', 10)
                    
66    [[0.0, 'Hello'], [0.0, 'World']]
                    
66    [[0.0, 'Hello'], [0.0, 'World']]
                    
67    >>> wordSplit('HelloWorld', 31, 'Courier', 10)
                    
68    [[1.0, 'Hello'], [1.0, 'World']]
                    
                
ResteasyScanResourcesTestCase.java https://bitbucket.org/cprenzberg/wildfly.git | Java | 177 lines
                    
34import org.jboss.as.test.integration.common.HttpRequest;
                    
35import org.jboss.as.test.integration.jaxrs.cfg.applicationclasses.HelloWorldApplication;
                    
36import org.jboss.as.test.integration.jaxrs.packaging.war.WebXml;
                    
64        return ShrinkWrap.create(WebArchive.class, depNameTrue + ".war")
                    
65                .addClasses(ResteasyScanResourcesTestCase.class, HelloWorldResource.class)
                    
66                .setWebXML(webXmlWithMapping("resteasy.scan.resources", "true"));
                    
85        return ShrinkWrap.create(WebArchive.class, depNameTrueApp + ".war")
                    
86                .addClasses(ResteasyScanResourcesTestCase.class, HelloWorldResource.class, HelloWorldApplication.class)
                    
87                .setWebXML(webXml("resteasy.scan.resources", "true"));
                    
92        return ShrinkWrap.create(WebArchive.class, depNameFalseApp + ".war")
                    
93                .addClasses(ResteasyScanResourcesTestCase.class, HelloWorldResource.class, HelloWorldApplication.class)
                    
94                .setWebXML(webXml("resteasy.scan.resources", "false"));
                    
99        return ShrinkWrap.create(WebArchive.class, depNameInvalidApp + ".war")
                    
100                .addClasses(ResteasyScanResourcesTestCase.class, HelloWorldResource.class, HelloWorldApplication.class)
                    
101                .setWebXML(webXml("resteasy.scan.resources", "blah"));
                    
                
a00170.html https://github.com/EFraim/trans-vpn.git | HTML | 125 lines
                    
21<h1>apps/hello-world/hello-world.c</h1><a href="a00100.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/**</span>
                    
22<a name="l00002"></a>00002 <span class="comment"> * \addtogroup helloworld</span>
                    
23<a name="l00003"></a>00003 <span class="comment"> * @{</span>
                    
                
dbus-example-server.py https://gitlab.com/jouyouyun/trying-python-gdbus | Python | 299 lines
                    
26    <annotation name='org.gtk.GDBus.Annotation' value='AlsoOnInterface'/>
                    
27    <method name='HelloWorld'>
                    
28      <annotation name='org.gtk.GDBus.Annotation' value='OnMethod'/>
                    
131    assert interface_name == INTERFACE_NAME
                    
132    if method_name == 'HelloWorld':
                    
133        print(repr(parameters), parameters.unpack())
                    
                
advanced-code-pygments.html https://github.com/wallyqs/org-ruby.git | HTML | 131 lines
                    
58</pre></div>
                    
59<div class="highlight"><pre><span></span><span class="p">(</span><span class="kd">defproject </span><span class="nv">helloworld</span> <span class="s">&quot;0.1&quot;</span>
                    
60<span class="ss">:dependencies</span> <span class="p">[[</span><span class="nv">org.clojure/clojure</span>
                    
63                 <span class="s">&quot;1.0-SNAPSHOT&quot;</span><span class="p">]]</span>
                    
64<span class="ss">:main</span> <span class="nv">helloworld</span><span class="p">)</span>
                    
65</pre></div>
                    
                
helloworld.js https://github.com/illandril/box2dweb-closure.git | JavaScript | 81 lines
                    
20 * @author gak@google.com (Gregory Kick)
                    
21 * @see helloworld.html
                    
22 */
                    
23
                    
24goog.provide('goog.demos.editor.HelloWorld');
                    
25
                    
36 */
                    
37goog.demos.editor.HelloWorld = function() {
                    
38  goog.editor.Plugin.call(this);
                    
39};
                    
40goog.inherits(goog.demos.editor.HelloWorld, goog.editor.Plugin);
                    
41
                    
43/** @inheritDoc */
                    
44goog.demos.editor.HelloWorld.prototype.getTrogClassId = function() {
                    
45  return 'HelloWorld';
                    
                
tools.tex https://gitlab.com/essere.lab.public/qualitas.class-corpus | LaTeX | 134 lines
                    
47\begin{listing}{1}
                    
48    .class public HelloWorld
                    
49    .super java/lang/Object
                    
83\end{verbatim}
                    
84which will produce a class file {\tt HelloWorld.class}.
                    
85
                    
                
ScalaTestingWithSpecs2.md https://github.com/playframework/playframework.git | Markdown | 172 lines
                    
32
                    
33@[scalatest-helloworldspec](code/specs2/HelloWorldSpec.scala)
                    
34
                    
                
MongoGridFSTests.cs https://github.com/mikekalo/mongo-csharp-driver.git | C# | 354 lines
                    
88            Assert.IsFalse(gridFS.Exists("HelloWorld.txt"));
                    
89            using (var writer = gridFS.AppendText("HelloWorld.txt")) {
                    
90                Assert.IsFalse(writer.BaseStream.CanRead);
                    
202            var fileInfo = UploadHelloWord();
                    
203            foreach (var foundInfo in gridFS.Find("HelloWorld.txt")) {
                    
204                Assert.AreEqual(fileInfo, foundInfo);
                    
210            gridFS.Delete(Query.Null);
                    
211            Assert.IsFalse(gridFS.Exists("HelloWorld.txt"));
                    
212
                    
220            gridFS.Delete(Query.Null);
                    
221            Assert.IsFalse(gridFS.Exists("HelloWorld.txt"));
                    
222
                    
264
                    
265            gridFS.MoveTo("HelloWorld.txt", "HelloWorld2.txt");
                    
266            Assert.AreEqual(1, gridFS.Chunks.Count());
                    
                
WSInfo.java https://bitbucket.org/lp/programming-multiactivities.git | Java | 255 lines
                    
137     * <br>
                    
138     * "http://localhost:8080/proactive/services/Server_HelloWorld(org.objectweb.proactive.core.component.webservices.CXFWSCaller)"
                    
139     * <br>
                    
141     * <br>
                    
142     * "http://localhost:8080/proactive/services/Server_HelloWorld(CXF)"
                    
143     * <br>
                    
145     * <br>
                    
146     * "http://localhost:8080/proactive/services/Server_HelloWorld"
                    
147     *
                    
                
RobolectricProcessorTest.java git://github.com/pivotal/robolectric.git | Java | 237 lines
                    
47          SHADOW_EXTRACTOR_SOURCE,
                    
48          forSourceString("HelloWorld", "final class HelloWorld {}")))
                    
49      .processedWith(new RobolectricProcessor())
                    
                
RunningExtendedAppletSamples.html https://gitlab.com/essere.lab.public/qualitas.class-corpus | HTML | 32 lines
                    
6  <title>Run HelloWorld Extended Applet Sample - Java Card 3 Development
                    
7   </title></head><body class="body"><a name="RunningExtendedAppletSamples"></a><h2>Run <tt>HelloWorld</tt> Extended Applet Sample</h2><p class="p">This <tt>HelloWorld</tt> sample demonstrates the basic structure of a Java Card 3 platform
                    
8extended applet that developers can use to develop, deploy, create, execute, delete, and unload
                    
10and meta-files. This sample contains one project that demonstrates the function of an
                    
11extended applet.</p><p class="p">Running the sample consists of using the IDE to start the <tt>HelloWorld</tt>
                    
12applet. When running, the project installs the applet, processes an incoming APDU, and responds
                    
25<li><b>Click File &#62; Open Project in the main window.</b></li>
                    
26<li><b>Go to the <b></b><tt>\samples\extended_applets </tt>folder and open the <tt>HelloWorld</tt> project.</b></li>
                    
27<li><b>Click the run button in the main window. </b><p>The IDE compiles, builds, and runs the sample. When the sample runs, it
                    
29<li><b>Verify that the contents of the output file are the same as the
                    
30contents of the <tt>HelloWorld.expected.out</tt> file.</b></li></ol>
                    
31</body>
                    
                
src_corelib_concurrent_qthreadpool.cpp https://gitlab.com/x33n/phantomjs | C++ | 53 lines
                    
41//! [0]
                    
42class HelloWorldTask : public QRunnable
                    
43{
                    
49
                    
50HelloWorldTask *hello = new HelloWorldTask();
                    
51// QThreadPool takes ownership and deletes 'hello' automatically
                    
                
AnimEventListener.html https://github.com/jingchan/jh_rogue.git | HTML | 278 lines
                    
102<TR BGCOLOR="white" CLASS="TableRowColor">
                    
103<TD><A HREF="#jme3test.helloworld"><B>jme3test.helloworld</B></A></TD>
                    
104<TD>&nbsp;&nbsp;</TD>
                    
170<P>
                    
171<A NAME="jme3test.helloworld"><!-- --></A>
                    
172<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
                    
174<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
                    
175Uses of <A HREF="../../../../com/jme3/animation/AnimEventListener.html" title="interface in com.jme3.animation">AnimEventListener</A> in <A HREF="../../../../jme3test/helloworld/package-summary.html">jme3test.helloworld</A></FONT></TH>
                    
176</TR>
                    
182<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
                    
183<TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../../jme3test/helloworld/package-summary.html">jme3test.helloworld</A> that implement <A HREF="../../../../com/jme3/animation/AnimEventListener.html" title="interface in com.jme3.animation">AnimEventListener</A></FONT></TH>
                    
184</TR>
                    
187<CODE>&nbsp;class</CODE></FONT></TD>
                    
188<TD><CODE><B><A HREF="../../../../jme3test/helloworld/HelloAnimation.html" title="class in jme3test.helloworld">HelloAnimation</A></B></CODE>
                    
189
                    
                
firstapp.rst https://github.com/archanmishra/pyramid.git | ReStructuredText | 239 lines
                    
12
                    
13.. _helloworld_imperative:
                    
14
                    
19
                    
20.. literalinclude:: helloworld.py
                    
21   :linenos:
                    
22
                    
23When this code is inserted into a Python script named ``helloworld.py`` and
                    
24executed by a Python interpreter which has the :app:`Pyramid` software
                    
28
                    
29   $ python helloworld.py
                    
30   serving on 0.0.0.0:8080 view at http://127.0.0.1:8080
                    
42
                    
43The above ``helloworld.py`` script uses the following set of import
                    
44statements:
                    
                
TextureCacheTest.js https://bitbucket.org/gontamoteam/gontamo-repo.git | JavaScript | 151 lines
                    
46        // load textrues
                    
47        cc.TextureCache.getInstance().addImageAsync("res/Images/HelloWorld.png", this, this.loadingCallBack);
                    
48        cc.TextureCache.getInstance().addImageAsync("res/Images/grossini.png", this, this.loadingCallBack);
                    
71        // create sprites
                    
72        var bg = cc.Sprite.create("res/Images/HelloWorld.png");
                    
73        bg.setPosition(cc.p(size.width / 2, size.height / 2));
                    
                
helloworld.h https://bitbucket.org/lennonchan/cafu.git | C Header | 288 lines
                    
1/////////////////////////////////////////////////////////////////////////////
                    
2// Name:        helloworld.h
                    
3// Purpose:     topic overview
                    
10
                    
11@page overview_helloworld Hello World Example
                    
12
                    
                
index.html https://github.com/bartdag/recodoc2.git | HTML | 400 lines
                    
315Discusses the "Hello World!" application, describing
                    
316each section of code in detail. It covers source code comments, the <code>HelloWorldApp</code> class definition block, and the <code>main</code> method.
                    
317<p>
                    
                
AppDelegate.m https://bitbucket.org/achernyavsky/sandbox.git | Objective C | 52 lines
                    
2//  AppDelegate.m
                    
3//  HelloWorld
                    
4//
                    
                
HelloWorld.html https://github.com/derickbailey/qedserver.git | HTML | 145 lines
                    
7<TITLE>
                    
8Uses of Class com.acme.HelloWorld (Jetty Server Project 6.1.26 API)
                    
9</TITLE>
                    
18    if (location.href.indexOf('is-external=true') == -1) {
                    
19        parent.document.title="Uses of Class com.acme.HelloWorld (Jetty Server Project 6.1.26 API)";
                    
20    }
                    
42  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>
                    
43  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../com/acme/HelloWorld.html" title="class in com.acme"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
                    
44  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD>
                    
61<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
                    
62  <A HREF="../../../index.html?com/acme//class-useHelloWorld.html" target="_top"><B>FRAMES</B></A>  &nbsp;
                    
63&nbsp;<A HREF="HelloWorld.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
                    
84<H2>
                    
85<B>Uses of Class<br>com.acme.HelloWorld</B></H2>
                    
86</CENTER>
                    
                
DynamicProcessTest.java https://github.com/mariofusco/jbpm.git | Java | 143 lines
                    
47	public void testDynamicProcess() throws Exception {		
                    
48		RuleFlowProcessFactory factory = RuleFlowProcessFactory.createProcess("org.jbpm.HelloWorld");
                    
49		factory
                    
50			// Header
                    
51			.name("HelloWorldProcess")
                    
52			.version("1.0")
                    
97		final ProcessInstanceImpl processInstance = (ProcessInstanceImpl)
                    
98			ksession.startProcess("org.jbpm.HelloWorld");
                    
99		
                    
                
SampleController.java https://gitlab.com/perlilja/spring-boot | Java | 78 lines
                    
37	@Autowired
                    
38	private HelloWorldService helloWorldService;
                    
39
                    
43		return Collections.singletonMap("message",
                    
44				this.helloWorldService.getHelloMessage());
                    
45	}
                    
                
hello_world.wsdl https://github.com/nsaputro/cxf.git | Web Services Description Language | 271 lines
                    
25    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                    
26    targetNamespace="http://cxf.apache.org/w2j/hello_world_soap_http" name="HelloWorld">
                    
27    <wsdl:types>
                    
                
Router.js https://github.com/tornak47/dojo-demo.git | JavaScript | 109 lines
                    
90      this.router.go('/bar/hello/world');
                    
91      doh.is(testVal, 'helloworld');
                    
92
                    
                
pygtk.rb https://github.com/aaroncm/homebrew.git | Ruby | 79 lines
                    
43
                    
44        class HelloWorld(object):
                    
45            def hello(self, widget, data=None):
                    
71        if __name__ == "__main__":
                    
72            hello = HelloWorld()
                    
73            hello.main()
                    
                
packages.yml https://gitlab.com/harbottle/epmel | YAML | 394 lines
                    
209      - perl(Mojo::Headers) = 5.17
                    
210      - perl(Mojo::HelloWorld) = 5.17
                    
211      - perl(Mojo::Home) = 5.17
                    
                
lecture_1.tex https://gitlab.com/IanHG/cpp_course | LaTeX | 353 lines
                    
105  {Hello World \cppname-style}
                    
106\includecpp[Hello World]{examples/helloworld/helloworld.cpp}
                    
107
                    
121\begin{frame}[fragile]
                    
122  {Compile and run \iterminal{helloworld.cpp}}
                    
123Compile with \iterminal{g++} compiler and run executable
                    
124\begin{terminal}
                    
125$ g++ helloworld.cpp
                    
126$ ./a.out
                    
132\begin{terminal}
                    
133$ g++ -o helloworld.x helloworld.cpp
                    
134$ ./helloworld.x
                    
145  \includecpp
                    
146  [Hello World 2]{examples/helloworld/helloworld2.cpp}
                    
147\vspace{-0.5cm}
                    
                
project.properties https://github.com/shaeberling/xmlvm.git | Properties File | 181 lines
                    
56file.reference.fullscreen-src=../../demo/iphone/ihelloworld/fullscreen/src
                    
57file.reference.helloworld-gen=../../demo/android/helloworld/gen
                    
58file.reference.helloworld-src=../../demo/android/helloworld/src
                    
61file.reference.ifireworks-src=../../demo/iphone/ifireworks/src
                    
62file.reference.ihelloworld-fullscreen=../../demo/iphone/ihelloworld/fullscreen
                    
63file.reference.ihelloworld-landscape=../../demo/iphone/ihelloworld/landscape
                    
63file.reference.ihelloworld-landscape=../../demo/iphone/ihelloworld/landscape
                    
64file.reference.ihelloworld-portrait=../../demo/iphone/ihelloworld/portrait
                    
65file.reference.ihelloworld-upsidedown=../../demo/iphone/ihelloworld/upsidedown
                    
73file.reference.jl1.0.jar=../../lib/jl1.0.jar
                    
74file.reference.landscape-src=../../demo/iphone/ihelloworld/landscape/src
                    
75file.reference.lwjgl.jar=../../lib/lwjgl.jar
                    
80file.reference.one-jar-boot.jar=../../lib/one-jar-boot.jar
                    
81file.reference.portrait-src=../../demo/iphone/ihelloworld/portrait/src
                    
82file.reference.posix-src=../../plugins/posix/src
                    
                
app-engine-part-1.md https://gitlab.com/learn-co-curriculum/cssi-teacher-bootcamp | Markdown | 121 lines
                    
68    <h1>Hello World!</h1>
                    
69    <img height="100px" width="150px" src="https://blackgeoscientists.files.wordpress.com/2014/06/helloworld.jpg" alt="A cute Pic of a Dude on the World">
                    
70    <h2>How are ya?</h2>
                    
98    jinja_environment = jinja2.Environment(
                    
99      loader=jinja2.FileSystemLoader(os.path.dirname(__file__)))#this little bit sets jinja's relative directory to match the directory name(dirname) of the current __file__, in this case, helloworld.py
                    
100    ```
                    
109    jinja_environment = jinja2.Environment(
                    
110      loader=jinja2.FileSystemLoader(os.path.dirname(__file__)))#this little bit sets jinja's relative directory to match the directory name(dirname) of the current __file__, in this case, helloworld.py
                    
111    
                    
                
HelloWorldTest.java https://gitlab.com/jaragan/jersey | Java | 253 lines
                    
39 */
                    
40package org.glassfish.jersey.examples.helloworld;
                    
41
                    
69@RunWith(ConcurrentRunner.class)
                    
70public class HelloWorldTest extends JerseyTest {
                    
71
                    
79        // enable(TestProperties.DUMP_ENTITY);
                    
80        return new ResourceConfig(HelloWorldResource.class);
                    
81    }
                    
90    @Ignore("not compatible with test framework (doesn't use client())")
                    
91    public void testHelloWorld() throws Exception {
                    
92        URL getUrl = UriBuilder.fromUri(getBaseUri()).path(App.ROOT_PATH).build().toURL();
                    
113        String s = target().path(App.ROOT_PATH).request().get(String.class);
                    
114        assertEquals(HelloWorldResource.CLICHED_MESSAGE, s);
                    
115    }
                    
                
Program.cs https://bitbucket.org/mdavid/dlr.git | C# | 123 lines
                    
17            //Samples:
                    
18            //LambdaBody = SimpleHelloWorld();
                    
19            LambdaBody = NotSoSimpleHelloWorld();
                    
32        /// <returns>An expression that if executed will print "Hello world!"</returns>
                    
33        static Expression SimpleHelloWorld() {
                    
34            //First step, we get the methodinfo for Console.WriteLine. This is standard reflection.
                    
46        /// </summary>
                    
47        static Expression NotSoSimpleHelloWorld() {
                    
48            //Not so simple Hello world
                    
                
Bundle_ja.properties https://bitbucket.org/pymma/openesb-components.git | Properties File | 35 lines
                    
34HTTPBC-E01233.Address_protocol_mismatch=HTTPBC-E01233: HTTP \u30dd\u30fc\u30c8\u306e\u30c8\u30fc\u30af\u30f3\u3068\u3057\u3066 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001URL \u30d7\u30ed\u30c8\u30b3\u30eb\u306f ''{1}'' \u3067\u3059
                    
35HTTPBC-E01234.Invalid_host_port_with_tokens=HTTPBC-E01234: \u7121\u52b9\u306a HTTP URL: {0} - 1 \u3064\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u5909\u6570\u306e\u30c8\u30fc\u30af\u30f3\u3067 URL \u306e\u30db\u30b9\u30c8\u3001\u30dd\u30fc\u30c8\u3001\u307e\u305f\u306f\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8 (\u3042\u308b\u3044\u306f\u305d\u308c\u3089\u3059\u3079\u3066) \u3092\u793a\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002\u305d\u308c\u305e\u308c (\u4f7f\u7528\u3059\u308b\u5834\u5408) \u306b\u500b\u3005\u306e\u30c8\u30fc\u30af\u30f3\u304c\u5fc5\u8981\u3067\u3059\u3002\u4f8b: 'http://${hostname}:${HttpDefaultPort}/${context}'\u3001\u307e\u305f\u306f 'http://localhost:${HttpDefaultPort}/helloworld'
                    
                
docs.md https://github.com/conzi/lessphp.git | Markdown | 502 lines
                    
97        width: 2 * @width / 3;
                    
98        font-family: "hel" + "vetica"; // evaluates to "helloworld"
                    
99    }
                    
                
Utils.php https://github.com/nysenate/Bluebird-CRM.git | PHP | 384 lines
                    
34   *   The logical filename to display.
                    
35   *   Ex: "HelloWorld.pdf".
                    
36   * @param bool $output
                    
                
ExclusiveBind.java https://github.com/ikeji/openjdk7-jdk.git | Java | 171 lines
                    
28 *
                    
29 * @build VMConnection ExclusiveBind HelloWorld
                    
30 * @run main ExclusiveBind
                    
143        // launch the first debuggee
                    
144        Process process1 = launch(address, true, "HelloWorld");
                    
145
                    
149        // launch a second debuggee with the same address
                    
150        Process process2 = launch(address, false, "HelloWorld");
                    
151
                    
                
getting-started.zh-CN.md https://gitlab.com/Blueprint-Marketing/react | Markdown | 148 lines
                    
88
                    
89然后在 `helloworld.html` 引用该文件:
                    
90
                    
91```html{10}
                    
92<script type="text/babel" src="src/helloworld.js"></script>
                    
93```
                    
104
                    
105然后把你的 `src/helloworld.js` 文件转成标准的 JavaScript:
                    
106
                    
111
                    
112`build/helloworld.js` 会在你对文件进行修改时自动生成。 阅读 [Babel CLI 文档](http://babeljs.io/docs/usage/cli/) 了解高级用法。
                    
113
                    
134    <div id="example"></div>
                    
135    <script src="build/helloworld.js"></script>
                    
136  </body>
                    
                
CCallingMixedCAndCppHelloWorldApp.groovy https://github.com/andrewhj-mn/gradle.git | Groovy | 85 lines
                    
20
                    
21public class CCallingMixedCAndCppHelloWorldApp extends HelloWorldApp {
                    
22    @Override
                    
                
helloworld.js https://gitlab.com/gregtyka/napster.fm | JavaScript | 81 lines
                    
20 * @author gak@google.com (Gregory Kick)
                    
21 * @see helloworld.html
                    
22 */
                    
23
                    
24goog.provide('goog.demos.editor.HelloWorld');
                    
25
                    
36 */
                    
37goog.demos.editor.HelloWorld = function() {
                    
38  goog.editor.Plugin.call(this);
                    
39};
                    
40goog.inherits(goog.demos.editor.HelloWorld, goog.editor.Plugin);
                    
41
                    
43/** @override */
                    
44goog.demos.editor.HelloWorld.prototype.getTrogClassId = function() {
                    
45  return 'HelloWorld';
                    
                
plugins.pro https://github.com/dmik/qt-creator-os2.git | Prolog | 290 lines
                    
25#            plugin_qtestlib \ # this seems to be dead
                    
26            plugin_helloworld \ # sample plugin
                    
27            plugin_help \
                    
183
                    
184plugin_helloworld.subdir = helloworld
                    
185plugin_helloworld.depends = plugin_coreplugin
                    
                
HelloWorld4Resource.java https://gitlab.com/jaragan/jersey | Java | 55 lines
                    
47@Path("helloworld4")
                    
48public class HelloWorld4Resource extends AbstractHelloWorldResource {
                    
49
                    
                
HelloWorld2Resource.java https://gitlab.com/jaragan/jersey | Java | 55 lines
                    
47@Path("helloworld2")
                    
48public class HelloWorld2Resource extends AbstractHelloWorldResource {
                    
49
                    
                
package-tree.html https://github.com/jingchan/jh_rogue.git | HTML | 161 lines
                    
7<TITLE>
                    
8jme3test.helloworld Class Hierarchy (jMonkeyEngine3)
                    
9</TITLE>
                    
18    if (location.href.indexOf('is-external=true') == -1) {
                    
19        parent.document.title="jme3test.helloworld Class Hierarchy (jMonkeyEngine3)";
                    
20    }
                    
61<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
                    
62  <A HREF="../../index.html?jme3test/helloworld/package-tree.html" target="_top"><B>FRAMES</B></A>  &nbsp;
                    
63&nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;
                    
98<LI TYPE="circle">com.jme3.app.<A HREF="../../com/jme3/app/SimpleApplication.html" title="class in com.jme3.app"><B>SimpleApplication</B></A><UL>
                    
99<LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloAnimation.html" title="class in jme3test.helloworld"><B>HelloAnimation</B></A> (implements com.jme3.animation.<A HREF="../../com/jme3/animation/AnimEventListener.html" title="interface in com.jme3.animation">AnimEventListener</A>)
                    
100<LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloAssets.html" title="class in jme3test.helloworld"><B>HelloAssets</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloAudio.html" title="class in jme3test.helloworld"><B>HelloAudio</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloCollision.html" title="class in jme3test.helloworld"><B>HelloCollision</B></A> (implements com.jme3.input.controls.<A HREF="../../com/jme3/input/controls/ActionListener.html" title="interface in com.jme3.input.controls">ActionListener</A>)
                    
100<LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloAssets.html" title="class in jme3test.helloworld"><B>HelloAssets</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloAudio.html" title="class in jme3test.helloworld"><B>HelloAudio</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloCollision.html" title="class in jme3test.helloworld"><B>HelloCollision</B></A> (implements com.jme3.input.controls.<A HREF="../../com/jme3/input/controls/ActionListener.html" title="interface in com.jme3.input.controls">ActionListener</A>)
                    
101<LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloEffects.html" title="class in jme3test.helloworld"><B>HelloEffects</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloInput.html" title="class in jme3test.helloworld"><B>HelloInput</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloJME3.html" title="class in jme3test.helloworld"><B>HelloJME3</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloLoop.html" title="class in jme3test.helloworld"><B>HelloLoop</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloMaterial.html" title="class in jme3test.helloworld"><B>HelloMaterial</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloNode.html" title="class in jme3test.helloworld"><B>HelloNode</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloPhysics.html" title="class in jme3test.helloworld"><B>HelloPhysics</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloPicking.html" title="class in jme3test.helloworld"><B>HelloPicking</B></A><LI TYPE="circle">jme3test.helloworld.<A HREF="../../jme3test/helloworld/HelloTerrain.html" title="class in jme3test.helloworld"><B>HelloTerrain</B></A></UL>
                    
102</UL>
                    
                
tests.sh https://bitbucket.org/killerpenguinassassins/open_distrib_devel.git | Shell | 79 lines
                    
46test_update testdc2.example.nil. A "86400 A 10.53.0.11" "10.53.0.11" || status=1
                    
47test_update denied.example.nil. TXT "86400 TXT helloworld" "helloworld" && status=1
                    
48
                    
53test_update testdenied.example.nil. A "86400 A 10.53.0.12" "10.53.0.12" && status=1
                    
54test_update testdenied.example.nil. TXT "86400 TXT helloworld" "helloworld" || status=1
                    
55
                    
                
relation_test.rb https://github.com/mitchel456/rails.git | Ruby | 226 lines
                    
119      assert_raises(NameError) do
                    
120        ActiveRecord::Relation::HelloWorld
                    
121      end
                    
                
url_matcher2.php https://github.com/Exercise/symfony.git | PHP | 244 lines
                    
159        if (0 === strpos($pathinfo, '/multi')) {
                    
160            // helloWorld
                    
161            if (0 === strpos($pathinfo, '/multi/hello') && preg_match('#^/multi/hello(?:/(?<who>[^/]+?))?$#s', $pathinfo, $matches)) {
                    
161            if (0 === strpos($pathinfo, '/multi/hello') && preg_match('#^/multi/hello(?:/(?<who>[^/]+?))?$#s', $pathinfo, $matches)) {
                    
162                return array_merge($this->mergeDefaults($matches, array (  'who' => 'World!',)), array('_route' => 'helloWorld'));
                    
163            }
                    
                
SwiftOSXBinaryIntegrationTest.java https://gitlab.com/smartether/buck | Java | 201 lines
                    
49  @Test
                    
50  public void swiftHelloWorldRunsAndPrintsMessageOnOSX() throws IOException {
                    
51    assumeThat(
                    
55        this,
                    
56        "helloworld",
                    
57        tmp);
                    
75        this,
                    
76        "helloworld",
                    
77        tmp);
                    
                
index_nav.html https://github.com/chromium/chromium.git | HTML | 256 lines
                    
89        {name: 'Full Editor', url: 'editor/editor.html'},
                    
90        {name: 'Hello World Plugin', url: 'editor/helloworld.html'},
                    
91        {name: 'Seamless Field', url: 'editor/seamlessfield.html'}
                    
                
JDKTimerServiceTest.java https://github.com/esteban-aliverti/drools.git | Java | 175 lines
                    
46        Trigger trigger = new DelayedTrigger( 100 );
                    
47        HelloWorldJobContext ctx = new HelloWorldJobContext( "hello world", timeService);
                    
48        timeService.scheduleJob( new HelloWorldJob(), ctx,  trigger);
                    
59        Trigger trigger = new DelayedTrigger(  new long[] { 100, 100, 100} );
                    
60        HelloWorldJobContext ctx = new HelloWorldJobContext( "hello world", timeService);
                    
61        timeService.scheduleJob( new HelloWorldJob(), ctx,  trigger);
                    
73        Trigger trigger = new DelayedTrigger(  new long[] {100, 100, 100, 100, 100, 100, 100, 100} ); 
                    
74        HelloWorldJobContext ctx = new HelloWorldJobContext( "hello world", timeService);
                    
75        ctx.setLimit( 3 );
                    
75        ctx.setLimit( 3 );
                    
76        timeService.scheduleJob( new HelloWorldJob(), ctx,  trigger);
                    
77        Thread.sleep( 1000 );
                    
83        public void execute(JobContext c) {
                    
84            HelloWorldJobContext ctx = (HelloWorldJobContext) c;
                    
85            int counter = ctx.increaseCounter();
                    
                
CreateMethodDeclarationTests.cs https://bitbucket.org/WscriChy/vim-configuration.git | C# | 743 lines
                    
599{
                    
600	static void NonExistantMethod (string helloWorld)
                    
601	{
                    
                
ModifiableSolrParamsTest.java https://github.com/simplegeo/lucene-solr.git | Java | 128 lines
                    
55    String key = "key";
                    
56    String[] helloWorld = new String[] { "Hello", "World" };
                    
57    String[] universe = new String[] { "Universe" };
                    
57    String[] universe = new String[] { "Universe" };
                    
58    String[] helloWorldUniverse = new String[] { "Hello", "World", "Universe" };
                    
59    modifiable.add(key, helloWorld);
                    
59    modifiable.add(key, helloWorld);
                    
60    assertEquals("checking Hello World: ", helloWorld, modifiable.getParams(key));
                    
61
                    
63    String[] result = modifiable.getParams(key);
                    
64    compareArrays("checking Hello World Universe ", helloWorldUniverse, result);
                    
65  }
                    
71    String key = "key";
                    
72    String[] helloWorld = new String[] { "Hello", "World" };
                    
73    String[] universe = new String[] { null };
                    
                
HelloWorldMDB.java https://gitlab.com/avinashmx/WildFly | Java | 60 lines
                    
35 */
                    
36@MessageDriven(name = "HelloWorldMDB", activationConfig = {
                    
37    @ActivationConfigProperty(propertyName = "destinationType", propertyValue = "javax.jms.Queue"),
                    
39    @ActivationConfigProperty(propertyName = "acknowledgeMode", propertyValue = "Auto-acknowledge") })
                    
40public class HelloWorldMDB implements MessageListener {
                    
41
                    
41
                    
42    private final static Logger LOGGER = Logger.getLogger(HelloWorldMDB.class.toString());
                    
43
                    
                
tests.cpp https://gitlab.com/Keeek/concurrency-course | C++ | 95 lines
                    
47TEST_SUITE(EchoServer) {
                    
48  TINY_FIBERS_TEST(HelloWorld) {
                    
49    static const std::string kMessage = "Hello, World!";
                    
                
README.md https://gitlab.com/ThomasHunt3r/jboss-eap-quickstarts | Markdown | 224 lines
                    
17
                    
18* A queue named `HELLOWORLDMDBQueue` bound in JNDI as `java:/queue/HELLOWORLDMDBQueue`
                    
19* A topic named `HELLOWORLDMDBTopic` bound in JNDI as `java:/topic/HELLOWORLDMDBTopic`
                    
70
                    
71To send messages to the topic, use the following URL: <http://localhost:8080/jboss-helloworld-mdb/HelloWorldMDBServletClient?topic>
                    
72
                    
145      SSH to:     52864af85973ca430200006f@helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com
                    
146      Git remote: ssh://52864af85973ca430200006f@helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/~/git/helloworldmdb.git/
                    
147      Cloned to:  CURRENT_DIRECTORY/helloworldmdb
                    
150
                    
151The create command creates a git repository in the current directory with the same name as the application, in this case, `helloworldmdb`. Notice that the output also reports the URL at which the application can be accessed. Make sure it is available by typing the published url <http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/> into a browser or use command line tools such as curl or wget. Be sure to replace `YOUR_DOMAIN_NAME` with your OpenShift account domain name.
                    
152        
                    
186* <http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/> to send messages to the queue
                    
187* <http://helloworldmdb-YOUR_DOMAIN_NAME.rhcloud.com/HelloWorldMDBServletClient?topic> to send messages to the topic
                    
188
                    
                
lsp-io-test.el https://gitlab.com/vitalii.dr/lsp-mode | Emacs Lisp | 111 lines
                    
76  (let* ((fn (lsp--create-process-message))
                    
77         (message-in "Content-Length: 1152\r\n\r\n{\"jsonrpc\":\"2.0\",\"method\":\"sts/highlight\",\"params\":{\"doc\":{\"version\":0,\"uri\":\"file:///home/kyoncho/Public/Desktop/hellow/hello-world/src/main/java/com/example/helloworld/HelloWorldController.java\"},\"codeLenses\":[{\"range\":{\"start\":{\"line\":9,\"character\":0},\"end\":{\"line\":9,\"character\":11}},\"command\":{\"title\":\"← SampleBean\",\"command\":\"sts.showHoverAtPosition\",\"arguments\":[{\"line\":9,\"character\":0}]},\"data\":\"← SampleBean\"},{\"range\":{\"start\":{\"line\":14,\"character\":4},\"end\":{\"line\":14,\"character\":14}},\"command\":{\"title\":\"← SampleBean\",\"command\":\"sts.showHoverAtPosition\",\"arguments\":[{\"line\":14,\"character\":4}]},\"data\":\"← SampleBean\"},{\"range\":{\"start\":{\"line\":17,\"character\":4},\"end\":{\"line\":17,\"character\":31}},\"command\":{\"title\":\"http://127.0.0.1:8080/hello-world\",\"command\":\"sts.open.url\",\"arguments\":[\"http://127.0.0.1:8080/hello-world\"]},\"data\":\"http://127.0.0.1:8080/hello-world\"},{\"range\":{\"start\":{\"line\":25,\"character\":4},\"end\":{\"line\":25,\"character\":32}},\"command\":{\"title\":\"http://127.0.0.1:8080/hello-world2\",\"command\":\"sts.open.url\",\"arguments\":[\"http://127.0.0.1:8080/hello-world2\"]},\"data\":\"http://127.0.0.1:8080/hello-world2\"}]}}")
                    
78         (messages (funcall fn message-in)))
                    
78         (messages (funcall fn message-in)))
                    
79    (should (equal messages '("{\"jsonrpc\":\"2.0\",\"method\":\"sts/highlight\",\"params\":{\"doc\":{\"version\":0,\"uri\":\"file:///home/kyoncho/Public/Desktop/hellow/hello-world/src/main/java/com/example/helloworld/HelloWorldController.java\"},\"codeLenses\":[{\"range\":{\"start\":{\"line\":9,\"character\":0},\"end\":{\"line\":9,\"character\":11}},\"command\":{\"title\":\"← SampleBean\",\"command\":\"sts.showHoverAtPosition\",\"arguments\":[{\"line\":9,\"character\":0}]},\"data\":\"← SampleBean\"},{\"range\":{\"start\":{\"line\":14,\"character\":4},\"end\":{\"line\":14,\"character\":14}},\"command\":{\"title\":\"← SampleBean\",\"command\":\"sts.showHoverAtPosition\",\"arguments\":[{\"line\":14,\"character\":4}]},\"data\":\"← SampleBean\"},{\"range\":{\"start\":{\"line\":17,\"character\":4},\"end\":{\"line\":17,\"character\":31}},\"command\":{\"title\":\"http://127.0.0.1:8080/hello-world\",\"command\":\"sts.open.url\",\"arguments\":[\"http://127.0.0.1:8080/hello-world\"]},\"data\":\"http://127.0.0.1:8080/hello-world\"},{\"range\":{\"start\":{\"line\":25,\"character\":4},\"end\":{\"line\":25,\"character\":32}},\"command\":{\"title\":\"http://127.0.0.1:8080/hello-world2\",\"command\":\"sts.open.url\",\"arguments\":[\"http://127.0.0.1:8080/hello-world2\"]},\"data\":\"http://127.0.0.1:8080/hello-world2\"}]}}")))))
                    
80
                    
                
README.md https://gitlab.com/avinashmx/WildFly | Markdown | 133 lines
                    
1helloworld-mbean: Helloworld Using MBean and CDI component
                    
2======================================================
                    
57
                    
584. This will deploy `helloworld-mbean-webapp\target\wildfly-helloworld-mbean-helloworld-mbean-webapp.war` and `helloworld-mbean-service\target\wildfly-helloworld-mbean-helloworld-mbean-service.sar` to the running instance of the server.
                    
59
                    
892. Expand `quickstarts` in the left column of the console.
                    
903. Under `quickstarts`, you see the 4 MBeans: `AnnotatedComponentHelloWorld`, `MXComponentHelloWorld`, `MXPojoHelloWorld`, and `SarMXPojoHelloWorld`
                    
914. Expand each MBean and choose: `Operations` --> `sayHello`.
                    
925. Type your name in the (p0 String ) input text box and click the `sayHello` button.
                    
93   * For the `AnnotatedComponentHelloWorld` and `MXComponentHelloWorld` examples, you will see a popup Window displaying `Hello <your name>!`.
                    
94   * For the `MXPojoHelloWorld` and `SarMXPojoHelloWorld` examples, you will see a popup Window displaying `Welcome <your name>!`.
                    
112
                    
1131.  When you import the `helloworld-mbean` quickstart into JBoss Developer Studio, you see the following warnings for the `wildfly-helloworld-mbean-webapp/src/main/webapp/META-INF/jboss-service.xml` and `/wildfly-helloworld-mbean-service/src/main/resources/META-INF/jboss-service.xml` files:
                    
114
                    
1234. Right-click on the `helloworld-mbean-helloworld-mbean-service` project and choose `Run As` --> `Run on Server`. 
                    
1245. Right-click on the `helloworld-mbean-helloworld-mbean-webapp` project and choose `Run As` --> `Run on Server`. 
                    
1256. [Start JConsole](#start-jconsole) and [Test the MBeans in JConsole](#test-the-mbeans-in-jconsole) as described above.
                    
                
helloworlddialogplugin.js https://gitlab.com/gregtyka/napster.fm | JavaScript | 110 lines
                    
19
                    
20goog.provide('goog.demos.editor.HelloWorldDialogPlugin');
                    
21goog.provide('goog.demos.editor.HelloWorldDialogPlugin.Command');
                    
22
                    
23goog.require('goog.demos.editor.HelloWorldDialog');
                    
24goog.require('goog.dom.TagName');
                    
37 */
                    
38goog.demos.editor.HelloWorldDialogPlugin = function() {
                    
39  goog.editor.plugins.AbstractDialogPlugin.call(this,
                    
39  goog.editor.plugins.AbstractDialogPlugin.call(this,
                    
40      goog.demos.editor.HelloWorldDialogPlugin.Command.HELLO_WORLD_DIALOG);
                    
41};
                    
41};
                    
42goog.inherits(goog.demos.editor.HelloWorldDialogPlugin,
                    
43              goog.editor.plugins.AbstractDialogPlugin);
                    
                
JavaFirstTestCase.java https://github.com/vorburger/tuscany-sca-2.x.git | Java | 123 lines
                    
25
                    
26import org.apache.tuscany.sca.binding.ws.jaxws.external.client.HelloWorldClientLauncher;
                    
27import org.apache.tuscany.sca.binding.ws.jaxws.external.service.HelloWorldServiceLauncher;
                    
40    private Node node;
                    
41    private HelloWorldServiceLauncher externalService;
                    
42    private HelloWorldClientLauncher externalClient;
                    
46        // Start the external service
                    
47        externalService = new HelloWorldServiceLauncher();
                    
48        externalService.createService();
                    
55        try {
                    
56            externalClient = new HelloWorldClientLauncher();
                    
57            externalClient.createClient();
                    
                
getting-started.ja-JP.md https://gitlab.com/orvi2014/react | Markdown | 116 lines
                    
57
                    
58それが終わったら、`helloworld.js` への参照を `helloworld.html` に書き込みましょう。
                    
59
                    
60```html{10}
                    
61<script type="text/jsx" src="src/helloworld.js"></script>
                    
62```
                    
100    <div id="example"></div>
                    
101    <script src="build/helloworld.js"></script>
                    
102  </body>
                    
                
README.md https://gitlab.com/learn-co-curriculum/cssi-6-4-gae-intro-to-templates | Markdown | 121 lines
                    
33```
                    
34+ Now we need to tell <kbd>app.yaml</kbd> where to find our app (<kbd>helloworld.app</kbd>) and the <kbd>webapp2</kbd> library.
                    
35
                    
73    <h1>Hello World!</h1>
                    
74    <img height="100px" width="150px" src="https://blackgeoscientists.files.wordpress.com/2014/06/helloworld.jpg" alt="A cute Pic of a Dude on the World">
                    
75    <h2>How are ya?</h2>
                    
111jinja_environment = jinja2.Environment(
                    
112  loader=jinja2.FileSystemLoader(os.path.dirname(__file__)))#this little bit sets jinja's relative directory to match the directory name(dirname) of the current __file__, in this case, helloworld.py
                    
113
                    
                
HelloWorldResourceAdapter.java https://github.com/madhumita/jboss-as.git | Java | 62 lines
                    
38@Connector(reauthenticationSupport = false, transactionSupport = TransactionSupport.TransactionSupportLevel.NoTransaction)
                    
39public class HelloWorldResourceAdapter implements ResourceAdapter {
                    
40
                    
                
HelloWorldInterface.html https://bitbucket.org/advaitraut/jucy.git | HTML | 172 lines
                    
6<TITLE>
                    
7Uses of Interface net.sbbi.upnp.samples.HelloWorldInterface (SBBI UPNPLib API)
                    
8</TITLE>
                    
82<TD COLSPAN=2><FONT SIZE="+2">
                    
83Packages that use <A HREF="../../../../../net/sbbi/upnp/samples/HelloWorldInterface.html" title="interface in net.sbbi.upnp.samples">HelloWorldInterface</A></FONT></TD>
                    
84</TR>
                    
95<TD COLSPAN=2><FONT SIZE="+2">
                    
96Uses of <A HREF="../../../../../net/sbbi/upnp/samples/HelloWorldInterface.html" title="interface in net.sbbi.upnp.samples">HelloWorldInterface</A> in <A HREF="../../../../../net/sbbi/upnp/samples/package-summary.html">net.sbbi.upnp.samples</A></FONT></TD>
                    
97</TR>
                    
103<TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor">
                    
104<TD COLSPAN=2>Classes in <A HREF="../../../../../net/sbbi/upnp/samples/package-summary.html">net.sbbi.upnp.samples</A> that implement <A HREF="../../../../../net/sbbi/upnp/samples/HelloWorldInterface.html" title="interface in net.sbbi.upnp.samples">HelloWorldInterface</A></FONT></TD>
                    
105</TR>
                    
108<CODE>&nbsp;class</CODE></FONT></TD>
                    
109<TD><CODE><B><A HREF="../../../../../net/sbbi/upnp/samples/HelloWorld.html" title="class in net.sbbi.upnp.samples">HelloWorld</A></B></CODE>
                    
110
                    
                
url_matcher2.php https://bitbucket.org/hill2steve/mobileroom.git | PHP | 269 lines
                    
176        if (0 === strpos($pathinfo, '/multi')) {
                    
177            // helloWorld
                    
178            if (0 === strpos($pathinfo, '/multi/hello') && preg_match('#^/multi/hello(?:/(?P<who>[^/]+))?$#s', $pathinfo, $matches)) {
                    
178            if (0 === strpos($pathinfo, '/multi/hello') && preg_match('#^/multi/hello(?:/(?P<who>[^/]+))?$#s', $pathinfo, $matches)) {
                    
179                return array_merge($this->mergeDefaults($matches, array (  'who' => 'World!',)), array('_route' => 'helloWorld'));
                    
180            }
                    
                
Reference.cs https://github.com/gpeipman/Visual-Studio-Experiments.git | C# | 223 lines
                    
19        [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/HelloWorld", ReplyAction="*")]
                    
20        ClientWeb.ServiceReference1.HelloWorldResponse HelloWorld(ClientWeb.ServiceReference1.HelloWorldRequest request);
                    
21        
                    
22        [System.ServiceModel.OperationContractAttribute(AsyncPattern=true, Action="http://tempuri.org/HelloWorld", ReplyAction="*")]
                    
23        System.IAsyncResult BeginHelloWorld(ClientWeb.ServiceReference1.HelloWorldRequest request, System.AsyncCallback callback, object asyncState);
                    
24        
                    
39        
                    
40        public HelloWorldRequest(ClientWeb.ServiceReference1.HelloWorldRequestBody Body) {
                    
41            this.Body = Body;
                    
150        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
                    
151        ClientWeb.ServiceReference1.HelloWorldResponse ClientWeb.ServiceReference1.DelayedHelloSoap.HelloWorld(ClientWeb.ServiceReference1.HelloWorldRequest request) {
                    
152            return base.Channel.HelloWorld(request);
                    
176        [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
                    
177        ClientWeb.ServiceReference1.HelloWorldResponse ClientWeb.ServiceReference1.DelayedHelloSoap.EndHelloWorld(System.IAsyncResult result) {
                    
178            return base.Channel.EndHelloWorld(result);
                    
                
test.js https://gitlab.com/JTAlv/versioning | JavaScript | 392 lines
                    
60    t.error(err)
                    
61    t.deepEqual(list, ['helloworld'])
                    
62  }))
                    
                
ZipOutputStreamTest.java https://gitlab.com/cde/debian_android-tools_android-platform-libcore | Java | 292 lines
                    
37
                    
38    static final String data = "HelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorldHelloWorld";
                    
39
                    
                
hello-world.md https://gitlab.com/alx741/book | Markdown | 395 lines
                    
38an underscore to separate them; for example, you'd use *hello_world.rs* rather
                    
39than *helloworld.rs*.
                    
40
                    
                
main.cpp https://gitlab.com/kudze/os_lab_02 | C++ | 148 lines
                    
132
                    
133    //writeHelloWorldOS(real);
                    
134    writeOS(real);
                    
                
AbstractJettyServerTestCase.java https://gitlab.com/yinxiaoling/spring-framework | Java | 336 lines
                    
56
                    
57	protected static final String helloWorld = "H\u00e9llo W\u00f6rld";
                    
58
                    
78		ServletContextHandler handler = new ServletContextHandler();
                    
79		byte[] bytes = helloWorld.getBytes("utf-8");
                    
80		handler.addServlet(new ServletHolder(new GetServlet(bytes, textContentType)), "/get");
                    
83		handler.addServlet(
                    
84				new ServletHolder(new PostServlet(helloWorld, "/post/1", bytes, textContentType)),
                    
85				"/post");
                    
97		handler.addServlet(
                    
98				new ServletHolder(new PutServlet(helloWorld, bytes, textContentType)),
                    
99				"/put");
                    
                
StacyBenchmarkRunner.cs https://gitlab.com/ITX8540/stacy | C# | 65 lines
                    
28            {
                    
29                //typeof(HelloWorldBenchmark),
                    
30                typeof(FbWebhookControllerBenchmark),
                    
                
AbstractIntegrationTest.java https://github.com/bosschaert/aries.git | Java | 282 lines
                    
18 */
                    
19package org.apache.aries.samples.blueprint.helloworld.itests;
                    
20
                    
                
 

Source

Language