Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Rbrack (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          return true;
        }
        return *potential_element_type == new_element_type;
      };
    
      std::stack<Value> worklist;
      worklist.emplace(tensorlist);
    
      // Track the set of values we've already visited to avoid exponential blowup.
      absl::flat_hash_set<void*> visited;
      auto add_to_worklist = [&worklist, &visited](Value v) {
        if (visited.find(v.getAsOpaquePointer()) == visited.end()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. pkg/controller/statefulset/stateful_set_control_test.go

    	maxParallelRequests         int
    	parallelRequestDelay        time.Duration
    }
    
    func (rt *requestTracker) trackParallelRequests() {
    	if !rt.shouldTrackParallelRequests {
    		// do not track parallel requests unless specifically enabled
    		return
    	}
    	if rt.parallelLock.TryLock() {
    		// lock acquired: we are the only or the first concurrent request
    		// initialize the next set of parallel requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
Back to top