Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for HelloWorld (0.15 sec)

  1. istioctl/pkg/validate/validate_test.go

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: helloworld-v1
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          annotations:
            sidecar.istio.io/bootstrapOverride: "istio-custom-bootstrap-config"
          labels:
            app: helloworld
            version: v1
        spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingWithPluginManagementSpec.groovy

                        }
                    }
                    repositories {
                        gradlePluginPortal()
                    }
                }
            """
    
            when:
            fails("helloWorld")
    
            then:
            failureDescriptionContains("could not resolve plugin artifact 'foo:bar:1.0'")
        }
    
        def "succeeds build for resolvable custom artifact"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            main(NativeExecutableSpec) {
                binaries.all {
                    cppCompiler.define 'ENABLE_GREETING'
                }
            }
        }
    }
    """
    
            and:
            file("src/main/cpp/helloworld.cpp") << """
                #include <iostream>
    
                int main () {
                  #ifdef ENABLE_GREETING
                  std::cout << "Hello!";
                  #endif
                  return 0;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  4. docs/recipes.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
          fun run() {
            val request = Request.Builder()
                .url("https://publicobject.com/helloworld.txt")
                .build()
    
            client.newCall(request).execute().use { response ->
              if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  5. docs/features/https.md

                .sslSocketFactory(sslSocketFactory, trustManager)
                .build()
          }
    
          fun run() {
            val request = Request.Builder()
                .url("https://publicobject.com/helloworld.txt")
                .build()
    
            client.newCall(request).execute().use { response ->
              if (!response.isSuccessful) throw IOException("Unexpected code $response")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def help = events.operation("Apply plugin org.gradle.help-tasks to root project 'single'")
            def helloWorld = events.operation("Apply plugin org.gradle.hello-world to root project 'single'")
    
            help.parent == configureRootProject
            helloWorld.parent == applyBuildGradle
            helloWorld.descriptor.name == "Apply plugin org.gradle.hello-world"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

        def "accepts start of embedded build as end of group"() {
            def consoleOutput = """
    > Task :helloWorld
    Hello, World!
    
    > :otherBuild > :abc"""
    
            when:
            GroupedOutputFixture groupedOutput = new GroupedOutputFixture(LogContent.of(consoleOutput))
    
            then:
            groupedOutput.task(':helloWorld').output == 'Hello, World!'
        }
    
        def "accepts start of sub progress logger as end of group"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
Back to top