Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for 0_80 (0.05 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0F76          ; mapped                 ; 0FB2 0F80     # 2.0  TIBETAN VOWEL SIGN VOCALIC R
    0F77          ; mapped                 ; 0FB2 0F71 0F80 #2.0  TIBETAN VOWEL SIGN VOCALIC RR
    0F78          ; mapped                 ; 0FB3 0F80     # 2.0  TIBETAN VOWEL SIGN VOCALIC L
    0F79          ; mapped                 ; 0FB3 0F71 0F80 #2.0  TIBETAN VOWEL SIGN VOCALIC LL
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteAMD64.go

    		v0.AddArg2(ptr, mem)
    		return true
    	}
    	// match: (MOVBQSX (ANDLconst [c] x))
    	// cond: c & 0x80 == 0
    	// result: (ANDLconst [c & 0x7f] x)
    	for {
    		if v_0.Op != OpAMD64ANDLconst {
    			break
    		}
    		c := auxIntToInt32(v_0.AuxInt)
    		x := v_0.Args[0]
    		if !(c&0x80 == 0) {
    			break
    		}
    		v.reset(OpAMD64ANDLconst)
    		v.AuxInt = int32ToAuxInt(c & 0x7f)
    		v.AddArg(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  3. RELEASE.md

    @zhongzyd, Ziming Dong, Zohar Jackson
    
    We are also grateful to all who filed issues or helped resolve them, asked and
    answered questions, and were part of inspiring discussions.
    
    # Release 0.8.0
    
    ## Major Features and Improvements
    
    *   Added a distributed runtime using GRPC
    *   Move skflow to `contrib/learn`
    *   Better linear optimizer in `contrib/linear_optimizer`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top