Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,979 for xHello (0.09 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. src/os/testdata/hello

    Hello, Gophers!...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 02 17:00:06 UTC 2020
    - 16 bytes
    - Viewed (0)
  4. src/io/ioutil/testdata/hello

    Hello, Gophers!...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 23:28:44 UTC 2017
    - 16 bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/hello.txt

    -- input --
    	Hello,
    	world
    
    	This is
    	a test.
    -- dump --
    Doc
    	Paragraph
    		Plain
    			"Hello,\n"
    			"world"
    	Paragraph
    		Plain
    			"This is\n"
    			"a test."
    -- gofmt --
    Hello,
    world
    
    This is
    a test.
    -- html --
    <p>Hello,
    world
    <p>This is
    a test.
    -- markdown --
    Hello, world
    
    This is a test.
    -- text --
    Hello, world
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 326 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/hg/hello.txt

    handle hg
    hg init
    
    hg add hello.go
    hg commit --user 'bwk' --date '2017-09-21T21:14:14-04:00' --message 'hello world'
    
    hg log -r ':' --template '{node|short} {desc|strip|firstline}\n'
    cmp stdout .hg-log
    
    -- .hg-log --
    e483a7d9f8c9 hello world
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 312 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/vcstest/bzr/hello.txt

    handle bzr
    
    env BZR_EMAIL='Russ Cox <******@****.***>'
    env EMAIL='Russ Cox <******@****.***>'
    
    bzr init-repo .
    
    bzr init b
    cd b
    cp ../hello.go .
    bzr add hello.go
    bzr commit --commit-time='2017-09-21 21:20:12 -0400' -m 'hello world'
    bzr push ..
    cd ..
    rm b
    
    bzr log
    cmp stdout .bzr-log
    
    -- .bzr-log --
    ------------------------------------------------------------
    revno: 1
    committer: Russ Cox <******@****.***>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 15:22:32 UTC 2023
    - 554 bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/hello.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      template:
        metadata:
          labels:
            app: hello
            tier: backend
            track: stable
        spec:
          containers:
            - name: hello
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 15:09:56 UTC 2021
    - 460 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/c/groovy/src/hello/c/hello.c

    #include <stdio.h>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      printf("Hello world!");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 92 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/variants/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      #ifdef FRENCH
      std::cout << "Bonjour monde!" << std::endl;
      #else
      std::cout << "Hello world!" << std::endl;
      #endif
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 190 bytes
    - Viewed (0)
Back to top