Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 212 for cond_a (0.09 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      return 0;
    }
    
    typedef char IsNotContainer;
    template <class C>
    IsNotContainer IsContainerTest(long /* dummy */) { return '\0'; }
    
    // EnableIf<condition>::type is void when 'Cond' is true, and
    // undefined when 'Cond' is false.  To use SFINAE to make a function
    // overload only apply when a particular expression is true, add
    // "typename EnableIf<expression>::type* = 0" as the last parameter.
    template<bool> struct EnableIf;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

        RecursiveCompilabilityChecker::UncompilableNodesMap* uncompilable_nodes)
        const {
      bool is_compilable = true;
      is_compilable &= ExtractNodeDefAndCheckCompilability(
          while_node, "cond", "while_cond", encapsulating_function, lib_runtime,
          stack_trace, uncompilable_nodes);
    
      if (!uncompilable_nodes && !is_compilable) return is_compilable;
    
      is_compilable &= ExtractNodeDefAndCheckCompilability(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // That is, an Identity node in the loop cond computation is used to drive
        // const nodes consumed by the loop body.  If this Identity node goes into
        // the same cluster with nodes from the loop body, extra dependency is
        // created between the loop cond and body computations and it hinders the
        // progression of the loop cond computation at runtime with significant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    // pseudo-ops
    (GetClosurePtr ...) => (LoweredGetClosurePtr ...)
    (GetCallerSP ...) => (LoweredGetCallerSP ...)
    (GetCallerPC ...) => (LoweredGetCallerPC ...)
    
    (If cond yes no) => (NE cond yes no)
    
    // Write barrier.
    (WB ...) => (LoweredWB ...)
    
    (PanicBounds [kind] x y mem) && boundsABI(kind) == 0 => (LoweredPanicBoundsA [kind] x y mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		// Parse GOOS/GOARCH stuff.
    		f := strings.Fields(line)
    		if len(f) < 1 {
    			return fmt.Errorf("%s: invalid #cgo line: %s", filename, orig)
    		}
    
    		cond, verb := f[:len(f)-1], f[len(f)-1]
    		if len(cond) > 0 {
    			ok := false
    			for _, c := range cond {
    				if ctxt.matchAuto(c, nil) {
    					ok = true
    					break
    				}
    			}
    			if !ok {
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	testService = "test"
    )
    
    // eventually polls cond until it completes (returns true) or times out (resulting in a test failure).
    func eventually(t test.Failer, cond func() bool) {
    	t.Helper()
    	retry.UntilSuccessOrFail(t, func() error {
    		if !cond() {
    			return fmt.Errorf("failed to get positive condition")
    		}
    		return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. src/regexp/regexp.go

    	mpool          int            // pool for machines
    	matchcap       int            // size of recorded match lengths
    	prefixComplete bool           // prefix is the entire regexp
    	cond           syntax.EmptyOp // empty-width conditions required at start of match
    	minInputLen    int            // minimum length of the input in bytes
    
    	// This field can be modified by the Longest method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    	// connChange will be signaled whenever State has been updated, or at regular intervals.
    	// Holding the lock allows safe reads of State, and guarantees that changes will be detected.
    	connChange *sync.Cond
    	handlers   *handlers
    
    	remote             *RemoteClient
    	auth               AuthFn
    	clientPingInterval time.Duration
    	connPingInterval   time.Duration
    	tlsConfig          *tls.Config
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/stack_ops_decomposition.mlir

      // CHECK-NOT: tf.Stack
      %stack = "tf.StackV2"(%max_size) {elem_type = f32, stack_name = "s"} : (tensor<i32>) -> tensor<!tf_type.resource>
      %1:2 = "tf.While"(%stack, %max_size) {
        body = @while_body, cond = @while_cond, device = "", is_stateless = false}
           : (tensor<!tf_type.resource>, tensor<i32>) -> (tensor<!tf_type.resource>, tensor<i32>)
      // CHECK: "tf.Slice"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  10. src/runtime/runtime2.go

    	waitReasonSemacquire                              // "semacquire"
    	waitReasonSleep                                   // "sleep"
    	waitReasonSyncCondWait                            // "sync.Cond.Wait"
    	waitReasonSyncMutexLock                           // "sync.Mutex.Lock"
    	waitReasonSyncRWMutexRLock                        // "sync.RWMutex.RLock"
    	waitReasonSyncRWMutexLock                         // "sync.RWMutex.Lock"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top