Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 355 for 14 (0.14 sec)

  1. src/main/java/jcifs/smb1/smb1/NetShareEnumResponse.java

            for( int i = 0; i < numEntries; i++ ) {
                results[i] = e = new SmbShareInfo();
                e.netName = readString( buffer, bufferIndex, 13, false );
                bufferIndex += 14;
                e.type = readInt2( buffer, bufferIndex );
                bufferIndex += 2;
                int off = readInt4( buffer, bufferIndex );
                bufferIndex += 4;
                off = ( off & 0xFFFF ) - converter;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java

        int SELECT_VERSION_FROM_RANGE = 10;
    
        int RESTRICT_RANGE = 11;
    
        int MANAGE_ARTIFACT_VERSION = 12;
    
        int MANAGE_ARTIFACT_SCOPE = 13;
    
        int MANAGE_ARTIFACT_SYSTEM_PATH = 14;
    
        void testArtifact(Artifact node);
    
        void startProcessChildren(Artifact artifact);
    
        void endProcessChildren(Artifact artifact);
    
        void includeArtifact(Artifact artifact);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/SuppliersTest.java

      }
    
      public void testSupplierFunction() {
        Supplier<Integer> supplier = Suppliers.ofInstance(14);
        Function<Supplier<Integer>, Integer> supplierFunction = Suppliers.supplierFunction();
    
        assertEquals(14, (int) supplierFunction.apply(supplier));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializationTester
      @SuppressWarnings("DoNotCall")
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/SuppliersTest.java

      }
    
      public void testSupplierFunction() {
        Supplier<Integer> supplier = Suppliers.ofInstance(14);
        Function<Supplier<Integer>, Integer> supplierFunction = Suppliers.supplierFunction();
    
        assertEquals(14, (int) supplierFunction.apply(supplier));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // SerializationTester
      @SuppressWarnings("DoNotCall")
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

            new long[] {GREATEST - 1, 1, GREATEST - 2, 2},
            1,
            3,
            new long[] {GREATEST - 1, GREATEST - 2, 1, 2});
      }
    
      public void testDivide() {
        assertThat(UnsignedLongs.divide(14, 5)).isEqualTo(2);
        assertThat(UnsignedLongs.divide(0, 50)).isEqualTo(0);
        assertThat(UnsignedLongs.divide(0xfffffffffffffffeL, 0xfffffffffffffffdL)).isEqualTo(1);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:36:17 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/DES.java

            (byte)62, (byte)54, (byte)46, (byte)38, (byte)30, (byte)22, (byte)14,
            (byte) 6, (byte)61, (byte)53, (byte)45, (byte)37, (byte)29, (byte)21,
            (byte)13, (byte) 5, (byte)60, (byte)52, (byte)44, (byte)36, (byte)28,
            (byte)20, (byte)12, (byte) 4, (byte)27, (byte)19, (byte)11, (byte)3
        };
        private static int[] totrot = {
            1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28
        };
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 21.4K bytes
    - Viewed (0)
  7. docs/ru/docs/tutorial/body-fields.md

    === "Python 3.10+"
    
        ```Python hl_lines="9-12"
        {!> ../../../docs_src/body_fields/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="11-14"
        {!> ../../../docs_src/body_fields/tutorial001.py!}
        ```
    
    Функция `Field` работает так же, как `Query`, `Path` и `Body`, у неё такие же параметры и т.д.
    
    !!! note "Технические детали"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

            multimap.putAll("foo", asList(6));
            multimap.putAll("baz", asList(7, 8));
            multimap.putAll("dog", asList(9));
            multimap.putAll("bar", asList(10, 11));
            multimap.putAll("cat", asList(12, 13, 14));
            return multimap.keySet().iterator();
          }
    
          @Override
          protected void verify(List<String> elements) {
            assertEquals(newHashSet(elements), multimap.keySet());
          }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 21 10:16:44 GMT 2024
    - 18K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/handling-errors.md

        **FastAPI** 能自动处理这些数据,并将之转换为 JSON。
    
    
    ## 添加自定义响应头
    
    有些场景下要为 HTTP 错误添加自定义响应头。例如,出于某些方面的安全需要。
    
    一般情况下可能不会需要在代码中直接使用响应头。
    
    但对于某些高级应用场景,还是需要添加自定义响应头:
    
    ```Python hl_lines="14"
    {!../../../docs_src/handling_errors/tutorial002.py!}
    
    ```
    
    ## 安装自定义异常处理器
    
    添加自定义处理器,要使用 [Starlette 的异常工具](https://www.starlette.io/exceptions/)。
    
    假设要触发的自定义异常叫作 `UnicornException`。
    
    且需要 FastAPI 实现全局处理该异常。
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/net/NetShareEnumResponse.java

            for ( int i = 0; i < getNumEntries(); i++ ) {
                results[ i ] = e = new SmbShareInfo();
                e.netName = readString(buffer, bufferIndex, 13, false);
                bufferIndex += 14;
                e.type = SMBUtil.readInt2(buffer, bufferIndex);
                bufferIndex += 2;
                int off = SMBUtil.readInt4(buffer, bufferIndex);
                bufferIndex += 4;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
Back to top