Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 148 for HelloWorld (0.14 sec)

  1. src/cmd/compile/internal/ssa/testdata/scopes.gdb-opt.nexts

    58:				if i == f {
    62:				sleepytime()
    56:			for i := 0; i <= 5; i++ {
    58:				if i == f {
    62:				sleepytime()
    56:			for i := 0; i <= 5; i++ {
    58:				if i == f {
    59:					fmt.Println("foo")
    64:			helloworld()
    66:	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/LoggingInterceptors.java

          .addInterceptor(new LoggingInterceptor())
          .build();
    
      public void run() throws Exception {
        Request request = new Request.Builder()
            .url("https://publicobject.com/helloworld.txt")
            .build();
    
        Response response = client.newCall(request).execute();
        response.body().close();
      }
    
      private static class LoggingInterceptor implements Interceptor {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Jan 01 15:55:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/testdata/scopes.dlv-dbg.nexts

    57:				j += j * (j ^ 3) / 100
    58:				if i == f {
    62:				sleepytime()
    56:			for i := 0; i <= 5; i++ {
    57:				j += j * (j ^ 3) / 100
    58:				if i == f {
    59:					fmt.Println("foo")
    60:					break
    64:			helloworld()
    66:	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/AsynchronousGet.java

    public final class AsynchronousGet {
      private final OkHttpClient client = new OkHttpClient();
    
      public void run() throws Exception {
        Request request = new Request.Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build();
    
        client.newCall(request).enqueue(new Callback() {
          @Override public void onFailure(Call call, IOException e) {
            e.printStackTrace();
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun May 22 01:29:42 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  5. samples/guide/src/main/java/okhttp3/recipes/kt/CacheResponse.kt

              // 1 MiB.
              maxSize = 10L * 1024L * 1024L,
            ),
          )
          .build()
    
      fun run() {
        val request =
          Request.Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build()
    
        val response1Body =
          client.newCall(request).execute().use {
            if (!it.isSuccessful) throw IOException("Unexpected code $it")
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. samples/unixdomainsockets/src/main/java/okhttp3/unixdomainsockets/ClientAndServer.java

            .protocols(Collections.singletonList(Protocol.H2_PRIOR_KNOWLEDGE))
            .build();
    
        Request request = new Request.Builder()
            .url("http://publicobject.com/helloworld.txt")
            .build();
    
        try (Response response = client.newCall(request).execute()) {
          System.out.println(response.body().string());
        }
    
        server.shutdown();
        socketFile.delete();
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 24 03:46:30 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/scopes.gdb-dbg.nexts

    57:				j += j * (j ^ 3) / 100
    58:				if i == f {
    62:				sleepytime()
    56:			for i := 0; i <= 5; i++ {
    57:				j += j * (j ^ 3) / 100
    58:				if i == f {
    59:					fmt.Println("foo")
    60:					break
    64:			helloworld()
    66:	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top