Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 168 (0.08 sec)

  1. api/go1.14.txt

    pkg log/syslog (freebsd-arm64), const LOG_LOCAL3 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL4 = 160
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL4 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL5 = 168
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL5 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL6 = 176
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL6 Priority
    pkg log/syslog (freebsd-arm64), const LOG_LOCAL7 = 184
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewriteARM64.go

    		return true
    	}
    	// match: (Move [s] dst src mem)
    	// cond: s%16 != 0 && s%16 <= 8 && s > 16
    	// result: (Move [8] (OffPtr <dst.Type> dst [s-8]) (OffPtr <src.Type> src [s-8]) (Move [s-s%16] dst src mem))
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s%16 != 0 && s%16 <= 8 && s > 16) {
    			break
    		}
    		v.reset(OpMove)
    		v.AuxInt = int64ToAuxInt(8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 608.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	}
    	// match: (Move [s] dst src mem)
    	// cond: s > 16 && s%16 != 0 && s%16 <= 8
    	// result: (Move [s-s%16] (OffPtr <dst.Type> dst [s%16]) (OffPtr <src.Type> src [s%16]) (MOVQstore dst (MOVQload src mem) mem))
    	for {
    		s := auxIntToInt64(v.AuxInt)
    		dst := v_0
    		src := v_1
    		mem := v_2
    		if !(s > 16 && s%16 != 0 && s%16 <= 8) {
    			break
    		}
    		v.reset(OpMove)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  4. RELEASE.md

    *   Set `/d2ReducedOptimizeHugeFunctions` by default for Windows builds. This
        provides a big compile-time speedup, and effectively raises the minimum
        supported MSVC version to 16.4 (current: 16.8).
    
        *   See:
            https://groups.google.com/a/tensorflow.org/d/topic/build/SsW98Eo7l3o/discussion
    
    *   TensorRT
    
        *   Removed the deprecated `session_config` parameter for the TF1-TRT
    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