This file is indexed.

/usr/include/vowpalwabbit/vw_validate.h is in libvw-dev 8.5.0.dfsg1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/*
Copyright (c) by respective owners including Yahoo!, Microsoft, and
individual contributors. All rights reserved.  Released under a BSD (revised)
license as described in the file LICENSE.
*/

#pragma once
#include <stdint.h>

struct vw;

namespace VW
{
void validate_version(vw& all);
void validate_min_max_label(vw& all);
void validate_default_bits(vw& all, uint32_t local_num_bits);
void validate_num_bits(vw& all);
}