Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,377 for Hellox (0.37 sec)

  1. 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)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            def header3 = includeDir.createFile("hello3.h")
            def header4 = includeDir.createFile("hello4.h")
            sourceFile << """
                #define HEADER1_NAME1 "hello1.h"
                #define HEADER1_NAME2 "hello2.h"
                #define HEADER2_NAME1 "hello3.h"
                #define HEADER2_NAME2 "hello4.h"
                #if 0
                #define HEADER HEADER1_
                #define NAME NAME1
                #else
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/CacheProjectIntegrationTest.groovy

            testBuild("hello1", "Hello 1")
        }
    
        @Test
        void "caches incremental build state"() {
            createLargeBuildScript()
            testBuild("hello1", "Hello 1")
            TestFile.Snapshot artifactsCacheSnapshot = artifactsCache.snapshot()
    
            testBuild("hello1", "Hello 1")
            artifactsCache.assertHasNotChangedSince(artifactsCacheSnapshot)
    
            testBuild("hello2", "Hello 2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/config/analysis/analyzers/testdata/virtualservice_destinationhosts.yaml

      name: hello
      namespace: hello2
    spec:
      hosts: [hello]
      http:
        - route:
            - destination:
                host: hello.hello.svc.cluster.local
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      # This is cross-namespace, but not a problem, details has explicit networking.istio.io/exportTo=hello1,hello2,.
      name: hello
      namespace: hello
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 21 21:37:53 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/note_test.go

    	defer tg.cleanup()
    	tg.parallel()
    
    	tg.tempFile("hello.go", `package main; func main() { print("hello, world\n") }`)
    	const buildID = "TestNoteReading-Build-ID"
    	tg.run("build", "-ldflags", "-buildid="+buildID, "-o", tg.path("hello.exe"), tg.path("hello.go"))
    	id, err := buildid.ReadFile(tg.path("hello.exe"))
    	if err != nil {
    		t.Fatalf("reading build ID from hello binary: %v", err)
    	}
    	if id != buildID {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top