Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for 12p6 (0.12 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/BasicParsingTest.kt

                        )
                        name = j
                    )
                    args = [
                        FunctionArgument.Positional [indexes: 12..16, line/column: 1/13..1/17, file: test] (
                            expr = PropertyAccess [indexes: 12..16, line/column: 1/13..1/17, file: test] (
                                name = test
                            )
                        )
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://plugins.gradle.org/plugin/net.ltgt.apt
            static apt = Versions.of("0.21")
    
            // https://plugins.gradle.org/plugin/io.gitlab.arturbosch.detekt
            static detekt = Versions.of("1.23.6")
    
            // https://plugins.gradle.org/plugin/com.diffplug.spotless
            static spotless = Versions.of("6.25.0")
    
            // https://plugins.gradle.org/plugin/com.google.cloud.tools.jib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-RSA

    000002d0  01 00 01 01 16 03 01 00  30 1f d6 11 ac 58 b3 20  |........0....X. |
    000002e0  31 6d 3b f5 83 98 50 75  ff 4f 79 61 2b fc 0f 6c  |1m;...Pu.Oya+..l|
    000002f0  a6 4d 9e 65 38 e3 ca 12  76 0a 56 1e dd 73 da e1  |.M.e8...v.V..s..|
    00000300  66 5a 33 62 8f 7d c3 ed  ad                       |fZ3b.}...|
    >>> Flow 4 (server to client)
    00000000  14 03 01 00 01 01 16 03  01 00 30 92 36 25 46 a5  |..........0.6%F.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/InetAddresses.java

        checkArgument(
            isCompatIPv4Address(ip), "Address '%s' is not IPv4-compatible.", toAddrString(ip));
    
        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 12, 16));
      }
    
      /**
       * Evaluates whether the argument is a 6to4 address.
       *
       * <p>6to4 addresses begin with the {@code "2002::/16"} prefix. The next 32 bits are the IPv4
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. src/image/gif/writer.go

    	b := m.Bounds()
    	if b.Dx() >= 1<<16 || b.Dy() >= 1<<16 {
    		return errors.New("gif: image is too large to encode")
    	}
    
    	opts := Options{}
    	if o != nil {
    		opts = *o
    	}
    	if opts.NumColors < 1 || 256 < opts.NumColors {
    		opts.NumColors = 256
    	}
    	if opts.Drawer == nil {
    		opts.Drawer = draw.FloydSteinberg
    	}
    
    	pm, _ := m.(*image.Paletted)
    	if pm == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InetAddresses.java

        checkArgument(
            isCompatIPv4Address(ip), "Address '%s' is not IPv4-compatible.", toAddrString(ip));
    
        return getInet4Address(Arrays.copyOfRange(ip.getAddress(), 12, 16));
      }
    
      /**
       * Evaluates whether the argument is a 6to4 address.
       *
       * <p>6to4 addresses begin with the {@code "2002::/16"} prefix. The next 32 bits are the IPv4
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/encoding/csv/reader.go

    	// The fields can be accessed by using the indexes in fieldIndexes.
    	// E.g., For the row `a,"b","c""d",e`, recordBuffer will contain `abc"de`
    	// and fieldIndexes will contain the indexes [1, 2, 5, 6].
    	recordBuffer []byte
    
    	// fieldIndexes is an index of fields inside recordBuffer.
    	// The i'th field ends at offset fieldIndexes[i] in recordBuffer.
    	fieldIndexes []int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. src/net/ip.go

    func (ip IP) To4() IP {
    	if len(ip) == IPv4len {
    		return ip
    	}
    	if len(ip) == IPv6len &&
    		isZeros(ip[0:10]) &&
    		ip[10] == 0xff &&
    		ip[11] == 0xff {
    		return ip[12:16]
    	}
    	return nil
    }
    
    // To16 converts the IP address ip to a 16-byte representation.
    // If ip is not an IP address (it is the wrong length), To16 returns nil.
    func (ip IP) To16() IP {
    	if len(ip) == IPv4len {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. doc/godebug.md

    pages can be disabled for Go memory with the
    [`disablethp` setting](/pkg/runtime#hdr-Environment_Variable).
    This behavior was backported to Go 1.21.1, but the setting is only available
    starting with Go 1.21.6.
    This setting may be removed in a future release, and users impacted by this issue
    should adjust their Linux configuration according to the recommendations in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000380  31 35 40 aa 29 42 32 7e  42 2d af 79 e8 59 6a 10  |15@.)B2~B-.y.Yj.|
    00000390  c5 55 6b 70 53 53 ab 02  48 ba 1f df 07 59 f8 34  |.UkpSS..H....Y.4|
    000003a0  ee 1d d3 e9 12 86 8b 37  2b cc 27 78 fe e1 65 2b  |.......7+.'x..e+|
    000003b0  c3 1e f2 25 a4 6d 3c b1  d4 16 03 03 00 4a 50 98  |...%.m<......JP.|
    000003c0  cd ee ab 2c 94 95 d6 46  06 ef 63 65 5c aa 6d 6e  |...,...F..ce\.mn|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top