Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 203 of 203 for Ctrl (0.02 seconds)

  1. cmd/utils.go

    	if len(strs) == 1 {
    		return xfix
    	}
    	// compare first to rest
    	for _, str := range strs[1:] {
    		xfixl := len(xfix)
    		strl := len(str)
    		// short-circuit empty strings
    		if xfixl == 0 || strl == 0 {
    			return ""
    		}
    		// maximum possible length
    		maxl := min(strl, xfixl)
    		// compare letters
    		if pre {
    			// prefix, iterate left to right
    			for i := range maxl {
    				if xfix[i] != str[i] {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 33K bytes
    - Click Count (0)
  2. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	BTRW R11, R11                           // 66450fb3db
    	BTRL $7, (BX)                           // 0fba3307
    	BTRL $7, (R11)                          // 410fba3307
    	BTRL $7, DX                             // 0fbaf207
    	BTRL $7, R11                            // 410fbaf307
    	BTRL DX, (BX)                           // 0fb313
    	BTRL R11, (BX)                          // 440fb31b
    	BTRL DX, (R11)                          // 410fb313
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Click Count (1)
  3. RELEASE.md

        an alternative to accepting a `callable` loss.
    *   Adds `beta` hyperparameter to
        [FTRL](https://www.tensorflow.org/api_docs/python/tf/keras/optimizers/Ftrl)
        optimizer classes (Keras and others) to match
        [FTRL paper](https://research.google.com/pubs/archive/41159.pdf).
    *   `Optimizer.__init__` now accepts a `gradient_aggregator` to allow for
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top