Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 3,106 for wereld (0.13 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/AbstractDevelocityInputIgnoringServiceIntegrationTest.groovy

            """
    
            when:
            succeeds("check")
    
            then:
            outputContains("Hello, world")
        }
    
        def "an execute external process with Gradle API at configuration time"() {
            given:
            ShellScript script = ShellScript.builder().printText("Hello, world").writeTo(testDirectory, "script")
    
            buildFile << """
                import ${Inject.name}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 16:27:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/GroovyDocIntegrationTest.groovy

            overviewSummary.exists()
            overviewSummary.text.contains("Hello World")
    
            when:
            overviewFile.text = """
    <b>Goodbye World</b>
    """
            and:
            succeeds "groovydoc"
            then:
            result.assertTaskNotSkipped(":groovydoc")
            overviewSummary.text.contains("Goodbye World")
        }
    
        @Issue(["GRADLE-3174", "GRADLE-3463"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_wsgi/test_tutorial001.py

        response = client.get("/v1/")
        assert response.status_code == 200, response.text
        assert response.text == "Hello, World from Flask!"
    
    
    def test_app():
        response = client.get("/v2")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 09 18:06:12 UTC 2020
    - 436 bytes
    - Viewed (0)
  4. tests/test_orjson_response_class.py

    @app.get("/orjson_non_str_keys")
    def get_orjson_non_str_keys():
        key = quoted_name(value="msg", quote=False)
        return {key: "Hello World", 1: 1}
    
    
    client = TestClient(app)
    
    
    def test_orjson_non_str_keys():
        with client:
            response = client.get("/orjson_non_str_keys")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Sep 02 10:17:31 UTC 2022
    - 562 bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromMultipleCustomPluginRepositorySpec.groovy

                //this simulates pluginA having a dependency on the hello world plugin
                buildscript {
                    dependencies {
                        classpath "org.gradle:gradle-hello-world-plugin:0.2"
                    }
                }
                plugins {
                  id "$pluginA" version "1.0"
                }
                apply plugin: "org.gradle.hello-world"
            """
    
            when:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            file << "Hello world"
            def link = rootDir.file("a/d")
            link.createLink(dir)
    
            when:
            def visited = walkDirForPaths(walkerInstance, rootDir, new PatternSet())
    
            then:
            visited.contains(file.absolutePath)
            visited.contains(link.file("c.txt").absolutePath)
            link.file("c.txt").text == "Hello world"
    
            cleanup:
            link.delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. test/crlf.go

    	prog = strings.Replace(prog, "CR", "\r", -1)
    	fmt.Print(prog)
    }
    
    var prog = `
    package main
    CR
    
    import "fmt"
    
    var CR s = "hello\n" + CR
    	" world"CR
    
    var t = BQhelloCR
     worldBQ
    
    var u = BQhCReCRlCRlCRoCR
     worldBQ
    
    var golden = "hello\n world"
    
    func main() {
    	if s != golden {
    		fmt.Printf("s=%q, want %q", s, golden)
    	}
    	if t != golden {
    		fmt.Printf("t=%q, want %q", t, golden)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 15:45:43 UTC 2012
    - 782 bytes
    - Viewed (0)
  8. src/runtime/mstats.go

    	LastGC uint64
    
    	// PauseTotalNs is the cumulative nanoseconds in GC
    	// stop-the-world pauses since the program started.
    	//
    	// During a stop-the-world pause, all goroutines are paused
    	// and only the garbage collector can run.
    	PauseTotalNs uint64
    
    	// PauseNs is a circular buffer of recent GC stop-the-world
    	// pause times in nanoseconds.
    	//
    	// The most recent pause is at PauseNs[(NumGC+255)%256]. In
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/testing/iotest/reader_test.go

    // license that can be found in the LICENSE file.
    
    package iotest
    
    import (
    	"bytes"
    	"errors"
    	"io"
    	"strings"
    	"testing"
    )
    
    func TestOneByteReader_nonEmptyReader(t *testing.T) {
    	msg := "Hello, World!"
    	buf := new(bytes.Buffer)
    	buf.WriteString(msg)
    
    	obr := OneByteReader(buf)
    	var b []byte
    	n, err := obr.Read(b)
    	if err != nil || n != 0 {
    		t.Errorf("Empty buffer read returned n=%d err=%v", n, err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 07:03:10 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_executor_test.go

    	ch, quit, oe := setup()
    	for i := 0; i < numPluginsToRegister; i++ {
    		socketPath := fmt.Sprintf("%s/plugin-%d.sock", socketDir, i)
    		oe.RegisterPlugin(socketPath, time.Now(), nil /* plugin handlers */, nil /* actual state of the world updator */)
    	}
    	if !isOperationRunConcurrently(ch, quit, numPluginsToRegister) {
    		t.Fatalf("Unable to start register operations in Concurrent for plugins")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top