Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for 1280 (0.19 sec)

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

       * @return an immutable {@link Collection} containing all the different permutations of the
       *     original iterable.
       * @throws NullPointerException if the specified iterable is null or has any null elements.
       * @since 12.0
       */
      public static <E extends Comparable<? super E>> Collection<List<E>> orderedPermutations(
          Iterable<E> elements) {
        return orderedPermutations(elements, Ordering.natural());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="M.K." type="string" offset="1080"/>
          <match value="M!K!" type="string" offset="1080"/>
          <match value="FLT4" type="string" offset="1080"/>
          <match value="FLT8" type="string" offset="1080"/>
          <match value="4CHN" type="string" offset="1080"/>
          <match value="6CHN" type="string" offset="1080"/>
          <match value="8CHN" type="string" offset="1080"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. maven-embedder/pom.xml

          </plugin>
          <plugin>
            <groupId>org.codehaus.modello</groupId>
            <artifactId>modello-maven-plugin</artifactId>
            <configuration>
              <version>1.2.0</version>
              <models>
                <model>src/main/mdo/core-extensions.mdo</model>
              </models>
              <templates>
                <template>model.vm</template>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. doc/godebug.md

    `tarinsecurepath=0` and `zipinsecurepath=0`.
    
    Go 1.20 introduced automatic seeding of the
    [`math/rand`](/pkg/math/rand) global random number generator,
    controlled by the [`randautoseed` setting](/pkg/math/rand/#Seed).
    
    Go 1.20 introduced the concept of fallback roots for use during certificate verification,
    controlled by the [`x509usefallbackroots` setting](/pkg/crypto/x509/#SetFallbackRoots).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

          }
        }.test();
      }
    
      public void testUnknownOrderUnrecognizedElement() {
        IteratorTester<Integer> tester =
            new IteratorTester<Integer>(
                3, MODIFIABLE, newArrayList(1, 2, 50), IteratorTester.KnownOrder.UNKNOWN_ORDER) {
              @Override
              protected Iterator<Integer> newTargetIterator() {
                return newArrayList(2, 1, 3).iterator();
              }
            };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testRotate(new char[] {'1', '2', '3'}, -2, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, -1, new char[] {'2', '3', '1'});
        testRotate(new char[] {'1', '2', '3'}, 0, new char[] {'1', '2', '3'});
        testRotate(new char[] {'1', '2', '3'}, 1, new char[] {'3', '1', '2'});
        testRotate(new char[] {'1', '2', '3'}, 2, new char[] {'2', '3', '1'});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/Longs.java

       * class.
       */
      static final class AsciiDigits {
        private AsciiDigits() {}
    
        private static final byte[] asciiDigits;
    
        static {
          byte[] result = new byte[128];
          Arrays.fill(result, (byte) -1);
          for (int i = 0; i < 10; i++) {
            result['0' + i] = (byte) i;
          }
          for (int i = 0; i < 26; i++) {
            result['A' + i] = (byte) (10 + i);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Collections2.java

       * @return an immutable {@link Collection} containing all the different permutations of the
       *     original iterable.
       * @throws NullPointerException if the specified iterable is null or has any null elements.
       * @since 12.0
       */
      public static <E extends Comparable<? super E>> Collection<List<E>> orderedPermutations(
          Iterable<E> elements) {
        return orderedPermutations(elements, Ordering.natural());
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ActivityHelper.java

        protected String loggerName = "fess.log.audit";
    
        protected String permissionSeparator = "|";
    
        protected boolean useEcsFormat = false;
    
        protected String ecsVersion = "1.2.0";
    
        protected String ecsServiceName = "fess";
    
        protected String ecsEventDataset = "app";
    
        @PostConstruct
        public void init() {
            logger = LogManager.getLogger(loggerName);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/primitives/ShortsTest.java

        testRotate(new short[] {1, 2, 3}, -3, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, -2, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, -1, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, 0, new short[] {1, 2, 3});
        testRotate(new short[] {1, 2, 3}, 1, new short[] {3, 1, 2});
        testRotate(new short[] {1, 2, 3}, 2, new short[] {2, 3, 1});
        testRotate(new short[] {1, 2, 3}, 3, new short[] {1, 2, 3});
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top