Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for nFn (0.02 sec)

  1. src/internal/types/testdata/fixedbugs/issue50929.go

    	var nFn NFn /* ERROR "not enough type arguments for type NFn: have 2, want 3" */ [Rc, RG]
    
    	var empty Rc
    	switch any(empty).(type) {
    	case BC /* ERROR "undefined: BC" */ :
    
    	case RSC[G]:
    		nFn = NSG /* ERROR "cannot use NSG[G]" */ [G]
    	}
    
    	return M /* ERROR "not enough type arguments for type M: have 2, want 3" */ [Rc, RG]{
    		Fn: func(rc Rc) {
    			NC(nFn /* ERROR "does not match" */)
    		},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:50:55 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    			if emit {
    				emitFunc(&dentries[idx], dcsites[idx], k, atl)
    			}
    			idx++
    		}
    		// now process any closures it contains
    		ncl := 0
    		for idx < nd {
    			nfn := dentries[idx].fname
    			if !clore.MatchString(nfn) {
    				break
    			}
    			ncl++
    			if emit {
    				emitFunc(&dentries[idx], dcsites[idx], 0, 1)
    			}
    			idx++
    		}
    		return idx
    	}
    
    	didx := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^UTIME_/ ||
    		$2 ~ /^XATTR_(CREATE|REPLACE|NO(DEFAULT|FOLLOW|SECURITY)|SHOWCOMPRESSION)/ ||
    		$2 ~ /^ATTR_(BIT_MAP_COUNT|(CMN|VOL|FILE)_)/ ||
    		$2 ~ /^FSOPT_/ ||
    		$2 ~ /^WDIO[CFS]_/ ||
    		$2 ~ /^NFN/ ||
    		$2 !~ /^NFT_META_IIFTYPE/ &&
    		$2 ~ /^NFT_/ ||
    		$2 ~ /^NF_NAT_/ ||
    		$2 ~ /^XDP_/ ||
    		$2 ~ /^RWF_/ ||
    		$2 ~ /^(HDIO|WIN|SMART)_/ ||
    		$2 ~ /^CRYPTO_/ ||
    		$2 ~ /^TIPC_/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top