Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 7,927 for testOrg (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    }
    
    func (t *Tester) ClusterScope() *Tester {
    	t.tester = t.tester.ClusterScope()
    	return t
    }
    
    func (t *Tester) Namer(namer func(int) string) *Tester {
    	t.tester = t.tester.Namer(namer)
    	return t
    }
    
    func (t *Tester) AllowCreateOnUpdate() *Tester {
    	t.tester = t.tester.AllowCreateOnUpdate()
    	return t
    }
    
    func (t *Tester) GeneratesName() *Tester {
    	t.tester = t.tester.GeneratesName()
    	return t
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/python/testing.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    """Common testing utilities for quantization libraries."""
    import itertools
    import os
    from typing import Any, Mapping, Sequence
    
    
    def parameter_combinations(
        test_parameters: Sequence[Mapping[str, Sequence[Any]]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/testing-database.md

    You could want to set up a different database for testing, rollback the data after the tests, pre-fill it with some testing data, etc.
    
    The main idea is exactly the same you saw in that previous chapter.
    
    ## Add tests for the SQL app
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/testing-websockets.md

    # Testing WebSockets
    
    You can use the same `TestClient` to test WebSockets.
    
    For this, you use the `TestClient` in a `with` statement, connecting to the WebSocket:
    
    ```Python hl_lines="27-31"
    {!../../../docs_src/app_testing/tutorial002.py!}
    ```
    
    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 449 bytes
    - Viewed (0)
  5. docs/en/docs/advanced/testing-dependencies.md

    # Testing Dependencies with Overrides
    
    ## Overriding dependencies during testing
    
    There are some scenarios where you might want to override a dependency during testing.
    
    You don't want the original dependency to run (nor any of the sub-dependencies it might have).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/testing/testing.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"reflect"
    	"strconv"
    	"sync"
    
    	"github.com/google/go-cmp/cmp"
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. src/go/doc/testdata/testing.0.golden

    // Package testing provides support for automated testing of Go ...
    PACKAGE testing
    
    IMPORTPATH
    	testdata/testing
    
    IMPORTS
    	bytes
    	flag
    	fmt
    	io
    	os
    	runtime
    	runtime/pprof
    	strconv
    	strings
    	time
    
    FILENAMES
    	testdata/benchmark.go
    	testdata/example.go
    	testdata/testing.go
    
    FUNCTIONS
    	// An internal function but exported because it is cross-package; ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.2.golden

    // Package testing provides support for automated testing of Go ...
    PACKAGE testing
    
    IMPORTPATH
    	testdata/testing
    
    IMPORTS
    	bytes
    	flag
    	fmt
    	io
    	os
    	runtime
    	runtime/pprof
    	strconv
    	strings
    	time
    
    FILENAMES
    	testdata/benchmark.go
    	testdata/example.go
    	testdata/testing.go
    
    FUNCTIONS
    	// An internal function but exported because it is cross-package; ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/testing-pyramid.png

    testing-pyramid.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. guava-gwt/test/com/google/common/testing/Testing.gwt.xml

    <module>
    <source path="">
      <!-- Hack to keep collect from hiding collect.testing supersource: -->
      <exclude name="**/testing/**"/>
    </source>
    
    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top