Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,408 for suiteID (0.15 sec)

  1. tests/integration/README.md

    to write environment-agnostics tests in a high-level fashion.
    
    ### Adding a Test Suite
    
    All tests that use the framework, must run as part of a *suite*. Only a single suite can be defined per package, since
    it is bootstrapped by a Go `TestMain`, which has the same restriction.
    
    To begin, create a new folder for your suite under
    [tests/integration](https://github.com/istio/istio/tree/master/tests/integration).
    
    ```console
    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. internal/fips/api.go

    const Enabled = enabled
    
    // DARECiphers returns a list of supported cipher suites
    // for the DARE object encryption.
    func DARECiphers() []byte {
    	if Enabled {
    		return []byte{sio.AES_256_GCM}
    	}
    	return []byte{sio.AES_256_GCM, sio.CHACHA20_POLY1305}
    }
    
    // TLSCiphers returns a list of supported TLS transport
    // cipher suite IDs.
    //
    // The list contains only ciphers that use AES-GCM or
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 30 19:37:07 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/internal/NativeTestSuites.java

    import static org.gradle.nativeplatform.internal.configure.NativeBinaryRules.installationDirFor;
    
    /**
     * Functions for creation and configuration of native test suites.
     */
    public class NativeTestSuites {
    
        public static <S extends NativeTestSuiteBinarySpec> void createNativeTestSuiteBinaries(ModelMap<S> binaries,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassExecutor.java

                || !filterSpec.getExcludedTests().isEmpty()) {
                TestSelectionMatcher matcher = new TestSelectionMatcher(filterSpec);
    
                // For test suites (including suite-like custom Runners), if the test suite class
                // matches the filter, run the entire suite instead of filtering away its contents.
                if (!runner.getDescription().isSuite() || !matcher.matchesTest(testClassName, null)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/utils/utils_test.go

    			if diff := cmp.Diff(tt.expectedMTLSCipherSuites, got.CommonTlsContext.TlsParams.CipherSuites, protocmp.Transform()); diff != "" {
    				t.Errorf("unexpected cipher suites: %v", diff)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 20:24:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     *  test registry has been initialized (check by assertion).
     */
    
    CU_EXPORT CU_ErrorCode CU_list_tests_to_file(void);
    /**< 
     *  Generates an xml file containing a list of all tests in all suites 
     *  in the active registry.  The output file will be named according to 
     *  the most recent call to CU_set_output_filename(), or a default if 
     *  not previously set.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/build.gradle.kts

        implementation(project(":plugins-java-base"))
        implementation(project(":plugins-jvm-test-fixtures"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":scala"))
        implementation(project(":test-suites-base"))
        implementation(project(":war"))
    
        implementation(libs.commonsLang)
    
        runtimeOnly(project(":language-jvm"))
        runtimeOnly(project(":testing-base"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/resources/META-INF/gradle-plugins/org.gradle.cunit-test-suite.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 679 bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

                testSuites.withType(JvmTestSuite.class).configureEach(suite -> {
                    suite.getTargets().configureEach(target -> {
                        createCoverageDataVariant((ProjectInternal) project, suite, target);
                    });
                });
            });
        }
    
        private void createCoverageDataVariant(ProjectInternal project, JvmTestSuite suite, JvmTestSuiteTarget target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/CharSourceTest.java

     */
    public class CharSourceTest extends IoTestCase {
    
      @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors.
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        for (boolean asByteSource : new boolean[] {false, true}) {
          suite.addTest(
              CharSourceTester.tests(
                  "CharSource.wrap[CharSequence]",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top