Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for unitTests (0.17 sec)

  1. .teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt

            val path = subproject["path"] as String
            val unitTests = !ignoredSubprojects.contains(name) && subproject["unitTests"] as Boolean
            val functionalTests = !ignoredSubprojects.contains(name) && subproject["functionalTests"] as Boolean
            val crossVersionTests = !ignoredSubprojects.contains(name) && subproject["crossVersionTests"] as Boolean
            return GradleSubproject(name, path, unitTests, functionalTests, crossVersionTests)
        }
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Jun 02 14:55:06 GMT 2023
    - 2.2K bytes
    - Viewed (1)
  2. okhttp-android/build.gradle.kts

        testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
    
        buildFeatures {
          buildConfig = false
        }
    
        testOptions {
          unitTests {
            isIncludeAndroidResources = true
          }
    
          targetSdk = 34
        }
      }
    
      compileOptions {
        targetCompatibility(JavaVersion.VERSION_11)
        sourceCompatibility(JavaVersion.VERSION_11)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Apr 01 11:07:32 GMT 2024
    - 2K bytes
    - Viewed (0)
  3. .github/workflows/extract-unit-test-split.jq

    .
     | map(select(.unitTests) | .name)
     | to_entries
     | group_by(.key % 10)
     | map({
         name: map(.value) | join(", "),
         tasks: map(.value + ":test") | join(" "),
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Mon Oct 11 08:08:26 GMT 2021
    - 171 bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/model/GradleSubproject.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.buildutils.model
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jun 02 14:55:06 GMT 2023
    - 806 bytes
    - Viewed (0)
  5. guava/javadoc-link/checker-framework/package-list

    org.checkerframework.checker.i18n
    org.checkerframework.checker.i18n.qual
    org.checkerframework.checker.i18nformatter
    org.checkerframework.checker.i18nformatter.qual
    org.checkerframework.checker.i18nformatter.unittests
    org.checkerframework.checker.index
    org.checkerframework.checker.index.lowerbound
    org.checkerframework.checker.index.qual
    org.checkerframework.checker.index.samelen
    org.checkerframework.checker.index.searchindex
    Plain Text
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Dec 07 19:00:31 GMT 2017
    - 3.8K bytes
    - Viewed (0)
  6. android/guava/javadoc-link/checker-framework/package-list

    org.checkerframework.checker.i18n
    org.checkerframework.checker.i18n.qual
    org.checkerframework.checker.i18nformatter
    org.checkerframework.checker.i18nformatter.qual
    org.checkerframework.checker.i18nformatter.unittests
    org.checkerframework.checker.index
    org.checkerframework.checker.index.lowerbound
    org.checkerframework.checker.index.qual
    org.checkerframework.checker.index.samelen
    org.checkerframework.checker.index.searchindex
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Dec 07 19:00:31 GMT 2017
    - 3.8K bytes
    - Viewed (0)
  7. istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml.injected

        spec:
          containers:
          - image: docker.io/istio/proxy_debug:unittest
            name: istio-proxy
            resources: {}
          - image: fake.docker.io/google-samples/hello-go-gke:1.0
            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
          initContainers:
          - image: docker.io/istio/proxy_init:unittest-test
            name: istio-init
            resources: {}
    status: {}
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/testdata/deployment/hello.yaml.injected

            name: hello
            ports:
            - containerPort: 80
              name: http
            resources: {}
          - image: docker.io/istio/proxy_debug:unittest
            name: istio-proxy
            resources: {}
          initContainers:
          - image: docker.io/istio/proxy_init:unittest-test
            name: istio-init
            resources: {}
    status: {}
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1K bytes
    - Viewed (0)
  9. ci/official/wheel_test/test_import_api_packages.py

    TensorFlow API v2 init files and is stored in the wheel file after the build.
    
    See README.md file for "how to run" instruction.
    """
    
    import logging
    import unittest
    import pkg_resources
    
    logging.basicConfig(level=logging.INFO)
    
    
    class ImportApiPackagesTest(unittest.TestCase):
      """ImportApiPackagesTest class. See description at the top of the file."""
    
      def setUp(self):
        def _get_api_packages_v2():
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Sep 13 15:52:07 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/testdata/inject-config-iop.yaml

    templates:
      sidecar: |-
        spec:
          initContainers:
          - name: istio-init
            image: docker.io/istio/proxy_init:unittest-{{.Values.global.tag}}
          containers:
          - name: istio-proxy
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 252 bytes
    - Viewed (0)
Back to top