Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,297 for hello12 (0.21 sec)

  1. src/cmd/cgo/internal/testerrors/ptr_test.go

    		c:       `void f12(char** parg) {}`,
    		support: `var hello12 = [...]C.char{'h', 'e', 'l', 'l', 'o'}`,
    		body:    `parg := [1]*C.char{&hello12[0]}; C.f12(&parg[0])`,
    		fail:    false,
    	},
    	{
    		// Passing the address of a static variable with
    		// pointers does matter.
    		name:    "var1",
    		c:       `void f13(char*** parg) {}`,
    		support: `var hello13 = [...]*C.char{new(C.char)}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. platforms/documentation/docs/src/snippets/native-binaries/pre-compiled-headers/groovy/src/hello/headers/hello.h

    #ifndef HELLO_H
    #define HELLO_H
    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    class Greeter {
        public:
        void LIB_FUNC hello();
    };
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  6. security/pkg/server/ca/authenticate/xfcc_authenticator_test.go

    			// nolint lll
    			xfccHeader: `Hash=hash;Cert="-----BEGIN%20CERTIFICATE-----%0cert%0A-----END%20CERTIFICATE-----%0A";Subject="CN=hello,OU=hello,O=Acme\, Inc.";URI=spiffe://mesh.example.com/ns/firstns/sa/firstsa;DNS=hello.west.example.com;DNS=hello.east.example.com,By=spiffe://mesh.example.com/ns/hellons/sa/hellosa;Hash=again;Subject="";URI=spiffe://mesh.example.com/ns/otherns/sa/othersa`,
    			caller: &security.Caller{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 17:05:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top