Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 3333 (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

        // (excluding the characters covered above).
        if (" #%/:?@[\\]".indexOf(c) != -1) {
          return true
        }
      }
      return false
    }
    
    /** Decodes an IPv6 address like 1111:2222:3333:4444:5555:6666:7777:8888 or ::1. */
    internal fun decodeIpv6(
      input: String,
      pos: Int,
      limit: Int,
    ): ByteArray? {
      val address = ByteArray(16)
      var b = 0
      var compress = -1
      var groupOffset = -1
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/StatsTesting.java

          ImmutableList.of(1.1, -44.44, 33.33, 555.555, -2.2);
      static final int MANY_VALUES_COUNT = 5;
      static final double MANY_VALUES_MEAN = (1.1 - 44.44 + 33.33 + 555.555 - 2.2) / 5;
      static final double MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS =
          (1.1 - MANY_VALUES_MEAN) * (1.1 - MANY_VALUES_MEAN)
              + (-44.44 - MANY_VALUES_MEAN) * (-44.44 - MANY_VALUES_MEAN)
              + (33.33 - MANY_VALUES_MEAN) * (33.33 - MANY_VALUES_MEAN)
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 22.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/StatsTesting.java

          ImmutableList.of(1.1, -44.44, 33.33, 555.555, -2.2);
      static final int MANY_VALUES_COUNT = 5;
      static final double MANY_VALUES_MEAN = (1.1 - 44.44 + 33.33 + 555.555 - 2.2) / 5;
      static final double MANY_VALUES_SUM_OF_SQUARES_OF_DELTAS =
          (1.1 - MANY_VALUES_MEAN) * (1.1 - MANY_VALUES_MEAN)
              + (-44.44 - MANY_VALUES_MEAN) * (-44.44 - MANY_VALUES_MEAN)
              + (33.33 - MANY_VALUES_MEAN) * (33.33 - MANY_VALUES_MEAN)
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Nov 09 22:49:56 GMT 2023
    - 23.8K bytes
    - Viewed (0)
  4. src/archive/tar/reader_test.go

    		wantMap:  sparseDatas{{0, 0}, {1, 1}},
    		wantSize: 01234,
    	}, {
    		input: makeInput(FormatGNU, "3333",
    			makeSparseStrings(sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}})...),
    		wantMap:  sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}},
    		wantSize: 03333,
    	}, {
    		input: makeInput(FormatGNU, "",
    			append(append(
    				makeSparseStrings(sparseDatas{{0, 1}, {2, 1}}),
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Nov 21 21:14:38 GMT 2022
    - 47.1K bytes
    - Viewed (0)
  5. docs/ru/docs/tutorial/extra-models.md

    === "Python 3.10+"
    
        ```Python hl_lines="7  9  14  20  22  27-28  31-33  38-39"
        {!> ../../../docs_src/extra_models/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9  11  16  22  24  29-30  33-35  40-41"
        {!> ../../../docs_src/extra_models/tutorial001.py!}
        ```
    
    ### Про `**user_in.dict()`
    
    #### `.dict()` из Pydantic
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

            final String[] newArray = ArrayUtil.remove(array, "333");
            assertThat(newArray.length, is(2));
            assertThat(newArray[0], is("111"));
            assertThat(newArray[1], is("222"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testRemoveNothing() throws Exception {
            final String[] array = new String[] { "111", "222", "333" };
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.B.2.txt

       24CE; 24E8; Case map
       24CF; 24E9; Case map
       3371; 0068 0070 0061; Additional folding
       3373; 0061 0075; Additional folding
       3375; 006F 0076; Additional folding
       3380; 0070 0061; Additional folding
       3381; 006E 0061; Additional folding
       3382; 03BC 0061; Additional folding
       3383; 006D 0061; Additional folding
       3384; 006B 0061; Additional folding
       3385; 006B 0062; Additional folding
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 38.8K bytes
    - Viewed (0)
  8. cmd/globals.go

    	// MinIO local server address (in `host:port` format)
    	globalMinioAddr = ""
    
    	// MinIO default port, can be changed through command line.
    	globalMinioPort        = GlobalMinioDefaultPort
    	globalMinioConsolePort = "13333"
    
    	// Holds the host that was passed using --address
    	globalMinioHost = ""
    	// Holds the host that was passed using --console-address
    	globalMinioConsoleHost = ""
    
    	// Holds the possible host endpoint.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            assertEquals("action:AAA BBB\tuser:testuser\t111:222", localLogMsg.get());
    
            activityHelper.print("ccc", createUser("testuser", new String[] { "111", "222" }), Map.of("111", "222", "333", "444"));
            assertEquals("action:CCC\tuser:testuser\t111:222\t333:444", localLogMsg.get());
        }
    
        public void test_login_ecs() {
            activityHelper.useEcsFormat = true;
            activityHelper.login(OptionalThing.empty());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/net/InetAddressesTest.java

                "fe80::a",
                "fe80::1",
                "fe80::2",
                "fe80::42",
                "fe80::3dd0:7f8e:57b7:34d5",
                "fe80::71a3:2b00:ddd3:753f",
                "fe80::8b2:d61e:e5c:b333",
                "fe80::b059:65f4:e877:c40");
        for (String ipString : ipStrings) {
          for (String scopeId : SCOPE_IDS) {
            String withScopeId = ipString + "%" + scopeId;
            assertTrue(
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 31.9K bytes
    - Viewed (0)
Back to top