Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for ffb300 (0.17 sec)

  1. .cm/includes_todos.cm

    # Read the "|" not as "or", but as a "pipe", taking the output of the previous command and passing it to the next command.
    # This section could also appear ahead of the automations section.
    
    colors:
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. .cm/javadoc_on_new_files.cm

    is:
      java: {{ files | extensions | match(term='java') | every }}
      new: {{ source.diff.files | map(attr='original_file') | match(regex=r/^$/) | some }}
    
    colors:
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  3. .cm/lacks_tests.cm

    # Read the "|" not as "or", but as a "pipe", taking the output of the previous command and passing it to the next command.
    # This section could also appear ahead of the automations section.
    
    colors:
      yellow: 'ffb300'
    
    includes_src_changes: {{ files | match(regex=r/.*\/src\//) | some }}
    includes_test_changes: {{ files | match(regex=r/.*\/(test|integTest|crossVersionTest|docsTest|smokeTest)\//) | some }}
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/FakeDns.kt

          .map {
            return@map InetAddress.getByAddress(
              Buffer().writeInt(it.toInt()).readByteArray(),
            )
          }
      }
    
      /** Allocates and returns `count` fake IPv6 addresses like [::ff00:64, ::ff00:65].  */
      fun allocateIpv6(count: Int): List<InetAddress> {
        val from = nextAddress
        nextAddress += count
        return (from until nextAddress)
          .map {
            return@map InetAddress.getByAddress(
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/DialectVersion.java

        /**
         * SMB 2.1 - Windows 7/Server 2008R2
         */
        SMB210(Smb2Constants.SMB2_DIALECT_0210),
    
        /**
         * SMB 3.0 - Windows 8/Server 2012
         */
        SMB300(Smb2Constants.SMB2_DIALECT_0300),
    
        /**
         * SMB 3.0.2 - Windows 8.1/Server 2012R2
         */
        SMB302(Smb2Constants.SMB2_DIALECT_0302),
    
        /**
         * SMB 3.1.1 - Windows 10/Server 2016
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

                this.capabilities |= Smb2Constants.SMB2_GLOBAL_CAP_DFS;
            }
    
            if ( config.isEncryptionEnabled() && config.getMaximumVersion() != null && config.getMaximumVersion().atLeast(DialectVersion.SMB300) ) {
                this.capabilities |= Smb2Constants.SMB2_GLOBAL_CAP_ENCRYPTION;
            }
    
            Set<DialectVersion> dvs = DialectVersion
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.5K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.D.2.txt

       3260-327B
       327F-32B0
       32C0-32CB
       32D0-32FE
       3300-3376
       337B-33DD
       33E0-33FE
       3400-4DB5
       4E00-9FA5
       A000-A48C
       AC00-D7A3
       D800-FA2D
       FA30-FA6A
       FB00-FB06
       FB13-FB17
       FF21-FF3A
       FF41-FF5A
       FF66-FFBE
       FFC2-FFC7
       FFCA-FFCF
       FFD2-FFD7
       FFDA-FFDC
       10300-1031E
       10320-10323
       10330-1034A
       10400-10425
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  8. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.A.1.txt

       FB42
       FB45
       FBB2-FBD2
       FD40-FD4F
       FD90-FD91
       FDC8-FDCF
       FDFD-FDFF
       FE10-FE1F
       FE24-FE2F
       FE47-FE48
       FE53
       FE67
       FE6C-FE6F
       FE75
       FEFD-FEFE
       FF00
       FFBF-FFC1
       FFC8-FFC9
       FFD0-FFD1
       FFD8-FFD9
       FFDD-FFDF
       FFE7
       FFEF-FFF8
       10000-102FF
       1031F
       10324-1032F
       1034B-103FF
       10426-10427
       1044E-1CFFF
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/AllTests.java

            MUTATIONS.put("smb30", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.client.minVersion", "SMB300");
                    cfg.put("jcifs.smb.client.maxVersion", "SMB302");
                    return cfg;
                }
            });
    
            MUTATIONS.put("smb31", new TestMutation() {
    
                @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.B.2.txt

       33D7; 0070 0068; Additional folding
       33D9; 0070 0070 006D; Additional folding
       33DA; 0070 0072; Additional folding
       33DC; 0073 0076; Additional folding
       33DD; 0077 0062; Additional folding
       FB00; 0066 0066; Case map
       FB01; 0066 0069; Case map
       FB02; 0066 006C; Case map
       FB03; 0066 0066 0069; Case map
       FB04; 0066 0066 006C; Case map
       FB05; 0073 0074; Case map
       FB06; 0073 0074; Case map
    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)
Back to top