Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 529 for testfn (0.17 sec)

  1. docs/de/docs/how-to/custom-docs-ui-assets.md

    ### Eine *Pfadoperation* erstellen, um statische Dateien zu testen
    
    Um nun testen zu können, ob alles funktioniert, erstellen Sie eine *Pfadoperation*:
    
    ```Python hl_lines="39-41"
    {!../../../docs_src/custom_docs_ui/tutorial002.py!}
    ```
    
    ### Benutzeroberfläche, mit statischen Dateien, testen
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_cgo_extra_file.txt

    var b bool
    
    func F() {
    	if b {
    		for {
    		}
    	}
    	C.f()
    }
    -- x_test.go --
    package p_test
    
    import (
    	. "cgocover4"
    	"testing"
    )
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 560 bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

            output == "Here \n\n\\\n\\\n\\\n\\\n\\\n\\\n."
        }
    
        def "replaces #description at the start of content"() {
            when:
            input = testIn
    
            then:
            output == testOut
    
            where:
            description | testIn | testOut
            "line comment" | "// Comment on first line\nAnother line" | "\nAnother line"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/io/fs/readdir_test.go

    	}
    
    	for _, test := range tests {
    		test := test
    		t.Run(test.path, func(t *testing.T) {
    			fi, err := Stat(testFs, test.path)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			dirEntry := FileInfoToDirEntry(fi)
    			if g, w := dirEntry.Type(), test.wantMode; g != w {
    				t.Errorf("FileMode mismatch: got=%v, want=%v", g, w)
    			}
    			if g, w := dirEntry.Name(), test.path; g != w {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 16:25:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_go111module_cache.txt

    env GO111MODULE=on
    go mod init foo
    go test
    stdout ^ok\s+foo
    env GO111MODULE=off
    go test
    stdout ^ok\s+
    ! stdout ^ok\s+(cache)$
    
    -- main_test.go --
    package main
    
    import "testing"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 15 16:28:58 UTC 2019
    - 206 bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/testdata/harness.go

    	f.writeCount = 0
    	f.writeLimit = lim
    	f.slws = slicewriter.WriteSeeker{}
    }
    
    func writeStressTest(tag string, testf func(testf *failingWriter) error) {
    	// Invoke the function initially without the write limit
    	// set, to capture the number of writes performed.
    	fw := &failingWriter{writeLimit: -1}
    	testf(fw)
    
    	// Now that we know how many writes are going to happen, run the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_cgo.txt

    package p
    
    import "testing"
    
    func TestF(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 423 bytes
    - Viewed (0)
  8. docs/de/docs/project-generation.md

    * REST-Backend-Tests basierend auf **Pytest**, integriert in Docker, sodass Sie die vollständige API-Interaktion unabhängig von der Datenbank testen können. Da es in Docker ausgeführt wird, kann jedes Mal ein neuer Datenspeicher von Grund auf erstellt werden (Sie können also ElasticSearch, MongoDB, CouchDB oder was auch immer Sie möchten verwenden und einfach testen, ob die API funktioniert).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:14:36 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_xtestonly_works.txt

    [short] skip
    
    go test xtestonly
    ! stdout '^ok.*\[no tests to run\]'
    stdout '^ok'
    
    -- go.mod --
    module xtestonly
    
    go 1.16
    -- f.go --
    package xtestonly
    
    func F() int { return 42 }
    -- f_test.go --
    package xtestonly_test
    
    import (
    	"testing"
    	"xtestonly"
    )
    
    func TestF(t *testing.T) {
    	if x := xtestonly.F(); x != 42 {
    		t.Errorf("f.F() = %d, want 42", x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 357 bytes
    - Viewed (0)
  10. src/runtime/pprof/testdata/test32

    Russ Cox <******@****.***> 1488850797 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 528 bytes
    - Viewed (0)
Back to top