Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for Hangul (0.17 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/composition.go

    		return 3 * JamoUTF8Len
    	}
    	return 2 * JamoUTF8Len
    }
    
    // decomposeHangul algorithmically decomposes a Hangul rune into
    // its Jamo components.
    // See https://unicode.org/reports/tr15/#Hangul for details on decomposing Hangul.
    func (rb *reorderBuffer) decomposeHangul(r rune) {
    	r -= hangulBase
    	x := r % jamoTCount
    	r /= jamoTCount
    	rb.appendRune(jamoLBase + r/jamoVCount)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    		return 3 * JamoUTF8Len
    	}
    	return 2 * JamoUTF8Len
    }
    
    // decomposeHangul algorithmically decomposes a Hangul rune into
    // its Jamo components.
    // See https://unicode.org/reports/tr15/#Hangul for details on decomposing Hangul.
    func (rb *reorderBuffer) decomposeHangul(r rune) {
    	r -= hangulBase
    	x := r % jamoTCount
    	r /= jamoTCount
    	rb.appendRune(jamoLBase + r/jamoVCount)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/norm/iter.go

    	p := i.p
    	next := p + hangulUTF8Size
    	if next >= i.rb.nsrc {
    		i.setDone()
    	} else if i.rb.src.hangul(next) == 0 {
    		i.rb.ss.next(i.info)
    		i.info = i.rb.f.info(i.rb.src, i.p)
    		i.next = i.rb.f.nextMain
    		return i.next(i)
    	}
    	i.p = next
    	return i.buf[:decomposeHangul(i.buf[:], i.rb.src.hangul(p))]
    }
    
    func nextDone(i *Iter) []byte {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/iter.go

    	p := i.p
    	next := p + hangulUTF8Size
    	if next >= i.rb.nsrc {
    		i.setDone()
    	} else if i.rb.src.hangul(next) == 0 {
    		i.rb.ss.next(i.info)
    		i.info = i.rb.f.info(i.rb.src, i.p)
    		i.next = i.rb.f.nextMain
    		return i.next(i)
    	}
    	i.p = next
    	return i.buf[:decomposeHangul(i.buf[:], i.rb.src.hangul(p))]
    }
    
    func nextDone(i *Iter) []byte {
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. docs/fr/docs/contributing.md

    * 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
    
    Disons que vous voulez traduire une page pour une langue qui a déjà des traductions pour certaines pages, comme l'espagnol.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  6. cmd/metrics-v3-types.go

    const (
    	// CounterMT - represents a counter metric.
    	CounterMT MetricType = iota
    	// GaugeMT - represents a gauge metric.
    	GaugeMT
    	// HistogramMT - represents a histogram metric.
    	HistogramMT
    	// rangeL - represents a range label.
    	rangeL = "range"
    )
    
    func (mt MetricType) String() string {
    	switch mt {
    	case CounterMT:
    		return "counter"
    	case GaugeMT:
    		return "gauge"
    	case HistogramMT:
    		return "histogram"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/runtime/sigtab_aix.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	0:           {0, "SIGNONE: no trap"},
    	_SIGHUP:     {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	_SIGINT:     {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	_SIGQUIT:    {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	_SIGILL:     {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_fr.properties

    labels.user_registeredAddress	=	Adresse enregistrée
    labels.registeredAddress	=	Adresse enregistrée
    labels.user_displayName	=	Afficher un nom
    labels.displayName	=	Afficher un nom
    labels.user_preferredLanguage	=	langue préférée
    labels.preferredLanguage	=	langue préférée
    labels.user_departmentNumber	=	Numéro de département
    labels.departmentNumber	=	Numéro de département
    labels.user_uidNumber	=	uidNumber
    labels.uidNumber	=	uidNumber
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  9. api/go1.7.txt

    pkg unicode, var Newa *RangeTable
    pkg unicode, var Osage *RangeTable
    pkg unicode, var Prepended_Concatenation_Mark *RangeTable
    pkg unicode, var Sentence_Terminal *RangeTable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  10. src/os/signal/signal_test.go

    	// If we're being notified, then the signal should not be ignored.
    	if Ignored(syscall.SIGHUP) {
    		t.Errorf("expected SIGHUP to not be ignored.")
    	}
    
    	if want, got := "signal.NotifyContext(context.Background.WithCancel, [hangup])", fmt.Sprint(c); want != got {
    		t.Errorf("c.String() = %q, wanted %q", got, want)
    	}
    
    	stop()
    	<-c.Done()
    	if got := c.Err(); got != context.Canceled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
Back to top