Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 135 for t2_test (0.32 sec)

  1. hack/verify-e2e-test-ownership.sh

    # rebuild dependencies if necessary
    function ensure_dependencies() {
      local -r ginkgo="${KUBE_ROOT}/_output/bin/ginkgo"
      local -r e2e_test="${KUBE_ROOT}/_output/bin/e2e.test"
      if ! { [ -f "${ginkgo}" ] && [[ "${REUSE_BUILD_OUTPUT}" =~ ^[yY]$ ]]; }; then
        make ginkgo
      fi
      if ! { [ -f "${e2e_test}" ] && [[ "${REUSE_BUILD_OUTPUT}" =~ ^[yY]$ ]]; }; then
        hack/make-rules/build.sh test/e2e/e2e.test
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 06:46:18 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *  taking any action.  The default CU_BasicRunMode is used unless
     *  it has been changed using CU_basic_set_mode.
     *
     *  @param pSuite The CU_Suite holding the CU_Test to run.
     *  @param pTest  The CU_Test to run.
     *  @return A CU_ErrorCode indicating the framework error condition, including
     *          CUE_NOSUITE - pSuite was NULL.
     *          CUE_NOTEST  - pTest was NULL.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/exported_python_args.py

      # CHECK-SAME: Unhandled structured value kind {{.*}} at index path: <value>.1.foo
      @tf.function
      def callee(self, x, n={'foo': 42}):
        return x
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven3ScopeManagerConfiguration.java

        public static final String DS_RUNTIME = "runtime";
        public static final String DS_PROVIDED = "provided";
        public static final String DS_SYSTEM = "system";
        public static final String DS_TEST = "test";
        public static final String RS_NONE = "none";
        public static final String RS_MAIN_COMPILE = "main-compile";
        public static final String RS_MAIN_COMPILE_PLUS_RUNTIME = "main-compilePlusRuntime";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven3ScopeManagerConfiguration.java

        public static final String DS_RUNTIME = "runtime";
        public static final String DS_PROVIDED = "provided";
        public static final String DS_SYSTEM = "system";
        public static final String DS_TEST = "test";
        public static final String RS_NONE = "none";
        public static final String RS_MAIN_COMPILE = "main-compile";
        public static final String RS_MAIN_COMPILE_PLUS_RUNTIME = "main-compilePlusRuntime";
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/debug_info.py

        # CHECK: #loc{{[0-9]+}} = loc("{{.*}}debug_info.py":{{[0-9]+}}:{{[0-9]+}})
        # CHECK: #loc{{[0-9]+}} = loc(callsite(#loc{{[0-9]+}} at #loc{{[0-9]+}}))
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Dec 03 00:08:31 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/cyclic_object_graph.py

    # Creates a cyclic object graph.
    class TestModule(tf.Module):
    
      def __init__(self):
        super(TestModule, self).__init__()
        self.child = ReferencesParent(self)
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic_v1_no_variable_lifting.py

              inputs={'x': tensor_info_x},
              outputs={'r': tensor_info_r},
              method_name='some_function'))
      }, None, None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/control_flow_duplicate_v1.py

          method_name='some_function')
    
      return {'key_1': signature_def, 'key_2': signature_def}, None, None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/duplicate_method_names_v1.py

      # Create two signatures that share the same variable.
      return {'key': signature_def, 'key2': signature_def2}, None, None
    
    
    if __name__ == '__main__':
      common_v1.set_tf_options()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top