Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Song (0.21 sec)

  1. cni/pkg/ebpf/app/vmlinux.h

    typedef unsigned int __u32;
    
    typedef long long int __s64;
    
    typedef long long unsigned int __u64;
    
    typedef __u8 u8;
    
    typedef __s16 s16;
    
    typedef __u16 u16;
    
    typedef __s32 s32;
    
    typedef __u32 u32;
    
    typedef __s64 s64;
    
    typedef __u64 u64;
    
    enum {
    	false = 0,
    	true = 1,
    };
    
    typedef long int __kernel_long_t;
    
    typedef long unsigned int __kernel_ulong_t;
    
    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)
  2. tensorflow/c/eager/c_api_test_util.h

                   tensorflow::uint64 send_device_incarnation);
    
    // Return a 1-D INT32 tensor containing a single value 1.
    TFE_TensorHandle* TestAxisTensorHandle(TFE_Context* ctx);
    
    // Return an op taking minimum of `input` long `axis` dimension.
    TFE_Op* MinOp(TFE_Context* ctx, TFE_TensorHandle* input,
                  TFE_TensorHandle* axis);
    
    // If there is a device of type `device_type`, returns true
    // and sets 'device_name' accordingly.
    C
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Jul 17 23:43:59 GMT 2023
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// be fetched from the backing filesystem. This callback is provided when the
      /// cache is constructed. It returns total bytes read ( -1 in case of errors
      /// ). The `status` should be `TF_OK` as long as the read from the remote
      /// filesystem succeeded (similar to the semantics of the read(2) system
      /// call).
      typedef std::function<int64_t(const std::string& filename, size_t offset,
    C
    - Registered: Tue Apr 09 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:46:34 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  4. cni/pkg/ebpf/app/ambient_redirect.bpf.c

        return bpf_map_lookup_elem(&log_level, &key);
    }
    
    // For app pod veth pair(in host ns) ingress hook
    SEC("tc")
    int app_outbound(struct __sk_buff *skb)
    {
        void *data = (void *)(long)skb->data;
        void *data_end = (void *)(long)skb->data_end;
        struct ethhdr *eth = data;
        struct iphdr *iph;
        struct udphdr *udph;
        struct ztunnel_info *zi = get_ztunnel_info();
        uint8_t capture_dns = 0;
    C
    - Registered: Wed Jan 24 22:53:09 GMT 2024
    - Last Modified: Thu Dec 14 02:11:31 GMT 2023
    - 12.9K bytes
    - Viewed (0)
Back to top