Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 165 for suiteID (0.18 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. 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)
  3. 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)
  4. pilot/pkg/bootstrap/options.go

    	}
    	for _, cipher := range tls.CipherSuites() {
    		acceptedCiphers[cipher.Name] = cipher.ID
    	}
    	return acceptedCiphers
    }
    
    // TLSCipherSuites returns a list of cipher suite IDs from the cipher suite names passed.
    func TLSCipherSuites(cipherNames []string) ([]uint16, error) {
    	if len(cipherNames) == 0 {
    		return nil, nil
    	}
    	ciphersIntSlice := make([]uint16, 0)
    	possibleCiphers := allCiphers()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //             CyclicBarrierTest.suite(),
      //             DelayQueueTest.suite(),
      //             EntryTest.suite(),
      //             ExchangerTest.suite(),
      //             ExecutorsTest.suite(),
      //             ExecutorCompletionServiceTest.suite(),
      //             FutureTaskTest.suite(),
      //             LinkedBlockingDequeTest.suite(),
      //             LinkedBlockingQueueTest.suite(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

     */
    public class ByteSourceTest extends IoTestCase {
    
      @AndroidIncompatible // Android doesn't understand suites whose tests lack default constructors.
      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
        for (boolean asCharSource : new boolean[] {false, true}) {
          suite.addTest(
              ByteSourceTester.tests(
                  "ByteSource.wrap[byte[]]",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java

    @ElementTypesAreNonnullByDefault
    public class ImmutableMultisetTest extends TestCase {
    
      @J2ktIncompatible
      @GwtIncompatible // suite // TODO(cpovirk): add to collect/gwt/suites
      public static Test suite() {
        TestSuite suite = new TestSuite();
        suite.addTestSuite(ImmutableMultisetTest.class);
    
        suite.addTest(
            MultisetTestSuiteBuilder.using(
                    new TestStringMultisetGenerator() {
                      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 25K bytes
    - Viewed (0)
  8. src/crypto/tls/ech.go

    			continue
    		}
    		return &ec
    	}
    	return nil
    }
    
    func pickECHCipherSuite(suites []echCipher) (echCipher, error) {
    	for _, s := range suites {
    		// NOTE: all of the supported AEADs and KDFs are fine, rather than
    		// imposing some sort of preference here, we just pick the first valid
    		// suite.
    		if _, ok := hpke.SupportedAEADs[s.AEADID]; !ok {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

                    }
                }
    
                dependencies {
                    implementation("org.gradle.experimental:gradle-public-api:${apiJarVersion}")
                }
    
                testing {
                    suites {
                        test {
                            useJUnitJupiter()
                        }
                    }
                }
    
                repositories {
                    maven {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    		compressionMethods: []uint8{compressionNone},
    	}
    	serverConfig := testConfig.Clone()
    	// Reset the enabled cipher suites to nil in order to test the
    	// defaults.
    	serverConfig.CipherSuites = nil
    	testClientHelloFailure(t, serverConfig, clientHello, "no cipher suite supported by both client and server")
    }
    
    func TestRejectSNIWithTrailingDot(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top