Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 357 for xHello (0.13 sec)

  1. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                    exampleClass = if (descriptor.componentType === ComponentType.LIBRARY) "Hello" else "Greeter"
                    sourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + ".cpp"
                    testSourceFile = (if (descriptor.componentType === ComponentType.LIBRARY) "hello" else "app") + "_test.cpp"
                    sourceFileTree = """        │   │   └── $sourceFile
            │   └── headers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. internal/grid/grid_test.go

    	// local to remote
    	remoteConn := local.Connection(remoteHost)
    	remoteConn.WaitForConnect(context.Background())
    	defer testlogger.T.SetErrorTB(t)()
    
    	t.Run("localToRemote", func(t *testing.T) {
    		const testPayload = "Hello Grid World!"
    
    		start := time.Now()
    		resp, err := remoteConn.Request(context.Background(), handlerTest, []byte(testPayload))
    		errFatal(err)
    		if string(resp) != testPayload {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/PrecompiledGroovyPluginsIntegrationTest.groovy

                include 'a', 'b', 'c'
            """
    
            when:
            succeeds("help")
    
            then:
            outputContains("hello from :")
            outputContains("hello from :a")
            outputContains("hello from :b")
            outputContains("hello from :c")
        }
    
        def "can apply a precompiled script plugin by id to a multi-project build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  4. src/crypto/ecdh/ecdh_test.go

    	}
    
    	goBin := testenv.GoToolPath(t)
    	run(goBin, "build", "-o", "hello.exe", "hello.go")
    	if out := run("./hello.exe"); out != "OK\n" {
    		t.Error("unexpected output:", out)
    	}
    
    	// List all text symbols under crypto/... and make sure there are some for
    	// P384, but none for the other curves.
    	var consistent bool
    	nm := run(goBin, "tool", "nm", "hello.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. platforms/core-runtime/io/src/test/groovy/org/gradle/internal/io/StreamByteBufferTest.groovy

            def out = byteBuffer.getOutputStream()
    
            when:
            if (preUseBuffer) {
                // check the case that buffer has been used before
                out.write('HELLO'.getBytes("UTF-8"))
                byteBuffer.readAsString("UTF-8") == 'HELLO'
                byteBuffer.readAsString() == ''
                byteBuffer.readAsString() == ''
            }
            out.write(TEST_STRING_BYTES)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 13:06:08 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/AbstractJavaCompileAvoidanceIntegrationSpec.groovy

            // Update the library class
            fixture.message = 'hello'
            fixture.writeSupportLibraryTo(file("b"))
    
            run(':c:run')
    
            then:
            skipped(":a:${language.compileTaskName}")
            executedAndNotSkipped(":b:${language.compileTaskName}")
            executedAndNotSkipped(":c:${language.compileTaskName}")
            outputContains('hello')
    
            when:
            run(':c:run')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

                .build()
    
            then:
            result.task(":helloWorld1").outcome == SUCCESS
            result.task(":helloWorldBuildSrc").outcome == SUCCESS
            result.output.contains "Hello world!1"
            result.output.contains "Hello world! (buildSrc)"
        }
    
        static class FileSubclass extends File {
            FileSubclass(File var1) {
                super(var1.absolutePath)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. docs/zh/docs/advanced/settings.md

        $ export MY_NAME="Wade Wilson"
    
        // 然后您可以与其他程序一起使用它,例如
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // 创建一个名为 MY_NAME 的环境变量
        $ $Env:MY_NAME = "Wade Wilson"
    
        // 与其他程序一起使用它,例如
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    ### 在 Python 中读取环境变量
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

            then:
            executedAndNotSkipped(':myTask1', ':myTask2', ':combined')
            outputContains('Hello, World!')
        }
    
        def "can zip tasks directly"() {
            buildFile << """
                tasks.register('myTask1', MyTask) {
                    text.set('Hello')
                }
                tasks.register('myTask2', MyTask) {
                    text.set('World')
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/crypto/tls/boring_test.go

    	msg, err := srv.readHandshake(nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	hello, ok := msg.(*clientHelloMsg)
    	if !ok {
    		t.Fatalf("unexpected message type %T", msg)
    	}
    
    	if !isBoringVersion(hello.vers) {
    		t.Errorf("client vers=%#x, want %#x (TLS 1.2)", hello.vers, VersionTLS12)
    	}
    	for _, v := range hello.supportedVersions {
    		if !isBoringVersion(v) {
    			t.Errorf("client offered disallowed version %#x", v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top