Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,433 for Dead (0.09 sec)

  1. test/codegen/clobberdead.go

    	// arm64:`MOVW\tR27, command-line-arguments\.x`, `MOVW\tR27, command-line-arguments\.y`, -`MOVW\tR27, command-line-arguments\.z`
    	x, y, z := p1, p2, p3
    	addrTaken(&z)
    	// x is dead at the call (the value of x is loaded before the CALL), y is not
    	// amd64:`MOVL\t\$3735936685, command-line-arguments\.x`, -`MOVL\t\$3735936685, command-line-arguments\.y`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/internal/concurrent/hashtriemap.go

    func (head *entry[K, V]) compareAndDelete(key K, value V, keyEqual, valEqual equalFunc) (*entry[K, V], bool) {
    	if keyEqual(unsafe.Pointer(&head.key), abi.NoEscape(unsafe.Pointer(&key))) &&
    		valEqual(unsafe.Pointer(&head.value), abi.NoEscape(unsafe.Pointer(&value))) {
    		// Drop the head of the list.
    		return head.overflow.Load(), true
    	}
    	i := &head.overflow
    	e := i.Load()
    	for e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/api/internal/resolve/DefaultProjectModelResolver.java

            if (projectInternal == null) {
                throw new UnknownProjectException("Project with path '" + path + "' not found.");
            }
    
            // TODO This is a brain-dead way to ensure that the reference project's model is ready to access
            return projectInternal.getOwner().fromMutableState(project -> {
                project.prepareForRuleBasedPlugins();
                project.evaluate();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/post_quantize_patterns.td

    include "mlir/IR/PatternBase.td"
    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_ops.td"
    
    // Both Quantize and Dequantize ops have side effects, so we have to define
    // patterns to remove dead ones after the quantization rewrite.
    def : Pat<(TFL_QuantizeOp:$op $in, $qt), (replaceWithValue $in), [(HasNoUseOf:$op)]>;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 16 23:20:46 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/eventbus/EventBus.java

     * worry about being reentrant, unless also called from outside the EventBus.
     *
     * <h2>Dead Events</h2>
     *
     * <p>If an event is posted, but no registered subscribers can accept it, it is considered "dead."
     * To give the system a second chance to handle dead events, they are wrapped in an instance of
     * {@link DeadEvent} and reposted.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 17 16:01:41 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/eventbus/EventBus.java

     * worry about being reentrant, unless also called from outside the EventBus.
     *
     * <h2>Dead Events</h2>
     *
     * <p>If an event is posted, but no registered subscribers can accept it, it is considered "dead."
     * To give the system a second chance to handle dead events, they are wrapped in an instance of
     * {@link DeadEvent} and reposted.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  7. src/unique/handle.go

    		}
    		// Now that we're sure there's a value in the map, let's
    		// try to get the pointer we need out of it.
    		ptr = wp.Strong()
    		if ptr != nil {
    			break
    		}
    		// The weak pointer is nil, so the old value is truly dead.
    		// Try to remove it and start over.
    		m.CompareAndDelete(value, wp)
    	}
    	runtime.KeepAlive(toInsert)
    	return Handle[T]{ptr}
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/phi.go

    	for _, b := range s.f.Blocks {
    		for _, v := range b.Values {
    			if v.Op == ssa.OpPhi {
    				v.AuxInt = 0
    			}
    			// Any remaining FwdRefs are dead code.
    			if v.Op == ssa.OpFwdRef {
    				v.Op = ssa.OpUnknown
    				v.Aux = nil
    			}
    		}
    	}
    }
    
    func (s *phiState) insertVarPhis(n int, var_ ir.Node, defs []*ssa.Block, typ *types.Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/convert_fake_quant_to_qdq.cc

      if (failed(
              ConvertFakeQuantOps(func, ctx, /*use_fake_quant_num_bits=*/false))) {
        func.emitError() << "quant-convert-fake-quant-to-qdq pass failed.";
        signalPassFailure();
      }
    
      // For removing dead FakeQuant* ops
      RewritePatternSet patterns(ctx);
      if (failed(applyPatternsAndFoldGreedily(func, std::move(patterns)))) {
        signalPassFailure();
      }
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 00:56:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/runtime/testdata/testprog/lockosthread.go

    	// which should have died is still running. However, rather than do this with
    	// thread IDs, it does this by unsharing state on that thread. This way, it
    	// also detects whether new threads were cloned from the dead thread, and not
    	// from a clean thread. Cloning from a locked thread is undesirable since
    	// cloned threads will inherit potentially unwanted OS state.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top