Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 748 for Hellox (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/vcstest/git/hello.txt

    env GIT_COMMITTER_EMAIL='******@****.***'
    
    git init
    
    at 2017-09-21T21:05:58-04:00
    git add hello.go
    git commit -a -m 'hello'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    fc3a09f (HEAD -> master) hello
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 412 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/svn/hello.txt

    [!GOOS:windows] svn checkout file://$ROOT .
    
    svn add hello.go
    svn commit --file MSG
    svn propset svn:author 'rsc' --revprop -r1
    svn propset svn:date '2017-09-22T01:12:45.861368Z' --revprop -r1
    
    svn update
    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    cmp stdout .svn-log
    
    -- .checkout/MSG --
    hello world
    
    -- .checkout/hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/src/hello/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      std::cout << "Hello world!" << std::endl;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 111 bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/testdata/deployment/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 Jun 15 15:02:17 UTC 2023
    - 460 bytes
    - Viewed (0)
Back to top