Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for tableSum (0.55 sec)

  1. src/hash/crc64/crc64.go

    }
    
    // Checksum returns the CRC-64 checksum of data
    // using the polynomial represented by the [Table].
    func Checksum(data []byte, tab *Table) uint64 { return update(0, tab, data) }
    
    // tableSum returns the ISO checksum of table t.
    func tableSum(t *Table) uint64 {
    	var a [2048]byte
    	b := a[:0]
    	if t != nil {
    		for _, x := range t {
    			b = byteorder.BeAppendUint64(b, x)
    		}
    	}
    	return Checksum(b, MakeTable(ISO))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32.go

    // ChecksumIEEE returns the CRC-32 checksum of data
    // using the [IEEE] polynomial.
    func ChecksumIEEE(data []byte) uint32 {
    	ieeeOnce.Do(ieeeInit)
    	return updateIEEE(0, data)
    }
    
    // tableSum returns the IEEE checksum of table t.
    func tableSum(t *Table) uint32 {
    	var a [1024]byte
    	b := a[:0]
    	if t != nil {
    		for _, x := range t {
    			b = byteorder.BeAppendUint32(b, x)
    		}
    	}
    	return ChecksumIEEE(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.menu_system	=	Système
    labels.menu_wizard	=	Assistant
    labels.menu_crawl_config	=	Général
    labels.menu_scheduler_config	=	Planificateur
    labels.menu_dashboard_config	=	Tableau de bord
    labels.menu_design	=	Conception de pages
    labels.menu_dict	=	Dictionnaire
    labels.menu_data	=	Restauration de sauvegarde
    labels.menu_crawl	=	Crawler
    labels.menu_web	=	Web
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    summaryDisplayElement=tr.ui.b.createSpan({textContent:summaryDisplayElement,});tableRows.unshift(new BreakdownTableSummaryRow(summaryDisplayElement,histogramNames));}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  5. docs/fr/docs/contributing.md

    * Utilisez les mêmes images, noms de fichiers et liens. Vous n'avez pas besoin de changer quoi que ce soit pour que cela fonctionne.
    
    * Pour vérifier le code à 2 lettres de la langue que vous souhaitez traduire, vous pouvez utiliser le tableau <a href="https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes" class="external-link" target="_blank">Liste des codes ISO 639-1</a>.
    
    #### Langue existante
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top