Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for jsTest (0.41 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

                dependencies {
                    implementation(kotlin("test-common"))
                    implementation(kotlin("test-annotations-common"))
                }
            }
    
            named("jsTest") {
                dependencies {
                    implementation(kotlin("test-js"))
                }
            }
    
            named("jvmTest") {
                dependencies {
                    implementation(kotlin("test-junit5"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/syscall/js/js_test.go

    // - Add /path/to/go/misc/wasm to your $PATH (so that "go test" can find
    //   "go_js_wasm_exec").
    // - GOOS=js GOARCH=wasm go test
    //
    // See -exec in "go help test", and "go help run" for details.
    
    package js_test
    
    import (
    	"fmt"
    	"math"
    	"runtime"
    	"syscall/js"
    	"testing"
    )
    
    var dummys = js.Global().Call("eval", `({
    	someBool: true,
    	someString: "abc\u1234",
    	someInt: 42,
    	someFloat: 42.123,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. src/html/template/js_test.go

    Roland Shoemaker <******@****.***> 1707959916 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. pkg/proxy/healthcheck/healthcheck_test.go

    	}
    
    	if status == http.StatusOK {
    		hsTest.tracking200++
    	}
    	if status == http.StatusServiceUnavailable {
    		hsTest.tracking503++
    	}
    	if hsTest.url == healthzURL {
    		testMetricEquals(metrics.ProxyHealthzTotal.WithLabelValues("200"), float64(hsTest.tracking200), t)
    		testMetricEquals(metrics.ProxyHealthzTotal.WithLabelValues("503"), float64(hsTest.tracking503), t)
    	}
    	if hsTest.url == livezURL {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    									XValidations: apiextensions.ValidationRules{
    										{
    											Rule:            "isTest == true",
    											Message:         "isTest should be true.",
    											OptionalOldSelf: ptr.To(true),
    										},
    									},
    									Properties: map[string]apiextensions.JSONSchemaProps{
    										"isTest": {
    											Type: "boolean",
    										},
    									},
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/hooks.go

    // called only by the compiler (via runtime/coverage.initHook).
    //
    // If 'istest' is false, it indicates we're building a regular program
    // ("go build -cover ..."), in which case we immediately try to write
    // out the meta-data file, and register emitCounterData as an exit
    // hook.
    //
    // If 'istest' is true (indicating that the program in question is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. docs/pl/docs/tutorial/first-steps.md

    ### OpenAPI
    
    **FastAPI** generuje "schemat" z całym Twoim API przy użyciu standardu **OpenAPI** służącego do definiowania API.
    
    #### Schema
    
    "Schema" jest definicją lub opisem czegoś. Nie jest to kod, który go implementuje, ale po prostu abstrakcyjny opis.
    
    #### API "Schema"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/runtime/coverage/coverage.go

    package coverage
    
    import (
    	"internal/coverage/cfile"
    	"io"
    )
    
    // initHook is invoked from main.init in programs built with -cover.
    // The call is emitted by the compiler.
    func initHook(istest bool) {
    	cfile.InitHook(istest)
    }
    
    // WriteMetaDir writes a coverage meta-data file for the currently
    // running program to the directory specified in 'dir'. An error will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/_builtin/coverage.go

    // in cmd/compile/internal/typecheck
    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package coverage
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 28 16:59:48 UTC 2024
    - 437 bytes
    - Viewed (0)
  10. docs/pl/docs/index.md

    * Potwierdzi, że w ścieżce jest `item_id` dla żądań `GET` i `PUT`.
    * Potwierdzi, że `item_id` jest typu `int` dla żądań `GET` i `PUT`.
        * Jeżeli nie jest, odbiorca zobaczy przydatną, przejrzystą wiadomość z błędem.
    * Sprawdzi czy w ścieżce jest opcjonalny parametr zapytania `q` (np. `http://127.0.0.1:8000/items/foo?q=somequery`) dla żądania `GET`.
        * Jako że parametr `q` jest zadeklarowany jako `= None`, jest on opcjonalny.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top