Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 234 for Hellox (0.09 sec)

  1. src/regexp/all_test.go

    	{"hello, (.+)", "goodbye, ${1}", "hello, world", "goodbye, world"},
    	{"hello, (.+)", "goodbye, $1x", "hello, world", "goodbye, "},
    	{"hello, (.+)", "goodbye, ${1}x", "hello, world", "goodbye, worldx"},
    	{"hello, (.+)", "<$0><$1><$2><$3>", "hello, world", "<hello, world><world><><>"},
    	{"hello, (?P<noun>.+)", "goodbye, $noun!", "hello, world", "goodbye, world!"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

        }
    
        def "forwards queued input events to stdin handler until end of input received"() {
            StdinHandler handler = Mock()
            def input1 = new ForwardInput("hello".bytes)
            def input2 = new ForwardInput("hello".bytes)
            def closeInput = new CloseInput()
            def received = new CountDownLatch(1)
    
            when:
            daemonConnection.onStdin(handler)
            connection.queueIncoming(input1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                import org.gradle.tooling.provider.model.ToolingModelBuilderRegistry
                import javax.inject.Inject
    
                task hello {
                    doLast {
                        println "hello"
                    }
                }
    
                task bye(dependsOn: hello) {
                    doLast {
                        println "bye"
                    }
                }
    
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/log/slog/doc.go

    parsed by machine. This statement:
    
    	logger.Info("hello", "count", 3)
    
    produces this output:
    
    	time=2022-11-08T15:28:26.000-05:00 level=INFO msg=hello count=3
    
    The package also provides [JSONHandler], whose output is line-delimited JSON:
    
    	logger := slog.New(slog.NewJSONHandler(os.Stdout, nil))
    	logger.Info("hello", "count", 3)
    
    produces this output:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/en/docs/advanced/settings.md

        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <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: Sat May 18 23:43:13 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top