Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,347 for TestAs (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    			expressions: []string{
    				"namespaceObject.metadata != null",
    				"namespaceObject.metadata.name == 'test'",
    				"namespaceObject.metadata.generateName == 'test'",
    				"namespaceObject.metadata.namespace == 'testns'",
    				"'test' in namespaceObject.metadata.labels",
    				"'test' in namespaceObject.metadata.annotations",
    				"namespaceObject.metadata.UID == '12345'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. docs/ja/docs/benchmarks.md

        * FastAPIを使用することで、開発時間、バグ、コード行数を節約でき、使用しない場合 (あなたが全ての機能を実装し直した場合) と同じかそれ以上のパフォーマンスを得られます。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Oct 17 18:43:43 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  3. src/cmd/test2json/main.go

    //	output - the test printed output
    //	skip   - the test was skipped or the package contained no tests
    //
    // Every JSON stream begins with a "start" event.
    //
    // The Package field, if present, specifies the package being tested.
    // When the go command runs parallel tests in -json mode, events from
    // different tests are interlaced; the Package field allows readers to
    // separate them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. src/internal/testenv/exec.go

    //     in its Cancel function
    //   - if the test has a deadline, adds a Context timeout and WaitDelay
    //     for an arbitrary grace period before the test's deadline expires,
    //   - fails the test if the command does not complete before the test's deadline, and
    //   - sets a Cleanup function that verifies that the test did not leak a subprocess.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/os/exec/exec_posix_test.go

    		// something totally bogus (or the empty string), but then we would have no
    		// idea what output the subprocess should actually produce: cwd itself may
    		// contain symlinks preserved from the PWD value in the test's environment.
    	}
    	for _, tc := range cases {
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			t.Parallel()
    
    			cmd := helperCommand(t, "pwd")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:21:32 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-message.h

        // overloads are visible in either the std namespace or the global
        // namespace, but not other namespaces, including the testing
        // namespace which Google Test's Message class is in.
        //
        // To allow STL containers (and other types that has a << operator
        // defined in the global namespace) to be used in Google Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // library vendor.
    namespace std {
    namespace tr1 {
    
    template <$for i, [[typename T$i = void]]>
    class tuple;
    
    // Anything in namespace gtest_internal is Google Test's INTERNAL
    // IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code.
    namespace gtest_internal {
    
    // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // library vendor.
    namespace std {
    namespace tr1 {
    
    template <$for i, [[typename T$i = void]]>
    class tuple;
    
    // Anything in namespace gtest_internal is Google Test's INTERNAL
    // IMPLEMENTATION DETAIL and MUST NOT BE USED DIRECTLY in user code.
    namespace gtest_internal {
    
    // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
    template <typename T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. docs/pl/docs/tutorial/first-steps.md

    #### Sprawdź `openapi.json`
    
    Jeśli jesteś ciekawy, jak wygląda surowy schemat OpenAPI, FastAPI automatycznie generuje JSON Schema z opisami wszystkich Twoich API.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_plugin_test.go

    			mounter, err := plug.NewMounter(
    				tc.originSpec,
    				&api.Pod{ObjectMeta: meta.ObjectMeta{UID: tc.podUID, Namespace: testns}},
    				volume.VolumeOptions{},
    			)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if mounter == nil {
    				t.Fatal("failed to create CSI mounter")
    			}
    			csiMounter := mounter.(*csiMountMgr)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top