Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 373 for 13 (0.02 sec)

  1. guava/src/com/google/common/hash/Murmur3_128HashFunction.java

          switch (bb.remaining()) {
            case 15:
              k2 ^= (long) toInt(bb.get(14)) << 48; // fall through
            case 14:
              k2 ^= (long) toInt(bb.get(13)) << 40; // fall through
            case 13:
              k2 ^= (long) toInt(bb.get(12)) << 32; // fall through
            case 12:
              k2 ^= (long) toInt(bb.get(11)) << 24; // fall through
            case 11:
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/Collections2Test.java

        // 12 elements won't overflow
        assertEquals(
            479001600 /*12!*/,
            Collections2.orderedPermutations(newArrayList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12))
                .size());
        // 13 elements overflow an int
        assertEquals(
            Integer.MAX_VALUE,
            Collections2.orderedPermutations(newArrayList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))
                .size());
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

      }
    
      @ListFeature.Require(SUPPORTS_REMOVE_WITH_INDEX)
      @CollectionSize.Require(absent = {ZERO, ONE})
      public void testSubList_subListRemoveAffectsOriginalLargeList() {
        List<E> subList = getList().subList(1, 3);
        subList.remove(e2());
        List<E> expected = copyToList(createSamplesArray());
        expected.remove(2);
        expectContents(expected);
      }
    
      @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/ListSubListTester.java

      }
    
      @ListFeature.Require(SUPPORTS_REMOVE_WITH_INDEX)
      @CollectionSize.Require(absent = {ZERO, ONE})
      public void testSubList_subListRemoveAffectsOriginalLargeList() {
        List<E> subList = getList().subList(1, 3);
        subList.remove(e2());
        List<E> expected = copyToList(createSamplesArray());
        expected.remove(2);
        expectContents(expected);
      }
    
      @ListFeature.Require(SUPPORTS_ADD_WITH_INDEX)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. api/go1.15.txt

    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER = 11
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM = 13
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_ROM ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER = 12
    pkg debug/pe, const IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER ideal-int
    pkg debug/pe, const IMAGE_SUBSYSTEM_NATIVE = 1
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/MultipartBodyTest.kt

      }
    
      @Test
      fun contentLengthHeaderIsForbidden() {
        val multipart = MultipartBody.Builder()
        assertFailsWith<IllegalArgumentException> {
          multipart.addPart(
            headersOf("Content-Length", "13"),
            "Hello, World!".toRequestBody(null),
          )
        }
      }
    
      @Test
      @Throws(IOException::class)
      fun partAccessors() {
        val body =
          MultipartBody.Builder()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. test-site/activator.bat

    )
    
    rem Strips away the " characters
    set JAVA_VERSION=%JAVA_VERSION:"=%
    
    rem TODO Check if there are existing mem settings in JAVA_OPTS/CFG_OPTS and use those instead of the below
    for /f "delims=. tokens=1-3" %%v in ("%JAVA_VERSION%") do (
        set MAJOR=%%v
        set MINOR=%%w
        set BUILD=%%x
    
        set META_SIZE=-XX:MetaspaceSize=64M -XX:MaxMetaspaceSize=256M
        if "!MINOR!" LSS "8" (
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
  8. test-site/public/javascripts/suggestor.js

                        suggestor.suggest();
                    } else {
                        suggestor.selectlist("down");
                    }
                } else if(e.keyCode == 13) {
                    if(isFocusList) {
                        suggestor.fixList();
                    }
                }
            });
            $(this).keyup(  function(e){
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 14.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // deprecatedFirstTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time deprecatedFirstTimestamp = 13;
    
      // deprecatedLastTimestamp is the deprecated field assuring backward compatibility with core.v1 Event type.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time deprecatedLastTimestamp = 14;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/StandardSystemProperty.java

       * properties, including:
       *
       * <ul>
       *   <li>{@code java.vendor.version} (added in Java 11, listed as optional as of Java 13)
       *   <li>{@code jdk.module.*} (added in Java 9, optional)
       * </ul>
       */
      @CheckForNull
      public String value() {
        return System.getProperty(key);
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top