Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,638 for Dests (0.04 sec)

  1. tests/integration/README.md

    # Istio Integration Tests
    
    This folder contains Istio integration tests that use the test framework checked in at
    [istio.io/istio/pkg/test/framework](https://github.com/istio/istio/tree/master/pkg/test/framework).
    
    ## Table of Contents
    
    1. [Overview](#overview)
    1. [Writing Tests](#writing-tests)
        1. [Adding a Test Suite](#adding-a-test-suite)
        1. [Sub-Tests](#sub-tests)
        1. [Parallel Tests](#parallel-tests)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            scenario                             | command
            "test suite appear before test case" | [testTaskName, "--tests", "${testSuite('SomeTest')}.*", "--tests", "${testSuite('SomeTest')}.$passingTestCaseName"]
            "test suite appear after test case"  | [testTaskName, "--tests", "${testSuite('SomeTest')}.$passingTestCaseName", "--tests", "${testSuite('SomeTest')}.*"]
        }
    
        protected DefaultTestExecutionResult getTestResult() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/glob_lit_test.bzl

            features = [],
            exec_properties = {}):
        """Creates all plausible Lit tests (and their inputs) under this directory.
    
        Args:
          name: str, name of the test_suite rule to generate for running all tests.
          exclude: [str], paths to exclude (for tests and inputs).
          test_file_exts: [str], extensions for files that are tests.
          default_size: str, the test size for targets not in "size_override".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. tests/common/jwt/jwt_token.go

    // package jwt includes sample JWT Token used in e2e tests.
    package jwt
    
    const (
    	// Payload {
    	//  "exp": 4715782722,
    	//  "groups": [
    	//    "group-1"
    	//  ],
    	//  "iat": 1562182722,
    	//  "iss": "******@****.***",
    	//  "sub": "sub-1"
    	// }
    	// Generated by: security/tools/jwt/samples/gen-jwt.py tests/common/jwt/key.pem -jwks=tests/common/jwt/jwks.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/ipvs_test.go

    			equal:  true,
    			reason: "All fields equal",
    		},
    	}
    
    	for i := range Tests {
    		equal := Tests[i].svcA.Equal(Tests[i].svcB)
    		if equal != Tests[i].equal {
    			t.Errorf("case: %d got %v, expected %v, reason: %s", i, equal, Tests[i].equal, Tests[i].reason)
    		}
    	}
    }
    
    func TestRealServerEqual(t *testing.T) {
    	Tests := []struct {
    		rsA    *RealServer
    		rsB    *RealServer
    		equal  bool
    		reason string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/README.md

    # Trace test data
    
    ## Trace golden tests
    
    Trace tests can be generated by running
    
    ```
    go generate .
    ```
    
    with the relevant toolchain in this directory.
    
    This will put the tests into a `tests` directory where the trace reader
    tests will find them.
    
    A subset of tests can be regenerated by specifying a regexp pattern for
    the names of tests to generate in the `GOTRACETEST` environment
    variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

            buildTests();
            if (!tests.containsKey(experiment)) {
                throw new IllegalArgumentException(String.format("Unknown test '%s'.", experiment));
            }
            return tests.get(experiment);
        }
    
        private void buildTests() {
            if (tests == null) {
                Map<PerformanceExperiment, ResultsStore> tests = new LinkedHashMap<>();
                for (ResultsStore store : stores) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/controller/volume/protectionutil/utils_test.go

    	tests := []TestCase{
    		{
    			name:      "pv lacks delete time and finalizer",
    			obj:       pv(),
    			finalizer: util.PVProtectionFinalizer,
    			result:    false,
    		},
    		{
    			name:      "pvc lacks delete time and finalizer",
    			obj:       pvc(),
    			finalizer: util.PVCProtectionFinalizer,
    
    			result: false,
    		},
    	}
    	for _, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 17 14:24:42 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestLauncher.java

         * @return this
         * @since 2.6
         */
        TestLauncher withTests(Iterable<? extends TestOperationDescriptor> descriptors);
    
        /**
         * <p>Adds tests to be executed declared by class name.</p>
         *
         * <p>This method ignores tests defined in included builds.</p>
         *
         * @param testClasses The class names of the tests to be executed.
         * @return this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/doc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package tests defines an Analyzer that checks for common mistaken
    // usages of tests and examples.
    //
    // # Analyzer tests
    //
    // tests: check for common mistaken usages of tests and examples
    //
    // The tests checker walks Test, Benchmark, Fuzzing and Example functions checking
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 703 bytes
    - Viewed (0)
Back to top