Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 169 for ccedil (0.16 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("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)
  4. 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)
  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/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

            this.asyncId = asyncId;
        }
    
    
        /**
         * @return the credit
         */
        public final int getCredit () {
            return this.credit;
        }
    
    
        /**
         * @param credit
         *            the credit to set
         */
        public final void setCredit ( int credit ) {
            this.credit = credit;
        }
    
    
        /**
         * @return the creditCharge
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Sep 30 10:47:31 UTC 2018
    - 19.9K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    	}
    
    	// Steal as much credit as we can from the background GC's
    	// scan credit. This is racy and may drop the background
    	// credit below 0 if two mutators steal at the same time. This
    	// will just cause steals to fail until credit is accumulated
    	// again, so in the long run it doesn't really matter, but we
    	// do have to handle the negative credit case.
    	bgScanCredit := gcController.bgScanCredit.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/lang/fr.js

    autorisés",groupCheckedRangeStart:"Choisissez entre ",groupCheckedTooFewStart:"Vous devez faire au moins ",groupCheckedTooManyStart:"Vous ne pouvez pas faire plus de ",groupCheckedEnd:" sélection(s)",badCreditCard:"Vous avez saisi un numéro de carte de crédit invalide",badCVV:"Vous avez saisi un CVV incorrect",wrongFileDim:"Mauvaise taille de l'image, ",imageTooTall:"l'image ne peut pas être plus élevée que",imageTooWide:"l'image ne peut pas être plus large que",imageTooSmall:"l'image est trop petite"...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/validation/formats.go

    	"isbn10",       // an ISBN10 number string like "0321751043"
    	"isbn13",       // an ISBN13 number string like "978-0321751041"
    	"creditcard",   // a credit card number defined by the regex ^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\\d{3})\\d{11})$ with any non digit characters mixed in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 09 09:26:38 UTC 2020
    - 3.3K bytes
    - Viewed (0)
Back to top