Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 941 for reversed (0.12 sec)

  1. android/guava/src/com/google/common/collect/ImmutableList.java

        return offset + size;
      }
    
      /**
       * Returns a view of this immutable list in reverse order. For example, {@code ImmutableList.of(1,
       * 2, 3).reverse()} is equivalent to {@code ImmutableList.of(3, 2, 1)}.
       *
       * @return a view of this immutable list in reverse order
       * @since 7.0
       */
      public ImmutableList<E> reverse() {
        return (size() <= 1) ? this : new ReverseImmutableList<E>(this);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SetsTest.java

        /* UnsupportedOperationException on indirect modifications. */
        NavigableSet<Integer> reverse = unmod.descendingSet();
        assertThrows(UnsupportedOperationException.class, () -> reverse.add(4));
        assertThrows(UnsupportedOperationException.class, () -> reverse.addAll(singleton(4)));
        assertThrows(UnsupportedOperationException.class, () -> reverse.remove(4));
      }
    
      void ensureNotDirectlyModifiable(SortedSet<Integer> unmod) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/util/SMBUtil.java

            (byte) 0xFE, (byte) 'S', (byte) 'M', (byte) 'B', // ProtocolId
            (byte) 64, (byte) 0x00, // StructureSize (LE)
            (byte) 0x00, (byte) 0x00, // CreditCharge (reserved 2.0.2)
            (byte) 0x00, (byte) 0x00, // ChannelSequence
            (byte) 0x00, (byte) 0x00, // Reserved
            (byte) 0x00, (byte) 0x00, (byte) 0x00, (byte) 0x00, // Status
            (byte) 0x00, (byte) 0x00, // Command
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/projects/CheckProject.kt

            )
            text(
                "reverse.dep.*.additional.gradle.parameters",
                "",
                display = ParameterDisplay.NORMAL,
                allowEmpty = true,
                description = "The extra gradle parameters you want to pass to all dependencies of this build, e.g. `-PrerunAllTests` or `--no-build-cache`"
            )
            text(
                "reverse.dep.*.skip.build",
                "",
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Thu Aug 22 07:02:31 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/ListsTest.java

                        for (int i = elements.length - 1; i >= 0; i--) {
                          list.add(elements[i]);
                        }
                        return Lists.reverse(list);
                      }
                    })
                .named("Lists.reverse[ArrayList]")
                .withFeatures(
                    CollectionSize.ANY,
                    CollectionFeature.ALLOWS_NULL_VALUES,
                    ListFeature.GENERAL_PURPOSE)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        assertThat(Ints.stringConverter().reverse().convert(null)).isNull();
      }
    
      public void testStringConverter_reverse() {
        Converter<String, Integer> converter = Ints.stringConverter();
        assertThat(converter.reverse().convert(1)).isEqualTo("1");
        assertThat(converter.reverse().convert(0)).isEqualTo("0");
        assertThat(converter.reverse().convert(-1)).isEqualTo("-1");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/LongsTest.java

        assertThat(Longs.stringConverter().reverse().convert(null)).isNull();
      }
    
      public void testStringConverter_reverse() {
        Converter<String, Long> converter = Longs.stringConverter();
        assertThat(converter.reverse().convert(1L)).isEqualTo("1");
        assertThat(converter.reverse().convert(0L)).isEqualTo("0");
        assertThat(converter.reverse().convert(-1L)).isEqualTo("-1");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/ListsTest.java

                        for (int i = elements.length - 1; i >= 0; i--) {
                          list.add(elements[i]);
                        }
                        return Lists.reverse(list);
                      }
                    })
                .named("Lists.reverse[ArrayList]")
                .withFeatures(
                    CollectionSize.ANY,
                    CollectionFeature.ALLOWS_NULL_VALUES,
                    ListFeature.GENERAL_PURPOSE)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. doc/initial/1-intro.md

    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  10. licenses/github.com/klauspost/compress/s2/LICENSE

    Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
    Copyright (c) 2019 Klaus Post. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Aug 06 23:19:43 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top