Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for easing (0.16 sec)

  1. src/cmd/link/internal/ld/data.go

    	}
    	rr.Xsym = rs
    	rr.Type = r.Type()
    	rr.Size = r.Siz()
    	return rr
    }
    
    // relocSymState hold state information needed when making a series of
    // successive calls to relocsym(). The items here are invariant
    // (meaning that they are set up once initially and then don't change
    // during the execution of relocsym), with the exception of a slice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/net/http/server.go

    	// WriteHeader, to make sure we don't consume the
    	// remaining request body to try to advance to the next HTTP
    	// request. Instead, when this is set, we stop reading
    	// subsequent requests on this connection and stop reading
    	// input from it.
    	requestBodyLimitHit bool
    
    	// trailers are the headers to be sent after the handler
    	// finishes writing the body. This field is initialized from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    // to bugs that might prevent updates from being delivered (such as the previous bug with
    // orphaned pods). Instead of asking the work queue for pending work, consider asking the
    // PodWorker which pods should be synced.
    func (kl *Kubelet) getPodsToSync() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    	podUIDs := kl.workQueue.GetWork()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LocalCache.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
        return h ^ (h >>> 16);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    // to ensure we 100% match Envoy's implementation
    func isPrime(x uint64) bool {
    	if x != 0 && x < 4 {
    		return true // eliminates special-casing 2.
    	} else if (x & 1) == 0 {
    		return false // eliminates even numbers >2.
    	}
    
    	limit := uint64(math.Sqrt(float64(x)))
    	for factor := uint64(3); factor <= limit; factor += 2 {
    		if (x % factor) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          auto value = while_op.getOperand(while_index);
          if (body_block.getArgument(arg_index).use_empty() &&
              cond_block.getArgument(arg_index).use_empty() &&
              // Note: since we are not erasing results, need to use while_index
              // to check if the corresponding result is unused.
              while_op.getResult(while_index).use_empty()) {
            unchanged = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
        return h ^ (h >>> 16);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    #define DCOMMENT_OP(OP, MSG) \
      LLVM_DEBUG(OP->print(llvm::dbgs() << MSG << " "); llvm::dbgs() << "\n")
    
    using ::int64_t;
    using mlir::func::FuncOp;
    using tensorflow::shape_inference::DimensionHandle;
    using tensorflow::shape_inference::InferenceContext;
    using tensorflow::shape_inference::ShapeHandle;
    
    namespace mlir {
    namespace TF {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    #include "tsl/platform/tstring.h"
    
    using absl::StatusOr;
    using llvm::dyn_cast;
    using llvm::formatv;
    using llvm::isa;
    using llvm::StringRef;
    using mlir::Dialect;
    using mlir::ElementsAttr;
    using mlir::MLIRContext;
    using mlir::ModuleOp;
    using mlir::NoneType;
    using mlir::Operation;
    using mlir::Region;
    using mlir::StringAttr;
    using mlir::TensorType;
    using mlir::Twine;
    using mlir::Type;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    // producing an object file. On some of those system a plain -r (not
    // -Wl,-r) will turn off --build-id, but clang 3.0 doesn't support a
    // plain -r. I don't know how to turn off --build-id when using clang
    // other than passing a trailing --build-id=none. So that is what we
    // do, but only on systems likely to support it, which is to say,
    // systems that normally use gold or the GNU linker.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top