Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for roundup (0.26 sec)

  1. src/runtime/malloc.go

    // http://goog-perftools.sourceforge.net/doc/tcmalloc.html
    
    // The main allocator works in runs of pages.
    // Small allocation sizes (up to and including 32 kB) are
    // rounded to one of about 70 size classes, each of which
    // has its own free set of objects of exactly that size.
    // Any free page of memory can be split into a set of objects
    // of one size class, which are then managed using a free bitmap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    input:checked+.slider {
    	background-color: #2196f3;
    }
    
    input:checked+.slider:before {
    	-webkit-transform: translateX(26px);
    	-ms-transform: translateX(26px);
    	transform: translateX(26px);
    }
    
    /* Rounded sliders */
    .slider {
    	border-radius: 30px;
    }
    
    .slider:before {
    	border-radius: 50%;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    var ymshufb = []ytab{
    	{Zm2_r, 2, argList{Yxm, Yxr}},
    }
    
    // It should never have more than 1 entry,
    // because some optab entries have opcode sequences that
    // are longer than 2 bytes (zoffset=2 here),
    // ROUNDPD and ROUNDPS and recently added BLENDPD,
    // to name a few.
    var yxshuf = []ytab{
    	{Zibm_r, 2, argList{Yu8, Yxm, Yxr}},
    }
    
    var yextrw = []ytab{
    	{Zibm_r, 2, argList{Yu8, Yxr, Yrl}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    	//
    	// The toolchain1 we built earlier is built from the new sources,
    	// but because it was built using cmd/go it has no build IDs.
    	// The eventually installed toolchain needs build IDs, so we need
    	// to do another round:
    	//
    	//	toolchain2 = mk(new toolchain, toolchain1, go_bootstrap)
    	//
    	timelog("build", "toolchain2")
    	if vflag > 0 {
    		xprintf("\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    }
    
    type serverPoolsAvailableSpace []poolAvailableSpace
    
    type poolAvailableSpace struct {
    	Index      int
    	Available  uint64 // in bytes
    	MaxUsedPct int    // Used disk percentage of most filled disk, rounded down.
    }
    
    // TotalAvailable - total available space
    func (p serverPoolsAvailableSpace) TotalAvailable() uint64 {
    	total := uint64(0)
    	for _, z := range p {
    		total += z.Available
    	}
    	return total
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(Relu6GradOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(ReluGradOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(RintOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(RoundOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(RsqrtOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(RsqrtGradOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SeluOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SeluGradOp);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    func (cc *http2ClientConn) tooIdleLocked() bool {
    	// The Round(0) strips the monontonic clock reading so the
    	// times are compared based on their wall time. We don't want
    	// to reuse a connection that's been sitting idle during
    	// VM/laptop suspend if monotonic time was also frozen.
    	return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && time.Since(cc.lastIdle.Round(0)) > cc.idleTimeout
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(CosOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(LocalResponseNormalizationOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(FloorOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(RoundOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(NegOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SinOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SqrtOp);
    INFER_RETURN_TYPE_COMPONENTS_FROM_OPERANDS(SquareOp);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      }];
    
      let arguments = (ins
        0DTensorOf<[I1]>:$cond,
    
        // Used to map StatelessIf and If op defined in TensorFlow to a common op.
        BoolAttr:$is_stateless,
        // Used to maintain function name when round-tripping
        // between functional and regional control flow.  This can be removed if
        // the runtime does not require globally unique then/else branch function names.
        OptionalAttr<StrAttr>:$_then_func_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. doc/go_spec.html

    1e10                uint64      10000000000 is in the set of unsigned 64-bit integers
    2.718281828459045   float32     2.718281828459045 rounds to 2.7182817 which is in the set of float32 values
    -1e-1000            float64     -1e-1000 rounds to IEEE -0.0 which is further simplified to 0.0
    0i                  int         0 is an integer value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top