Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 593 for blockn (1.27 sec)

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

      results.clear();
    
      // Collect all of the blocks within each of the island operations, these will
      // be used to detect when an operation has a use within one of the merged
      // islands.
      llvm::SmallPtrSet<Block*, 8> islandBlocks;
      for (IslandOp island : merged_island.islands)
        island->walk([&](Block* block) { islandBlocks.insert(block); });
    
      for (IslandOp island : merged_island.islands) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerTest.groovy

                sleep 1000
                // Try to get broadcaster, should not block
                def broadcaster = manager.getBroadcaster(TestBazListener)
                // Notify broadcaster, should not block
                broadcaster.baz()
            } as TestFooListener
            def listener2 = {
                sleep 20
                // Try to remove listener, should be blocked until listener 1 is done
                manager.removeListener(listener1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceProjectLockTest.groovy

                    workerLeaseService.blocking {
                        assert !lockIsHeld(lease)
                        assert lockIsHeld(projectLock)
                    }
                    assert lockIsHeld(lease)
                    assert lockIsHeld(projectLock)
                }
            }
        }
    
        def "releases and reacquires project locks in blocking action when changes to locks are allowed"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

            0 * _
        }
    
        def "blocks transition while another thread is performing transition"() {
            def controller = controller(TestState.A)
    
            when:
            async {
                start {
                    asWorker {
                        controller.transition(TestState.A, TestState.B) {
                            instant.first
                            thread.block()
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    		monotonically.
    
    	/sync/mutex/wait/total:seconds
    		Approximate cumulative time goroutines have spent blocked on a
    		sync.Mutex, sync.RWMutex, or runtime-internal lock. This metric
    		is useful for identifying global changes in lock contention.
    		Collect a mutex or block profile using the runtime/pprof package
    		for more detailed contention data.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_communication.cc

      }
    }
    
    // Replaces control flow op block arguments with new block arguments
    // of types `types`. The last element of the new block argument (token) is
    // returned.
    Value UpdateControlFlowBlockArgWithToken(OpBuilder& builder, Block& block,
                                             ArrayRef<Type> types) {
      builder.setInsertionPointToStart(&block);
    
      auto old_args_size = block.getNumArguments();
    
      block.addArguments(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    LogicalResult FormClustersInBlock(
        Block* block,
        const mlir::TF::SideEffectAnalysis::Info& side_effect_analysis,
        bool strict_clusters) {
      MetadataMap metadata_map;
      LogicalResult result = CollectMetadata(block, &metadata_map);
      if (failed(result)) return result;
    
      // If there is no TPUReplicateMetadata op in this block, process blocks in
      // regions attached to the op's in the block.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  8. src/cmd/trace/goroutines.go

    		<td> <a href="/io?name={{.Name}}">graph</a> <a href="/io?name={{.Name}}&raw=1" download="io.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Sync block profile:</td>
    		<td> <a href="/block?name={{.Name}}">graph</a> <a href="/block?name={{.Name}}&raw=1" download="block.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Syscall profile:</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. cmd/bucket-object-lock.go

    					return ObjectLocked{}
    				}
    
    				if !ret.RetainUntilDate.Before(t) {
    					return ObjectLocked{}
    				}
    				return nil
    			}
    			// https://docs.aws.amazon.com/AmazonS3/latest/dev/object-lock-overview.html#object-lock-retention-modes
    			// If you try to delete objects protected by governance mode and have s3:BypassGovernanceRetention, the operation will succeed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. cmd/metacache-stream.go

    			buf.Reset()
    			bytebufferpool.Put(buf)
    		}()
    
    		block := newMetacacheWriter(buf, 1<<20)
    		defer block.Close()
    		finishBlock := func() {
    			if err := block.Close(); err != nil {
    				w.streamErr = err
    				return
    			}
    			current.data = buf.Bytes()
    			w.streamErr = nextBlock(&current)
    			// Prepare for next
    			current.n++
    			buf.Reset()
    			block.Reset(buf)
    			current.First = ""
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top