Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 304 for W123 (0.02 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketProtocol.kt

       0 1 2 3 4 5 6 7    0 1 2 3 4 5 6 7
      +-+-+-+-+-------+  +-+-------------+
      |F|R|R|R| OP    |  |M| LENGTH      |
      |I|S|S|S| CODE  |  |A|             |
      |N|V|V|V|       |  |S|             |
      | |1|2|3|       |  |K|             |
      +-+-+-+-+-------+  +-+-------------+
       */
    
      /** Byte 0 flag for whether this is the final fragment in a message. */
      internal const val B0_FLAG_FIN = 128
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableListCopyOfConcurrentlyModifiedInputTest.java

        runConcurrentlyMutatedTest(elements(1, 2), ops(remove(), add(3)), wrap);
    
        runConcurrentlyMutatedTest(elements(1, 2), ops(nop(), remove()), wrap);
    
        runConcurrentlyMutatedTest(elements(1, 2, 3), ops(remove(), remove()), wrap);
      }
    
      private static ImmutableList<Integer> elements(Integer... elements) {
        return ImmutableList.copyOf(elements);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionNode.java

                    if (artifact.getVersion() == null) {
                        // set the recommended version
                        ArtifactVersion selected = artifact.getSelectedVersion();
                        // MNG-2123: null is a valid response to getSelectedVersion, don't
                        // assume it won't ever be.
                        if (selected != null) {
                            artifact.selectVersion(selected.toString());
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

        assertThat(UnsignedLongs.join(",", -1, Long.MIN_VALUE))
            .isEqualTo("18446744073709551615,9223372036854775808");
        assertThat(UnsignedLongs.join("", 1, 2, 3)).isEqualTo("123");
        assertThat(UnsignedLongs.join("", -1, Long.MIN_VALUE))
            .isEqualTo("184467440737095516159223372036854775808");
      }
    
      @J2ktIncompatible
      @GwtIncompatible // NullPointerTester
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/FieldUtilTest.java

        /**
         * @throws Exception
         */
        @Test
        public void testGet() throws Exception {
            final Field field = getClass().getField("objectField");
            final Integer testData = Integer.valueOf(123);
            FieldUtil.set(field, this, testData);
            assertThat((Integer) FieldUtil.get(field, this), is(testData));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java

                    return testWindowSize;
                }
            });
    
            Map<String, Object> params = new HashMap<>();
            params.put("param1", "value1");
            params.put("param2", 123);
    
            RescorerBuilder<?> result = ltrQueryRescorer.evaluate(params);
            assertNotNull(result);
            assertTrue(result instanceof QueryRescorerBuilder);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/UniAddressTest.java

        void isAllDigitsTrueForPureNumeric(String numeric) {
            assertTrue(UniAddress.isAllDigits(numeric));
        }
    
        @ParameterizedTest
        @ValueSource(strings = { "12a", "abc", "123 " })
        void isAllDigitsFalseForNonNumeric(String nonNumeric) {
            assertFalse(UniAddress.isAllDigits(nonNumeric));
        }
    
        @Test
        void isAllDigitsHandlesEmptyString() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     * 80..95 : Offset by a fixed positive offset. The bottom 4 bits of b1 are the top 4 bits of the offset.
     *    119 : Ignored.
     *    120 : Valid.
     *    121 : Disallowed
     *    122 : Mapped inline to the sequence: [b2].
     *    123 : Mapped inline to the sequence: [b2a].
     *    124 : Mapped inline to the sequence: [b2, b3].
     *    125 : Mapped inline to the sequence: [b2a, b3].
     *    126 : Mapped inline to the sequence: [b2, b3a].
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/SmbSessionImplTest.java

            assertSame(enc, session.getEncryptionContext());
    
            byte[] encOut = session.encryptMessage(new byte[] { 1, 2, 3 });
            assertArrayEquals(new byte[] { 9, 9 }, encOut);
            verify(enc, times(1)).encryptMessage(eq(new byte[] { 1, 2, 3 }), eq(99L));
    
            byte[] decOut = session.decryptMessage(new byte[] { 5 });
            assertArrayEquals(new byte[] { 7, 7 }, decOut);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/PluginHelperTest.java

        public void test_getArtifactFromFileName_complexName() {
            Artifact artifact = pluginHelper.getArtifactFromFileName(ArtifactType.DATA_STORE, "fess-ds-web-crawler-1.2.3-beta.jar");
            assertEquals("fess-ds-web-crawler", artifact.getName());
            assertEquals("1.2.3-beta", artifact.getVersion());
        }
    
        public void test_getArtifactFromFileName_singleVersion() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top