Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for helloWorld1 (0.14 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleVerboseBasicFunctionalTest.groovy

                }
                
                task silence {}
                
                task all {
                    dependsOn helloWorld, byeWorld, silence
                }
            """
            when:
            succeeds('all')
    
            then:
            result.groupedOutput.task(':helloWorld').output == helloWorldMessage
            result.groupedOutput.task(':byeWorld').output == byeWorldMessage
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerPluginClasspathInjectionEndUserIntegrationTest.groovy

                    }
    
                    def "execute helloWorld task"() {
                        given:
                        buildFile << 'apply plugin: "$plugin.id"'
    
                        when:
                        def result = GradleRunner.create()
                            .withProjectDir(testProjectDir)
                            .withArguments('helloWorld')
                            .withDebug($debug)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gopath_install.txt

    env GOPATH= # reset to default ($HOME/go, which does not exist)
    env GOBIN=
    ! go install go-cmd-test/helloworld.go
    stderr '^go: no install location for \.go files listed on command line \(GOBIN not set\)$'
    
    # With $GOBIN set, should install there.
    env GOBIN=$WORK/bin1
    go install go-cmd-test/helloworld.go
    exists $GOBIN/helloworld$GOEXE
    
    # We can't assume that we can write to GOROOT, because it may not be writable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/PluginUnderTest.groovy

                    void apply(Project project) {
                        project.task('helloWorld$suffix', type: HelloWorld$suffix)
                    }
                }
            """
    
            projectDir.file("src/main/groovy/org/gradle/test/HelloWorld${suffix}.groovy") << """
                package org.gradle.test
    
                import org.gradle.api.DefaultTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerResultIntegrationTest.groovy

            given:
            buildFile << """
                task helloWorld
    
                task byeWorld {
                    onlyIf {
                        false
                    }
                }
            """
    
            when:
            def result = runner('helloWorld', 'byeWorld')
                .build()
    
            then:
            result.tasks.collect { it.path } == [':helloWorld', ':byeWorld']
            result.taskPaths(SUCCESS) == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerCaptureOutputIntegrationTest.groovy

            given:
            def standardOutput = new StringWriter()
            def standardError = new StringWriter()
            buildScript helloWorldWithStandardOutputAndError()
    
            when:
            def result = runner('helloWorld', "-d", "-s")
                .forwardStdOutput(standardOutput)
                .forwardStdError(standardError)
                .build()
    
            then:
            result.output.findAll(OUT).size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows_test.go

    package main
    
    import "C"
    import (
    	"fmt"
    )
    
    //export HelloWorld
    func HelloWorld() {
    	fmt.Println("Hello World")
    }
    
    func main() {}
    `
    	dllsrc := filepath.Join(tmpdir, "helloworld.go")
    	err := os.WriteFile(dllsrc, []byte(dlltext), 0644)
    	if err != nil {
    		t.Fatal(err)
    	}
    	dll := filepath.Join(tmpdir, "helloworld.dll")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  8. subprojects/core/src/crossVersionTest/groovy/org/gradle/testfixtures/ProjectBuilderCrossVersionIntegrationTest.groovy

                            project.tasks.create('helloWorld', HelloWorld)
                        }
                    }
                """
    
                file('src/main/groovy/org/gradle/hello/HelloWorld.groovy') << """
                    package org.gradle.hello
    
                    import org.gradle.api.DefaultTask
                    import org.gradle.api.tasks.TaskAction
    
                    class HelloWorld extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. tools/docker.yaml

    # This folder is then passed as the docker context. This avoids complex .dockerignore or large context loads.
    
    # Example image config
    example:
    - name: helloworld # Name of the image. Will end up pushed to <HUB>/helloworld:<TAG>
      dockerfile: helloworld/Dockerfile.proxyv2
      files:
      # Include a static file
      # Inside the Dockerfile, this is referenced by the base name (README.md), not the full name.
      - samples/README.md
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. test/linkmain_run.go

            os.Exit(1)
        }
        os.WriteFile(tmp("importcfg"), importcfg, 0644)
    
    	// helloworld.go is package main
        run("go tool compile -p=main -importcfg", tmp("importcfg"), "-o", tmp("linkmain.o"), "helloworld.go")
    	run("go tool compile -p=main -importcfg", tmp("importcfg"), " -pack -o", tmp("linkmain.a"), "helloworld.go")
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.o"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top