Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 407 for xHello (0.57 sec)

  1. src/archive/tar/strconv_test.go

    		{"foo", "b=\nar=\n==\x00", "18 foo=b=\nar=\n==\x00\n", true},
    		{"foo", "hello9 foo=ba\nworld", "27 foo=hello9 foo=ba\nworld\n", true},
    		{"☺☻☹", "日a本b語ç", "27 ☺☻☹=日a本b語ç\n", true},
    		{"xhello", "\x00world", "17 xhello=\x00world\n", true},
    		{"path", "null\x00", "", false},
    		{"null\x00", "value", "", false},
    		{paxSchilyXattr + "key", "null\x00", "26 SCHILY.xattr.key=null\x00\n", true},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 09 05:28:50 UTC 2021
    - 14K bytes
    - Viewed (0)
  2. src/strings/replace_test.go

    	)
    
    	// Issue 6659 cases (more single string replacer)
    
    	noHello := NewReplacer("Hello", "")
    	testCases = append(testCases,
    		testCase{noHello, "Hello", ""},
    		testCase{noHello, "Hellox", "x"},
    		testCase{noHello, "xHello", "x"},
    		testCase{noHello, "xHellox", "xx"},
    	)
    
    	// No-arg test cases.
    
    	nop := NewReplacer()
    	testCases = append(testCases,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

    metadata:
      creationTimestamp: null
      name: hello-v1
    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
          version: v1
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. pkg/log/scope_test.go

    		{
    			f:   func() { s.Infof("Hello") },
    			pat: timePattern + "\tinfo\ttestScope\tHello",
    		},
    		{
    			f:   func() { s.Infof("%s", "Hello") },
    			pat: timePattern + "\tinfo\ttestScope\tHello",
    		},
    
    		{
    			f:   func() { s.Warn("Hello") },
    			pat: timePattern + "\twarn\ttestScope\tHello",
    		},
    		{
    			f:   func() { s.Warnf("Hello") },
    			pat: timePattern + "\twarn\ttestScope\tHello",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/debug/elf/testdata/hello-world-core.gz

    hello-world-core...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 12.4K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppIncrementalBuildIntegrationTest.groovy

            where:
            include             | text
            'HELLO'             | '''
                #define _HELLO(X) #X
                #define HELLO _HELLO(hello.h)
                #include HELLO
            '''
            '_HELLO(hello . h)' | '''
                #define _HELLO(X) #X
                #include _HELLO(hello.h)
            '''
            'MISSING'           | '''
                #ifdef MISSING
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

            and:
            file("src/hello/cpp/hello.cpp") << """
                #include <iostream>
    
                void hello(const char* str) {
                  #ifdef ENABLE_GREETING
                  std::cout << str;
                  #endif
                }
            """
    
            and:
            file("src/hello/headers/hello.h") << """
                void hello(const char* str);
            """
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. src/text/template/parse/parse_test.go

    	{"simple range", "{{range .X}}hello{{end}}", noError,
    		`{{range .X}}"hello"{{end}}`},
    	{"chained field range", "{{range .X.Y.Z}}hello{{end}}", noError,
    		`{{range .X.Y.Z}}"hello"{{end}}`},
    	{"nested range", "{{range .X}}hello{{range .Y}}goodbye{{end}}{{end}}", noError,
    		`{{range .X}}"hello"{{range .Y}}"goodbye"{{end}}{{end}}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    			in:   hex("a25f426865436c6c6fff015f416844656c6c6fff02"), // {(_ 'he', 'llo'): 1, (_ 'h', 'ello'): 2}
    			into: struct {
    				Hello int `json:"hello"`
    			}{},
    			assertOnError: assertIdenticalError(&cbor.DupMapKeyError{Key: string("hello"), Index: 1}),
    		},
    		{
    			name:          "reject two identical indefinite-length byte string keys split into chunks differently into map",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

            def appProject = xcodeProject("app/app.xcodeproj").projectFile
            appProject.indexTarget.getBuildSettings().SWIFT_INCLUDE_PATHS == toSpaceSeparatedList(file("hello/build/modules/main/debug"), file("log/build/modules/main/debug"))
            def helloProject = xcodeProject("hello/hello.xcodeproj").projectFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top