Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for HelloWorld (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

                .withDebug(debug)
    
            gradleProvider.applyTo(gradleRunner)
            gradleRunner
        }
    
        static String helloWorldTask() {
            """
            task helloWorld {
                doLast {
                    println 'Hello world!'
                }
            }
            """
        }
    
        static boolean isCompatibleVersion(String minCompatibleVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    		statPrefix:                cc.StatPrefix(),
    		isWaypoint:                true,
    		policySvc:                 svc,
    	}
    	// See https://github.com/grpc/grpc-web/tree/master/net/grpc/gateway/examples/helloworld#configure-the-proxy
    	if cc.port.Protocol.IsHTTP2() {
    		httpOpts.connectionManager.Http2ProtocolOptions = &core.Http2ProtocolOptions{}
    	}
    
    	if features.HTTP10 || enableHTTP10(lb.node.Metadata.HTTP10) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    		port:                      int(cc.port.TargetPort),
    		statPrefix:                cc.StatPrefix(),
    		hbone:                     cc.hbone,
    	}
    	// See https://github.com/grpc/grpc-web/tree/master/net/grpc/gateway/examples/helloworld#configure-the-proxy
    	if cc.port.Protocol.IsHTTP2() {
    		httpOpts.connectionManager.Http2ProtocolOptions = &core.Http2ProtocolOptions{}
    	}
    
    	if features.HTTP10 || enableHTTP10(lb.node.Metadata.HTTP10) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. src/cmd/link/link_test.go

    		t.Fatalf("build failed: %v\n%s", err, out)
    	}
    
    	fi, err := os.Stat(exe)
    	if err != nil {
    		t.Fatalf("failed to stat output file: %v", err)
    	}
    
    	// The test program is not much different from a helloworld, which is
    	// typically a little over 1 MB. We allow 5 MB. If the bad stmp is live,
    	// it will be over 10 MB.
    	const want = 5 << 20
    	if got := fi.Size(); got > want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top