Ȏ x ؎ ( H 8 X H 8 ( h X h @ D 5V 04V :V 8# H# " @ , p4V 8 p V P8 0V p2V n9 4V h' 0 i 0 0 m p d P4V libcap-ng.so.0 1 /lib/x86_64-linux-gnu libcap-ng.so.0 A p}V V 0 @*V /V @ @ /V 0 y8 /V 0 y8 1 `V PV $V 0 V V @*V V V @d PV 4 0V 4 /V 0 y8 0V V 0 $V 0 V V y8 @*V 4 @d V V PV 0V 4 /V V <V ui ii ڑ ti ϑ ő ii @ `V PV 2U ui T T m aT T m ST T )0 T &U ti T T `/h GT T 4 rT U T U ii T U ii T T T 3V PV u `/h u P) u Q) u Y) u o u o v o v o /v ui }u fv ii }u \v ii }u Qv }u /v ui ru Gv ii }u ;v ti }u tV ;V P 04V @D p ` ;V ii ii , ti a, , ui a, , ii a, , ii a, , ii k, , ii a, , ii a, a 9V _!V ` 0 V | imap @6V < @ \ p 0V # 0 ;V =37 w imap_open =V V `W <V 0 <V y imap_reopen P>V <V <V 0 p=V nB:Mq imap_close ?V =V 8 @ <V 0 >V ) imap_num_msg ?V P>V <V 0 >V pBT imap_num_recent `@V ?V 8 @ <V ay_diff( $post_types_with_archive_pages, $indexed_post_types ); if ( $limit ) { return \array_slice( $unindexed_post_types, 0, $limit ); } return $unindexed_post_types; } /** * Returns the names of all the post types that have archive pages. * * @return array The list of names of all post types that have archive pages. */ protected function get_post_types_with_archive_pages() { // We only want to index archive pages of public post types that have them. $public_post_types = $this->post_type->get_public_post_types( 'object' ); $post_types_with_archive = \array_filter( $public_post_types, [ $this->post_type, 'has_archive' ] ); // We only need the post type names, not the objects. $post_types = []; foreach ( $post_types_with_archive as $post_type_with_archive ) { $post_types[] = $post_type_with_archive->name; } return $post_types; } /** * Retrieves the list of post type names for which an archive indexable exists. * * @return array The list of names of post types with unindexed archive pages. */ protected function get_indexed_post_type_archives() { $results = $this->repository->query() ->select( 'object_sub_type' ) ->where( 'object_type', 'post-type-archive' ) ->where_equal( 'version', $this->version ) ->find_array(); if ( $results === false ) { return []; } $callback = static function( $result ) { return $result['object_sub_type']; }; return \array_map( $callback, $results ); } /** * Returns a limited number of unindexed posts. * * @param int $limit Limit the maximum number of unindexed posts that are counted. * * @return int|false The limited number of unindexed posts. False if the query fails. */ public function get_limited_unindexed_count( $limit ) { return $this->get_total_unindexed( $limit ); } }