Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,996 for ello (0.23 sec)

  1. src/cmd/go/internal/work/exec_test.go

    	"testing"
    	"time"
    	"unicode/utf8"
    )
    
    func TestEncodeArgs(t *testing.T) {
    	t.Parallel()
    	tests := []struct {
    		arg, want string
    	}{
    		{"", ""},
    		{"hello", "hello"},
    		{"hello\n", "hello\\n"},
    		{"hello\\", "hello\\\\"},
    		{"hello\nthere", "hello\\nthere"},
    		{"\\\n", "\\\\\\n"},
    	}
    	for _, test := range tests {
    		if got := encodeArg(test.arg); got != test.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 13:15:42 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_vendor.txt

    # In GOPATH mode, vendored packages can replace std packages.
    env GO111MODULE=off
    cd vend/hello
    go test -v
    stdout TestMsgInternal
    stdout TestMsgExternal
    
    # In module mode, they cannot.
    env GO111MODULE=on
    ! go test -mod=vendor
    stderr 'undefined: strings.Msg'
    
    -- vend/hello/go.mod --
    module vend/hello
    
    go 1.16
    -- vend/hello/hello.go --
    package main
    
    import (
    	"fmt"
    	"strings" // really ../vendor/strings
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1000 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/helloEnhanced/kotlin/build.gradle.kts

    tasks.register("hello") {
        doLast {
            println("Hello Earth")
        }
    }
    tasks.named("hello") {
        doFirst {
            println("Hello Venus")
        }
    }
    tasks.named("hello") {
        doLast {
            println("Hello Mars")
        }
    }
    tasks.named("hello") {
        doLast {
            println("Hello Jupiter")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 305 bytes
    - Viewed (0)
  4. src/html/template/transition_test.go

    	tests := []struct {
    		s, tag string
    		want   int
    	}{
    		{"", "tag", -1},
    		{"hello </textarea> hello", "textarea", 6},
    		{"hello </TEXTarea> hello", "textarea", 6},
    		{"hello </textAREA>", "textarea", 6},
    		{"hello </textarea", "textareax", -1},
    		{"hello </textarea>", "tag", -1},
    		{"hello tag </textarea", "tag", -1},
    		{"hello </tag> </other> </textarea> <other>", "textarea", 22},
    		{"</textarea> <other>", "textarea", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 30 16:22:29 UTC 2015
    - 1.7K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            "direct"     | "\$.components.hello"
            "map"        | "library: 'hello'"
        }
    
        @ToBeFixedForConfigurationCache
        def "can use map #notationName notation to reference library dependency of binary"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

        serverReaderWithCompression.processNextFrame()
        callback.assertTextMessage("Hello")
      }
    
      @Test fun serverWithCompressionSimpleCompressedHello() {
        data.write("c18760b420bb92fced72a9b320".decodeHex()) // Hello
        serverReaderWithCompression.processNextFrame()
        callback.assertTextMessage("Hello")
      }
    
      @Test fun clientFramePayloadShort() {
        data.write("817E000548656c6c6f".decodeHex()) // Hello
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/helloEnhanced/groovy/build.gradle

    tasks.register('hello') {
        doLast {
            println 'Hello Earth'
        }
    }
    tasks.named('hello') {
        doFirst {
            println 'Hello Venus'
        }
    }
    tasks.named('hello') {
        doLast {
            println 'Hello Mars'
        }
    }
    tasks.named('hello') {
        doLast {
            println 'Hello Jupiter'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

                                ${helloWorldApp.sourceType}.lib library: "hello"
                            }
                        }
                        hello(NativeLibrarySpec)
                    }
                }
            """
    
            and:
            helloWorldApp.executable.writeSources(file("src/main"))
            helloWorldApp.library.writeSources(file("src/hello"))
    
            when:
            run "installMainExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryApiDependenciesIntegrationTest.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 Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello.yaml.0.mesh.gen.yaml

    John Howard <******@****.***> 1709830758 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 07 16:59:18 UTC 2024
    - 191 bytes
    - Viewed (0)
Back to top