Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 2401 - 2410 of 3,100 for Rtest (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. .ci/jobs.t/elastic+elasticsearch+pull-request+packaging-tests-unix.yml

              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - ':Delivery/Packaging'
              black-list-labels:
                - '>test-mute'
        axes:
          - axis:
              type: label-expression
              name: os
              values:
                - centos-7-packaging
                - centos-8-packaging
                - debian-9-packaging
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 14 17:35:45 GMT 2021
    - 2.2K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

              @Override
              public String pendingToString() {
                return "cause=[Because this test isn't done]";
              }
            };
        assertThat(testFuture.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[cause=\\[Because this test isn't done\\]\\]\\]");
        TimeoutException e = assertThrows(TimeoutException.class, () -> testFuture.get(1, NANOSECONDS));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 45.2K bytes
    - Click Count (0)
  3. tensorflow/c/eager/c_api_unified_experimental_test.cc

    #include "tensorflow/c/tf_tensor.h"
    #include "tensorflow/core/framework/full_type.pb.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/test.h"
    
    using tensorflow::Status;
    using tensorflow::string;
    using tensorflow::TF_StatusPtr;
    
    namespace tensorflow {
    namespace {
    
    // The tests are parameterized on:
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 12 05:11:17 GMT 2024
    - 39.1K bytes
    - Click Count (0)
  4. container-tests/build.gradle.kts

      id("okhttp.base-conventions")
    }
    
    import okhttp3.buildsupport.platform
    import okhttp3.buildsupport.testJavaVersion
    
    val platform = project.platform
    val testJavaVersion = project.testJavaVersion
    
    tasks.withType<Test> {
      useJUnitPlatform()
      val isCi = providers.environmentVariable("CI")
      val containerTests = providers.gradleProperty("containerTests")
      onlyIf("By default not in CI") {
        !isCi.isPresent
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 1.3K bytes
    - Click Count (1)
  5. okhttp/src/androidHostTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixTesting.android.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package okhttp3.internal.publicsuffix
    
    import androidx.test.core.app.ApplicationProvider
    import okhttp3.internal.platform.PlatformRegistry
    import org.robolectric.RobolectricTestRunner
    
    actual typealias PublicSuffixTestRunner = RobolectricTestRunner
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Jan 26 07:38:51 GMT 2026
    - 974 bytes
    - Click Count (0)
  6. doc/next/3-tools.md

    The format is compatible with GCC's response file implementation to ensure interoperability with existing build systems.
    
    ### Go command {#go-command}
    
    `go test` now invokes the stdversion vet check by default.
    This reports the use of standard library symbols that are too new
    for the Go version in force in the referring file,
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 19 02:58:52 GMT 2026
    - 757 bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/RestTestTransformGlobalSetup.java

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.test.rest.transform;
    
    import com.fasterxml.jackson.databind.node.ObjectNode;
    
    import javax.annotation.Nullable;
    
    /**
     * A type of {@link RestTestTransform} that transformations or adds a global "setup" section.
     */
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 935 bytes
    - Click Count (0)
  8. .ci/jobs.t/elastic+elasticsearch+pull-request+part-1-fips.yml

              black-list-target-branches:
                - 6.8
              excluded-regions:
                - ^docs/.*
              white-list-labels:
                - 'Team:Security'
              black-list-labels:
                - '>test-mute'
        builders:
          - inject:
              properties-file: '.ci/java-versions.properties'
              properties-content: |
                JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 16 01:16:48 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  9. cmd/admin-handlers-users_test.go

    	}
    }
    
    // List of all IAM test suites (i.e. test server configuration combinations)
    // common to tests.
    var iamTestSuites = func() []*TestSuiteIAM {
    	baseTestCases := []TestSuiteCommon{
    		// Init and run test on ErasureSD backend with signature v4.
    		{serverType: "ErasureSD", signer: signerV4},
    		// Init and run test on ErasureSD backend, with tls enabled.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Oct 15 17:00:45 GMT 2025
    - 50.6K bytes
    - Click Count (0)
  10. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

        CollectionFeature.KNOWN_ORDER,
        CollectionFeature.SUPPORTS_REMOVE,
        CollectionFeature.ALLOWS_NULL_QUERIES
      };
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        // Not testing rowKeySet() or columnKeySet() of Table.transformValues()
        // since the transformation doesn't affect the row and column key sets.
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 35.5K bytes
    - Click Count (0)
Back to Top