Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for cedil (0.06 sec)

  1. src/html/entity.go

    		"ccaron;":                          '\U0000010D',
    		"ccedil;":                          '\U000000E7',
    		"ccirc;":                           '\U00000109',
    		"ccups;":                           '\U00002A4C',
    		"ccupssm;":                         '\U00002A50',
    		"cdot;":                            '\U0000010B',
    		"cedil;":                           '\U000000B8',
    		"cemptyv;":                         '\U000029B2',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/entity.go

    	"⩍":                           "\u2a4d",
    	"č":                          "\u010d",
    	"ç":                          "\u00e7",
    	"ĉ":                           "\u0109",
    	"⩌":                           "\u2a4c",
    	"⩐":                         "\u2a50",
    	"ċ":                            "\u010b",
    	"¸":                           "\u00b8",
    	"⦲":                         "\u29b2",
    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-stax.vm

            entities.put("acute", "\u00b4");
            entities.put("micro", "\u00b5");
            entities.put("para", "\u00b6");
            entities.put("middot", "\u00b7");
            entities.put("cedil", "\u00b8");
            entities.put("sup1", "\u00b9");
            entities.put("ordm", "\u00ba");
            entities.put("raquo", "\u00bb");
            entities.put("frac14", "\u00bc");
            entities.put("frac12", "\u00bd");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

            entities.put("acute", "\u00b4");
            entities.put("micro", "\u00b5");
            entities.put("para", "\u00b6");
            entities.put("middot", "\u00b7");
            entities.put("cedil", "\u00b8");
            entities.put("sup1", "\u00b9");
            entities.put("ordm", "\u00ba");
            entities.put("raquo", "\u00bb");
            entities.put("frac14", "\u00bc");
            entities.put("frac12", "\u00bd");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. src/encoding/xml/xml.go

    	"deg":      "\u00B0",
    	"plusmn":   "\u00B1",
    	"sup2":     "\u00B2",
    	"sup3":     "\u00B3",
    	"acute":    "\u00B4",
    	"micro":    "\u00B5",
    	"para":     "\u00B6",
    	"middot":   "\u00B7",
    	"cedil":    "\u00B8",
    	"sup1":     "\u00B9",
    	"ordm":     "\u00BA",
    	"raquo":    "\u00BB",
    	"frac14":   "\u00BC",
    	"frac12":   "\u00BD",
    	"frac34":   "\u00BE",
    	"iquest":   "\u00BF",
    	"Agrave":   "\u00C0",
    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. 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)
  7. 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)
  8. 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)
  9. src/math/floor_386.s

    	MOVW    -2(SP), AX
    	ANDW    $0xf3ff, AX
    	ORW     $0x0800, AX  // Rounding Control set to +Inf
    	MOVW    AX, -4(SP)   // store new Control Word
    	FLDCW   -4(SP)       // load new Control Word
    	FRNDINT              // F0=Ceil(x)
    	FLDCW   -2(SP)       // load old Control Word
    	FMOVDP  F0, ret+8(FP)
    	RET
    
    // func archFloor(x float64) float64
    TEXT ·archFloor(SB),NOSPLIT,$0
    	FMOVD   x+0(FP), F0  // F0=x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/helpers_linux.go

    // See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r662552642
    func sharesToMilliCPU(shares int64) int64 {
    	milliCPU := int64(0)
    	if shares >= int64(cm.MinShares) {
    		milliCPU = int64(math.Ceil(float64(shares*milliCPUToCPU) / float64(cm.SharesPerCPU)))
    	}
    	return milliCPU
    }
    
    // quotaToMilliCPU converts cpu.cfs_quota_us and cpu.cfs_period_us to milli-CPU value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top