Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 355 for xHello (0.2 sec)

  1. src/cmd/go/testdata/script/reuse_git.txt

    go mod download -x -json vcs-test.golang.org/git/hello.git@latest
    stderr 'git( .*)* fetch'
    go clean -modcache
    
    # reuse go mod download vcstest/hello result
    go mod download -reuse=hello.json -x -json vcs-test.golang.org/git/hello.git@latest
    ! stderr 'git( .*)* fetch'
    stdout '"Reuse": true'
    stdout '"Version": "v0.0.0-20170922010558-fc3a09f3dc5c"'
    stdout '"VCS": "git"'
    stdout '"URL": ".*/git/hello"'
    ! stdout '"TagPrefix"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/api/plugins/JavaPluginIntegrationTest.groovy

                """.stripIndent()
    
            file("src/main/java/com/example/MyClass.java") << """
                package com.example;
    
                public class MyClass {
                    public void hello() {
                        System.out.println("Hello");
                    }
                }
                """.stripIndent()
    
            expect:
            succeeds('testResolve')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/strings/example_test.go

    }
    
    func ExampleTrim() {
    	fmt.Print(strings.Trim("¡¡¡Hello, Gophers!!!", "!¡"))
    	// Output: Hello, Gophers
    }
    
    func ExampleTrimSpace() {
    	fmt.Println(strings.TrimSpace(" \t\n Hello, Gophers \n\t\r\n"))
    	// Output: Hello, Gophers
    }
    
    func ExampleTrimPrefix() {
    	var s = "¡¡¡Hello, Gophers!!!"
    	s = strings.TrimPrefix(s, "¡¡¡Hello, ")
    	s = strings.TrimPrefix(s, "¡¡¡Howdy, ")
    	fmt.Print(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject_test.go

    		},
    		{
    			in:   "hello.yaml",
    			want: "hello-tproxy.yaml.injected",
    			mesh: func(m *meshapi.MeshConfig) {
    				m.DefaultConfig.InterceptionMode = meshapi.ProxyConfig_TPROXY
    			},
    		},
    		{
    			in:       "hello.yaml",
    			want:     "hello-always.yaml.injected",
    			setFlags: []string{"values.global.imagePullPolicy=Always"},
    		},
    		{
    			in:       "hello.yaml",
    			want:     "hello-never.yaml.injected",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

            app.library.writeSources(file("src/hello"))
            app.greetingsHeader.writeToDir(file("src/hello"))
            app.greetingsSources*.writeToDir(file("src/greetings"))
    
            and:
            buildFile << """
    model {
        components {
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib library: 'hello'
                }
            }
            hello(NativeLibrarySpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            and:
            exeProject.projectConfigurations['debug'].includePath == filePath("src/main/headers", "../lib/src/hello/headers")
            helloDllProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
            helloLibProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_tls13.go

    		// outer hello and compressed, need to be copied to the outer hello, so
    		// they can be properly decompressed by the server. For now, the only
    		// extension which may have changed is keyShares.
    		hs.hello.keyShares = hello.keyShares
    		hs.echContext.innerHello = hello
    		if err := transcriptMsg(hs.echContext.innerHello, hs.echContext.innerTranscript); err != nil {
    			return err
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/ResponseBodyJvmTest.kt

        assertThat(body.string()).isEqualTo("hello")
      }
    
      @Test
      fun stringBomUtf8() {
        val body = body("efbbbf68656c6c6f")
        assertThat(body.string()).isEqualTo("hello")
      }
    
      @Test
      fun stringBomUtf16Be() {
        val body = body("feff00680065006c006c006f")
        assertThat(body.string()).isEqualTo("hello")
      }
    
      @Test
      fun stringBomUtf16Le() {
        val body = body("fffe680065006c006c006f00")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            app.greeter.writeToProject(file("hello"))
            app.main.writeToProject(file("app"))
    
            expect:
            succeeds ":app:assemble"
    
            result.assertTasksExecuted(tasks(':hello').debug.allToLink, tasks(':app').debug.allToInstall, ":app:assemble")
            executable("app/build/exe/main/debug/app").assertExists()
            sharedLibrary("hello/build/lib/main/debug/hello").assertExists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. src/cmd/link/link_test.go

    		}
    		if string(out) != "hello\n" {
    			t.Errorf("unexpected output (%s):\n%s", mode, out)
    		}
    	}
    }
    
    const testTrampCgoSrc = `
    package main
    
    // #include <stdio.h>
    // void CHello() { printf("hello\n"); fflush(stdout); }
    import "C"
    
    func main() {
    	C.CHello()
    }
    `
    
    func TestTrampolineCgo(t *testing.T) {
    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