Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 974 for pass2 (0.19 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        }
    
        @Test public void pass() {}
    }
    
    public class ATestClassWithSeveralMethods {
        @Test public void pass() {}
        @Test public void pass2() {}
        @Test public void passSlowly() {}
        @Test public void passSlowly2() {}
        @Test public void fail() { throw new RuntimeException("Boo!") }
    }
    public class ATestClassWithSlowMethods {
        @Test public void pass() {}
        @Test public void passSlowly() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/pass.go

    // Inferno utils/6l/pass.c
    // https://bitbucket.org/inferno-os/inferno-os/src/master/utils/6l/pass.c
    //
    //	Copyright © 1994-1999 Lucent Technologies Inc.  All rights reserved.
    //	Portions Copyright © 1995-1997 C H Forsyth (******@****.***)
    //	Portions Copyright © 1997-1999 Vita Nuova Limited
    //	Portions Copyright © 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
    //	Portions Copyright © 2004,2006 Bruce Ellis
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. hack/boilerplate/test/pass.py

    kidddddddddddddddddddddd <******@****.***> 1673408742 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 12 03:20:41 UTC 2023
    - 617 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/mlir_graph_optimization_pass.h

      void Add(std::unique_ptr<MlirV1CompatOptimizationPass> pass) {
        CHECK(pass_ == nullptr) << "Only a single pass can be registered";
        pass_ = std::move(pass);
      }
    
      MlirV1CompatOptimizationPass* pass() const {
        return pass_ ? pass_.get() : nullptr;
      }
    
      // Free the memory allocated for the single pass.
      // This method is used for testing mostly.
      void ClearPass() { pass_.reset(); }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 22:53:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_signal_ios_arm64.c

    		fprintf(stderr, "runtime/cgo: caught exc_bad_access\n");
    		fprintf(stderr, "__lr = %llx\n", thread_state.ts_64.__lr);
    		fprintf(stderr, "__pc = %llx\n", thread_state.ts_64.__pc);
    		static int pass1 = 0;
    		if (pass1) {
    			return KERN_FAILURE;
    		}
    		pass1 = 1;
    	}
    
    	ret = thread_set_state(thread, ARM_UNIFIED_THREAD_STATE, (thread_state_t)&thread_state, state_count);
    	if (ret) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.h

    // `MLIR_BRIDGE_LOG_PASS_FILTER` takes a semicolon-separated list of pass class
    // names, `MLIR_BRIDGE_LOG_STRING_FILTER` takes a semicolon-separated list of
    // strings, and IR is only dumped for a pass invocation if the pass name exactly
    // matches any of the provided pass names and if the serialized operation on
    // which the pass is invoked contains any of the specified strings as a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/passes.h

    #include "mlir/Pass/Pass.h"  // from @llvm-project
    
    namespace mlir {
    namespace odml {
    
    // Creates a pass which unfuses MHLO batch norm inference op into arithmetic
    // ops.
    std::unique_ptr<Pass> createUnfuseBatchNormPass();
    
    // Creates a pass which constant folds broadcast_in_dim op conditionally.
    std::unique_ptr<Pass> createFoldBroadcastPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. logger/sql_test.go

    		},
    		{
    			SQL:           "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (@p1, @p2, @p3, @p4, @p5, @p6, @p7, @p8, @p9, @p10, @p11)",
    			NumericRegexp: regexp.MustCompile(`@p(\d+)`),
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 21 08:00:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger.cc

    }
    
    bool BridgeLoggerConfig::ShouldPrint(mlir::Pass* pass, mlir::Operation* op) {
      // Check pass filter first since it's cheaper.
      std::string pass_name = pass->getName().str();
      if (!MatchesFilter(pass_name, pass_filter_, /*exact_match=*/true)) {
        // No string in filter matches pass name.
        VLOG(1) << "Not logging invocation of pass `" << pass_name
                << "` because the pass name does not match any string in "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 22:29:51 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    // TF SavedModel dialect test passes.
    
    def FreezeVariablesTestPass : Pass<"tf-freeze-variables-test-pass",
      "ModuleOp"> {
      let summary = "Freezes read only variables";
    
      let description = [{
        Test pass for freezing read only variables in the graph.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top