Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 407 for xHello (0.12 sec)

  1. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

                public class Hello {
                    public static void main(String... args) {
                        System.out.println("Hello World!");
                    }
                }
            """
        static final String CHANGED_HELLO_WORLD = """
                public class Hello {
                    public static void main(String... args) {
                        System.out.println("Hello World with Changes!");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    ====
    include::sample[dir="snippets/ant/hello/kotlin",files="build.gradle.kts"]
    include::sample[dir="snippets/ant/hello/groovy",files="build.gradle"]
    ====
    
    ====
    include::sample[dir="snippets/ant/hello/groovy",files="build.xml"]
    ====
    
    ----
    $ gradle hello
    include::{snippetsPath}/ant/hello/tests/antHello.out[]
    ----
    
    You can add a task that depends on an Ant target:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/settings.md

        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "πŸšͺ πŸ“‹"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Use it with other programs, like
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    ### ✍ πŸ‡¨πŸ‡» {🐍
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. src/log/slog/logger_test.go

    	t.Run("Info", func(t *testing.T) {
    		wantAllocs(t, 0, func() { Info("hello") })
    	})
    	t.Run("Error", func(t *testing.T) {
    		wantAllocs(t, 0, func() { Error("hello") })
    	})
    	t.Run("logger.Info", func(t *testing.T) {
    		wantAllocs(t, 0, func() { dl.Info("hello") })
    	})
    	t.Run("logger.Log", func(t *testing.T) {
    		wantAllocs(t, 0, func() { dl.Log(ctx, LevelDebug, "hello") })
    	})
    	t.Run("2 pairs", func(t *testing.T) {
    		s := "abc"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  5. internal/event/config_test.go

    		filterRuleList FilterRuleList
    		expectedResult string
    	}{
    		{FilterRuleList{}, ""},
    		{FilterRuleList{[]FilterRule{{"prefix", "Hello/δΈ–η•Œ"}}}, "Hello/δΈ–η•Œ*"},
    		{FilterRuleList{[]FilterRule{{"suffix", "foo/bar"}}}, "*foo/bar"},
    		{FilterRuleList{[]FilterRule{{"prefix", "Hello/δΈ–η•Œ"}, {"suffix", "foo/bar"}}}, "Hello/δΈ–η•Œ*foo/bar"},
    	}
    
    	for i, testCase := range testCases {
    		result := testCase.filterRuleList.Pattern()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Dec 05 10:16:33 UTC 2023
    - 29K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

            'File'      | RegularFileProperty | 'fileProperty'      | 'file' | '.getAsFile().get().text = "Hello"'
            'Directory' | DirectoryProperty   | 'directoryProperty' | 'dir'  | '''.file('output.txt').get().getAsFile().text = "Hello"'''
        }
    
        def "nested FileCollection input adds a task dependency"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. pkg/log/config_test.go

    	}
    
    	defaultScope.Error("HELLO")
    	Sync() // nolint: errcheck
    
    	content, err := os.ReadFile(file)
    	if err != nil {
    		t.Errorf("Got failure '%v', expecting success", err)
    	}
    
    	lines := strings.Split(string(content), "\n")
    	if !strings.Contains(lines[0], "HELLO") {
    		t.Errorf("Expecting for first line of log to contain HELLO, got %s", lines[0])
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

                            from components.java
                        }
                    }
                }
            """
            file("src/main/java/hello/Hello.java") << """package hello;
                public class Hello {}
            """
    
            when:
            succeeds "publish", "-PjarEnabled=true"
    
            then:
            file("build/repo/org/gradle/test/1.0/test-1.0.jar").exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/vet/testdata/print/print.go

    	f := new(ptrStringer)
    	f.Warn(0, "%s", "hello", 3)           // ERROR "Warn call has possible Printf formatting directive %s"
    	f.Warnf(0, "%s", "hello", 3)          // ERROR "Warnf call needs 1 arg but has 2 args"
    	f.Warnf(0, "%r", "hello")             // ERROR "Warnf format %r has unknown verb r"
    	f.Warnf(0, "%#s", "hello")            // ERROR "Warnf format %#s has unrecognized flag #"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/settings.md

        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
        // Erstelle eine Umgebungsvariable MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
        // Verwende sie mit anderen Programmen, etwa
        $ echo "Hello $Env:MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:17:14 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top