Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Rhys (0.22 sec)

  1. buildscripts/checkdeps.sh

    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    ## we have our own version compare function.
    ## Once OSX has the option, below function is good enough.
    Shell Script
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Fri May 26 05:07:25 GMT 2023
    - 3.4K bytes
    - Viewed (0)
  2. cni/pkg/ebpf/app/vmlinux.h

    typedef s32 int32_t;
    
    typedef u32 uint32_t;
    
    typedef u64 sector_t;
    
    typedef u64 blkcnt_t;
    
    typedef unsigned int gfp_t;
    
    typedef unsigned int fmode_t;
    
    typedef u64 phys_addr_t;
    
    typedef struct {
    	int counter;
    } atomic_t;
    
    typedef struct {
    	s64 counter;
    } atomic64_t;
    
    struct list_head {
    	struct list_head *next;
    	struct list_head *prev;
    };
    
    C
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Wed Oct 11 22:35:41 GMT 2023
    - 7.2K bytes
    - Viewed (0)
Back to top