Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for lceil (0.12 sec)

  1. src/mdo/reader-stax.vm

            entities.put("oplus", "\u2295");
            entities.put("otimes", "\u2297");
            entities.put("perp", "\u22a5");
            entities.put("sdot", "\u22c5");
            entities.put("lceil", "\u2308");
            entities.put("rceil", "\u2309");
            entities.put("lfloor", "\u230a");
            entities.put("rfloor", "\u230b");
            entities.put("lang", "\u2329");
            entities.put("rang", "\u232a");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⦋":                           "\u298b",
    	"⦏":                         "\u298f",
    	"⦍":                         "\u298d",
    	"ľ":                          "\u013e",
    	"ļ":                          "\u013c",
    	"⌈":                           "\u2308",
    	"{":                            "\u007b",
    	"л":                             "\u043b",
    	"⤶":                            "\u2936",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  3. src/mdo/reader.vm

            entities.put("oplus", "\u2295");
            entities.put("otimes", "\u2297");
            entities.put("perp", "\u22a5");
            entities.put("sdot", "\u22c5");
            entities.put("lceil", "\u2308");
            entities.put("rceil", "\u2309");
            entities.put("lfloor", "\u230a");
            entities.put("rfloor", "\u230b");
            entities.put("lang", "\u2329");
            entities.put("rang", "\u232a");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  4. src/html/entity.go

    		"lbrksld;":                         '\U0000298F',
    		"lbrkslu;":                         '\U0000298D',
    		"lcaron;":                          '\U0000013E',
    		"lcedil;":                          '\U0000013C',
    		"lceil;":                           '\U00002308',
    		"lcub;":                            '\U0000007B',
    		"lcy;":                             '\U0000043B',
    		"ldca;":                            '\U00002936',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"nsub":     "\u2284",
    	"sube":     "\u2286",
    	"supe":     "\u2287",
    	"oplus":    "\u2295",
    	"otimes":   "\u2297",
    	"perp":     "\u22A5",
    	"sdot":     "\u22C5",
    	"lceil":    "\u2308",
    	"rceil":    "\u2309",
    	"lfloor":   "\u230A",
    	"rfloor":   "\u230B",
    	"lang":     "\u2329",
    	"rang":     "\u232A",
    	"loz":      "\u25CA",
    	"spades":   "\u2660",
    	"clubs":    "\u2663",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  6. src/math/floor.go

    		}
    		return -d
    	}
    	d, _ := Modf(x)
    	return d
    }
    
    // Ceil returns the least integer value greater than or equal to x.
    //
    // Special cases are:
    //
    //	Ceil(±0) = ±0
    //	Ceil(±Inf) = ±Inf
    //	Ceil(NaN) = NaN
    func Ceil(x float64) float64 {
    	if haveArchCeil {
    		return archCeil(x)
    	}
    	return ceil(x)
    }
    
    func ceil(x float64) float64 {
    	return -Floor(-x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    	case "url", "lowerAscii", "upperAscii", "substring", "trim":
    		if len(args) >= 1 {
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "replace", "split":
    		if len(args) >= 1 {
    			// cost is the traversal plus the construction of the result
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * 2 * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "join":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      int sh;  // Stride on "height" dimension.
      int sw;  // Stride on "width" dimension.
    
      bool ceil_mode;  // Rounding strategy (ceil or floor).
    };
    
    // Rounds the dimension based on the ceil mode.
    int RoundDim(float dim, bool ceil_mode) {
      if (ceil_mode) {
        return std::ceil(dim);
      }
      return std::floor(dim);
    }
    
    // For H or W, calculate the output dimension for average pool.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/replica_calculator.go

    		if err != nil {
    			return 0, time.Time{}, fmt.Errorf("unable to calculate ready pods: %s", err)
    		}
    		replicaCount = int32(math.Ceil(usageRatio * float64(readyPodCount)))
    	} else {
    		// Scale to zero or n pods depending on usageRatio
    		replicaCount = int32(math.Ceil(usageRatio))
    	}
    
    	return replicaCount, timestamp, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool_patterns.td

                        (IsBoolCompositeAttribute<"count_include_pad", "true"> $attrs)]>;
    
    // Replaces aten.avg_pool2d with ceil mode with (T -> tfl.pad -> tfl.average_pool_2d -> mul -> T). Multiplies by a constant
    // which corrects the overcounting of divisors that would occur if doing this computation on a padded tensor with ceil mode off.
    def LegalizeAvgPoolCeilModeTrue: Pat<
                        (MHLO_CompositeOp:$old_val
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top