This file is indexed.

/usr/include/vowpalwabbit/multilabel.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
19
20
21
22
23
24
/*
Copyright (c) by respective owners including Yahoo!, Microsoft, and
individual contributors. All rights reserved.  Released under a BSD
license as described in the file LICENSE.
 */
#pragma once
#include "label_parser.h"

struct example;
struct vw;

namespace MULTILABEL
{
struct labels
{ v_array<uint32_t> label_v;
};

void output_example(vw& all, example& ec);
extern label_parser multilabel;

bool example_is_test(example& ec);

void print_update(vw& all, bool is_test, example& ec, const v_array<example*> *ec_seq);
}