Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for HelloWorld (0.16 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/src/main/kotlin/samples/HelloWorld.kt

    Louis Jacomet <******@****.***> 1711728981 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 79 bytes
    - Viewed (0)
  2. tools/docker.yaml

    # This folder is then passed as the docker context. This avoids complex .dockerignore or large context loads.
    
    # Example image config
    example:
    - name: helloworld # Name of the image. Will end up pushed to <HUB>/helloworld:<TAG>
      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
      # Inside the Dockerfile, this is referenced by the base name (README.md), not the full name.
      - samples/README.md
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

                    }
    
                    def "execute helloWorld task"() {
                        settingsFile = new File(testProjectDir, 'settings.gradle')
                        buildFile = new File(testProjectDir, 'build.gradle')
                        given:
                        settingsFile << "rootProject.name = 'hello-world'"
                        buildFile << '''
                            task helloWorld {
                                doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskExecutionResultCrossVersionSpec.groovy

            given:
            buildFile << """
                task helloWorld {
                    doFirst { println "Hello, World!" }
                }
            """
    
            when:
            runBuild('helloWorld')
    
            then:
            with (taskSuccessResult(':helloWorld')) {
                !incremental
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. samples/custom-bootstrap/README.md

    # Custom Envoy Bootstrap Configuration
    
    This sample creates a simple helloworld service that bootstraps the Envoy proxy with a custom configuration file.
    
    ## Starting the service
    
    First, we need to create a `ConfigMap` resource with our bootstrap configuration.
    
    ```bash
    kubectl apply -f custom-bootstrap.yaml
    ```
    
    Next, we can create a service that uses this bootstrap configuration.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/CheckHandshake.java

          .addNetworkInterceptor(CHECK_HANDSHAKE_INTERCEPTOR)
          .build();
    
      public void run() throws Exception {
        Request request = new Request.Builder()
            .url("https://publicobject.com/helloworld.txt")
            .build();
    
        try (Response response = client.newCall(request).execute()) {
          if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/BasicZincScalaCompilerIntegrationTest.groovy

    }"""
        }
    
        def goodCodeUsingJavaInterface() {
            file("src/main/scala/compile/test/Demo.scala") << """
                package compile.test
    
                object Demo {
                  MyInterface.helloWorld();
                }
            """.stripIndent()
        }
    
    
        def goodJavaInterfaceCode() {
            file("src/main/java/compile/test/MyInterface.java") << """
                package compile.test;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Cache.kt

     * directive:
     *
     * ```java
     * Request request = new Request.Builder()
     *     .cacheControl(new CacheControl.Builder().noCache().build())
     *     .url("http://publicobject.com/helloworld.txt")
     *     .build();
     * ```
     *
     * If it is only necessary to force a cached response to be validated by the server, use the more
     * efficient `max-age=0` directive instead:
     *
     * ```java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/encoding/base32/base32_test.go

    	}{
    		// NBSWY3DPO5XXE3DE == helloworld
    		// Test with "ZZ" as extra input
    		{"helloworld", [][]string{
    			{"NBSW", "Y3DP", "O5XX", "E3DE", "ZZ"},
    			{"NBSWY3DPO5XXE3DE", "ZZ"},
    			{"NBSWY3DPO5XXE3DEZZ"},
    			{"NBS", "WY3", "DPO", "5XX", "E3D", "EZZ"},
    			{"NBSWY3DPO5XXE3", "DEZZ"},
    		}, io.ErrUnexpectedEOF},
    
    		// Test with "ZZY" as extra input
    		{"helloworld", [][]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/best-practices/organizing_gradle_projects.adoc

    [source,kotlin]
    ----
    .
    ├── build.gradle.kts
    └── src
        └── main
            ├── java
            │   └── HelloWorld.java
            └── kotlin
                └── Utils.kt
    ----
    =====
    [.multi-language-sample]
    =====
    [source,groovy]
    ----
    .
    ├── build.gradle
    └── src
        └── main
            ├── java
            │   └── HelloWorld.java
            └── kotlin
                └── Utils.kt
    ----
    =====
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:16:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top