• all-is-cubes 0.5.0/src/space/builder.rs
    180
            let mut blocks = Vec::from(make_some_blocks::<2>()); // TODO: generate arbitrary blocks with attributes
    181
            #[allow(clippy::same_item_push)]
    182
            for _ in 0..6 {
  • cbe-program 1.15.0/src/pubkey.rs
    474
        /// [`find_program_address`]: Pubkey::find_program_address
    475
        #[allow(clippy::same_item_push)]
    476
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • cli_lib 1.25.2/lsp/completions.rs
    576
                // actually the clippy suggestions here are less readable for once
    577
                #[allow(clippy::same_item_push)]
    578
                for _ in segments_b {
  • conec 0.2.0/src/tests.rs
    398
            let mut streams = Vec::with_capacity(4);
    399
            #[allow(clippy::same_item_push)] // suppress false positive
    400
            for _ in 0..4usize {
  • deno_3p_lib 1.25.2/lsp/completions.rs
    568
                // actually the clippy suggestions here are less readable for once
    569
                #[allow(clippy::same_item_push)]
    570
                for _ in segments_b {
  • deno_cli_lib 1.8.3/lsp/completions.rs
    406
                // actually the clippy suggestions here are less readable for once
    407
                #[allow(clippy::same_item_push)]
    408
                for _ in segments_b {
  • domino_program 0.1.2/src/pubkey.rs
    437
        /// [`find_program_address`]: Pubkey::find_program_address
    438
        #[allow(clippy::same_item_push)]
    439
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • domino-program-dp 0.1.11/src/pubkey.rs
    437
        /// [`find_program_address`]: Pubkey::find_program_address
    438
        #[allow(clippy::same_item_push)]
    439
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • easyops_deno 1.13.0/lsp/completions.rs
    365
                // actually the clippy suggestions here are less readable for once
    366
                #[allow(clippy::same_item_push)]
    367
                for _ in segments_b {
  • fluffl 0.0.5/src/decoders/base64.rs
    41
    #[allow(clippy::same_item_push)]
    42
    pub fn decode<S: AsRef<str>>(raw_text: S) -> Result<Vec<u8>, Error> {
  • futures-channel 0.3.26/tests/mpsc.rs
    259
    #[allow(clippy::same_item_push)]
    260
    #[test]
    400
    /// Tests that after `poll_ready` indicates capacity a channel can always send without waiting.
    401
    #[allow(clippy::same_item_push)]
    402
    #[test]
  • gemachain-entry 1.8.0/src/entry.rs
    653
    #[allow(clippy::same_item_push)]
    654
    pub fn create_ticks(num_ticks: u64, hashes_per_tick: u64, mut hash: Hash) -> Vec<Entry> {
    664
    #[allow(clippy::same_item_push)]
    665
    pub fn create_random_ticks(num_ticks: u64, max_hashes_per_tick: u64, mut hash: Hash) -> Vec<Entry> {
  • gemachain-gossip 1.8.0/src/cluster_info.rs
    4045
        #[test]
    4046
        #[allow(clippy::same_item_push)]
    4047
        fn test_push_epoch_slots_large() {
  • gemachain-gossip 1.8.0/src/epoch_slots.rs
    488
        #[test]
    489
        #[allow(clippy::same_item_push)]
    490
        fn test_epoch_slots_fill_uncompressed_random_range() {
    507
        #[test]
    508
        #[allow(clippy::same_item_push)]
    509
        fn test_epoch_slots_fill_compressed_random_range() {
    528
        #[test]
    529
        #[allow(clippy::same_item_push)]
    530
        fn test_epoch_slots_fill_random_range() {
  • gemachain-ledger 1.8.0/src/blockstore.rs
    7820
        #[test]
    7821
        #[allow(clippy::same_item_push)]
    7822
        fn test_get_last_hash() {
  • gemachain-program 1.8.2/src/pubkey.rs
    291
        /// exceeded.
    292
        #[allow(clippy::same_item_push)]
    293
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • gemachain-transaction-status 1.8.2/src/parse_stake.rs
    288
        #[test]
    289
        #[allow(clippy::same_item_push)]
    290
        fn test_parse_stake_instruction() {
    536
        #[test]
    537
        #[allow(clippy::same_item_push)]
    538
        fn test_parse_stake_set_lockup() {
    684
        #[test]
    685
        #[allow(clippy::same_item_push)]
    686
        fn test_parse_stake_checked_instructions() {
  • gemachain-transaction-status 1.8.2/src/parse_system.rs
    203
        #[test]
    204
        #[allow(clippy::same_item_push)]
    205
        fn test_parse_system_instruction() {
    378
        #[test]
    379
        #[allow(clippy::same_item_push)]
    380
        fn test_parse_system_instruction_nonce() {
  • gemachain-transaction-status 1.8.2/src/parse_token.rs
    480
        #[test]
    481
        #[allow(clippy::same_item_push)]
    482
        fn test_parse_token() {
    1085
        #[test]
    1086
        #[allow(clippy::same_item_push)]
    1087
        fn test_token_ix_not_enough_keys() {
  • gemachain-transaction-status 1.8.2/src/parse_vote.rs
    153
        #[test]
    154
        #[allow(clippy::same_item_push)]
    155
        fn test_parse_vote_instruction() {
  • gemachain-vote-program 1.8.2/src/vote_instruction.rs
    417
        #[allow(clippy::same_item_push)]
    418
        fn process_instruction(instruction: &Instruction) -> Result<(), InstructionError> {
  • goldilocks-ntt 0.1.0/src/ntt/mod.rs
    189
        // False positive
    190
        #[allow(clippy::same_item_push)]
    191
        fn reference_fft(x: &[FieldElement], inverse: bool) -> Vec<FieldElement> {
  • jfifdump 0.3.1/src/reader.rs
    266
        #[allow(clippy::same_item_push)]
    267
        fn read_scan_data(&mut self) -> Result<Vec<u8>, JfifError> {
  • lancelot-bin 0.8.6/src/bin/mapa.rs
    693
        for line in s.split('\n') {
    694
            #[allow(clippy::same_item_push)]
    695
            for _ in 0..depth {
  • lancelot-flirt 0.8.6/src/sig/mod.rs
    333
        // seems like a bug in clippy to warn on this
    334
        #[allow(clippy::same_item_push)]
    335
        for _ in 0..count {
    372
        // seems like a bug in clippy to warn on this
    373
        #[allow(clippy::same_item_push)]
    374
        for _ in 0..count {
  • mpl-auction-house 1.3.5/tests/utils/helpers.rs
    34
    /// as an additional seed when calling `invoke_signed`
    35
    #[allow(clippy::same_item_push)]
    36
    pub fn find_noncanonical_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> (Pubkey, u8) {
  • mv-binary-format 0.3.2/src/unit_tests/deserializer_tests.rs
    173
    #[test]
    174
    #[allow(clippy::same_item_push)]
    175
    fn malformed_simple() {
  • safecoin-ledger 1.6.16/src/blockstore.rs
    7667
        #[test]
    7668
        #[allow(clippy::same_item_push)]
    7669
        fn test_get_last_hash() {
  • safecoin-ledger 1.6.16/src/entry.rs
    696
    #[allow(clippy::same_item_push)]
    697
    pub fn create_ticks(num_ticks: u64, hashes_per_tick: u64, mut hash: Hash) -> Vec<Entry> {
    707
    #[allow(clippy::same_item_push)]
    708
    pub fn create_random_ticks(num_ticks: u64, max_hashes_per_tick: u64, mut hash: Hash) -> Vec<Entry> {
  • safecoin-program 1.14.3/src/pubkey.rs
    474
        /// [`find_program_address`]: Pubkey::find_program_address
    475
        #[allow(clippy::same_item_push)]
    476
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • safecoin-transaction-status 1.14.3/src/parse_stake.rs
    762
        #[test]
    763
        #[allow(clippy::same_item_push)]
    764
        fn test_parse_stake_set_lockup() {
  • safecoin-transaction-status 1.14.3/src/parse_token.rs
    1688
        #[test]
    1689
        #[allow(clippy::same_item_push)]
    1690
        fn test_parse_token_v3() {
    1694
        #[test]
    1695
        #[allow(clippy::same_item_push)]
    1696
        fn test_parse_token_2022() {
    2202
        #[test]
    2203
        #[allow(clippy::same_item_push)]
    2204
        fn test_not_enough_keys_token_v3() {
    2208
        #[test]
    2209
        #[allow(clippy::same_item_push)]
    2210
        fn test_not_enough_keys_token_2022() {
  • shared-memory-allocator 0.1.0/src/lib.rs
    279
            #[allow(clippy::same_item_push)]
    280
            if first {
  • solana-core 1.14.13/benches/banking_stage.rs
    127
    #[allow(clippy::same_item_push)]
    128
    fn make_programs_txs(txes: usize, hash: Hash) -> Vec<Transaction> {
    336
    #[allow(clippy::same_item_push)]
    337
    fn bench_process_entries(randomize_txs: bool, bencher: &mut Bencher) {
  • solana-core 1.14.13/benches/retransmit_stage.rs
    49
    #[bench]
    50
    #[allow(clippy::same_item_push)]
    51
    fn bench_retransmitter(bencher: &mut Bencher) {
  • solana-core 1.14.13/src/broadcast_stage.rs
    237
        #[allow(clippy::too_many_arguments)]
    238
        #[allow(clippy::same_item_push)]
    239
        fn new(
  • solana-entry 1.14.13/src/entry.rs
    862
    #[allow(clippy::same_item_push)]
    863
    pub fn create_ticks(num_ticks: u64, hashes_per_tick: u64, mut hash: Hash) -> Vec<Entry> {
    873
    #[allow(clippy::same_item_push)]
    874
    pub fn create_random_ticks(num_ticks: u64, max_hashes_per_tick: u64, mut hash: Hash) -> Vec<Entry> {
  • solana-gossip 1.14.13/src/cluster_info.rs
    4347
        #[test]
    4348
        #[allow(clippy::same_item_push)]
    4349
        fn test_push_epoch_slots_large() {
  • solana-gossip 1.14.13/src/epoch_slots.rs
    487
        #[test]
    488
        #[allow(clippy::same_item_push)]
    489
        fn test_epoch_slots_fill_uncompressed_random_range() {
    506
        #[test]
    507
        #[allow(clippy::same_item_push)]
    508
        fn test_epoch_slots_fill_compressed_random_range() {
    527
        #[test]
    528
        #[allow(clippy::same_item_push)]
    529
        fn test_epoch_slots_fill_random_range() {
  • solana-ledger 1.14.13/src/blockstore.rs
    8428
        #[test]
    8429
        #[allow(clippy::same_item_push)]
    8430
        fn test_get_last_hash() {
  • solana-program 1.14.13/src/pubkey.rs
    474
        /// [`find_program_address`]: Pubkey::find_program_address
    475
        #[allow(clippy::same_item_push)]
    476
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • solana-transaction-status 1.14.13/src/parse_stake.rs
    762
        #[test]
    763
        #[allow(clippy::same_item_push)]
    764
        fn test_parse_stake_set_lockup() {
  • solana-transaction-status 1.14.13/src/parse_token.rs
    1710
        #[test]
    1711
        #[allow(clippy::same_item_push)]
    1712
        fn test_parse_token_v3() {
    1716
        #[test]
    1717
        #[allow(clippy::same_item_push)]
    1718
        fn test_parse_token_2022() {
    2224
        #[test]
    2225
        #[allow(clippy::same_item_push)]
    2226
        fn test_not_enough_keys_token_v3() {
    2230
        #[test]
    2231
        #[allow(clippy::same_item_push)]
    2232
        fn test_not_enough_keys_token_2022() {
  • subshell 1.23.1/lsp/completions.rs
    547
                // actually the clippy suggestions here are less readable for once
    548
                #[allow(clippy::same_item_push)]
    549
                for _ in segments_b {
  • thespis_impl 0.2.1/benches/multi_thread/contention.rs
    178
    //
    179
    #[allow(clippy::same_item_push)]
    180
    //
  • trdelnik-explorer 0.3.0/src/parse/stake.rs
    610
        #[test]
    611
        #[allow(clippy::same_item_push)]
    612
        fn test_parse_stake_set_lockup() {
  • trdelnik-explorer 0.3.0/src/parse/token.rs
    514
        #[test]
    515
        #[allow(clippy::same_item_push)]
    516
        fn test_parse_token_v3() {
  • waffles-solana-program 1.15.0/src/pubkey.rs
    474
        /// [`find_program_address`]: Pubkey::find_program_address
    475
        #[allow(clippy::same_item_push)]
    476
        pub fn try_find_program_address(seeds: &[&[u8]], program_id: &Pubkey) -> Option<(Pubkey, u8)> {
  • waffles-solana-transaction-status 1.15.0/src/parse_stake.rs
    762
        #[test]
    763
        #[allow(clippy::same_item_push)]
    764
        fn test_parse_stake_set_lockup() {
  • waffles-solana-transaction-status 1.15.0/src/parse_token.rs
    1713
        #[test]
    1714
        #[allow(clippy::same_item_push)]
    1715
        fn test_parse_token_v3() {
    1719
        #[test]
    1720
        #[allow(clippy::same_item_push)]
    1721
        fn test_parse_token_2022() {
    2227
        #[test]
    2228
        #[allow(clippy::same_item_push)]
    2229
        fn test_not_enough_keys_token_v3() {
    2233
        #[test]
    2234
        #[allow(clippy::same_item_push)]
    2235
        fn test_not_enough_keys_token_2022() {
  • wlambda 0.8.1/src/packer.rs
    90
    #[allow(clippy::same_item_push)]
    91
    pub(crate) fn do_pack(pak_str: &str, data: &VVal) -> Result<VVal, ParseError> {
  • zkp-primefield 0.2.0/src/fft/mod.rs
    202
        // False positive
    203
        #[allow(clippy::same_item_push)]
    204
        fn reference_fft(x: &[FieldElement], inverse: bool) -> Vec<FieldElement> {
  • fil_pasta_curves 0.5.2/src/lib.rs
    5
    #![allow(unknown_lints)]
    6
    #![allow(clippy::op_ref, clippy::same_item_push, clippy::upper_case_acronyms)]
    7
    #![deny(rustdoc::broken_intra_doc_links)]
  • halo2-core 0.1.0-beta.2/src/lib.rs
    16
        clippy::many_single_char_names,
    17
        clippy::same_item_push,
    18
        clippy::upper_case_acronyms
  • halo2_proofs 0.2.0/src/lib.rs
    16
        clippy::many_single_char_names,
    17
        clippy::same_item_push,
    18
        clippy::upper_case_acronyms
  • pasta_curves 0.5.0/src/lib.rs
    5
    #![allow(unknown_lints)]
    6
    #![allow(clippy::op_ref, clippy::same_item_push, clippy::upper_case_acronyms)]
    7
    #![deny(rustdoc::broken_intra_doc_links)]
  • spinny 0.2.4/src/lib.rs
    10
    #![warn(clippy::pedantic)]
    11
    #![allow(clippy::same_item_push)]
    12
    #![deprecated(since = "0.2.4", note = "Use spin-rs instead")]
  • tokio-bitstream-io 0.0.7/tests/huffman.rs
    1
    #![allow(clippy::same_item_push)]