Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 55 for 0b0190 (0.12 sec)

  1. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

        assertThat(Adapters.INTEGER_AS_LONG.toDer(50L)).isEqualTo(bytes)
        assertThat(Adapters.INTEGER_AS_LONG.fromDer(bytes)).isEqualTo(50L)
      }
    
      @Test fun `decode negative integer`() {
        val bytes = "02019c".decodeHex()
        assertThat(Adapters.INTEGER_AS_LONG.fromDer(bytes)).isEqualTo(-100L)
        assertThat(Adapters.INTEGER_AS_LONG.toDer(-100L)).isEqualTo(bytes)
      }
    
      @Test fun `five byte integer`() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    // Flags that describe the type of the object file.
    const (
    	F_RELFLG    = 0x0001
    	F_EXEC      = 0x0002
    	F_LNNO      = 0x0004
    	F_FDPR_PROF = 0x0010
    	F_FDPR_OPTI = 0x0020
    	F_DSA       = 0x0040
    	F_VARPG     = 0x0100
    	F_DYNLOAD   = 0x1000
    	F_SHROBJ    = 0x2000
    	F_LOADONLY  = 0x4000
    )
    
    // Auxiliary Header
    type XcoffAoutHdr64 struct {
    	Omagic      int16    // Flags - Ignored If Vstamp Is 1
    	Ovstamp     int16    // Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. src/unicode/tables.go

    	{0x018F, 0x018F, d{0, 202, 0}},
    	{0x0190, 0x0190, d{0, 203, 0}},
    	{0x0191, 0x0192, d{UpperLower, UpperLower, UpperLower}},
    	{0x0193, 0x0193, d{0, 205, 0}},
    	{0x0194, 0x0194, d{0, 207, 0}},
    	{0x0195, 0x0195, d{97, 0, 97}},
    	{0x0196, 0x0196, d{0, 211, 0}},
    	{0x0197, 0x0197, d{0, 209, 0}},
    	{0x0198, 0x0199, d{UpperLower, UpperLower, UpperLower}},
    	{0x019A, 0x019A, d{163, 0, 163}},
    	{0x019C, 0x019C, d{0, 211, 0}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestSimpleError(t *testing.T) {
    	testClientHelloFailure(t, testConfig, &serverHelloDoneMsg{}, "unexpected handshake message")
    }
    
    var badProtocolVersions = []uint16{0x0000, 0x0005, 0x0100, 0x0105, 0x0200, 0x0205, VersionSSL30}
    
    func TestRejectBadProtocolVersion(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionSSL30
    	for _, v := range badProtocolVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. src/encoding/xml/xml.go

    		{0x005F, 0x005F, 1},
    		{0x0061, 0x007A, 1},
    		{0x00C0, 0x00D6, 1},
    		{0x00D8, 0x00F6, 1},
    		{0x00F8, 0x00FF, 1},
    		{0x0100, 0x0131, 1},
    		{0x0134, 0x013E, 1},
    		{0x0141, 0x0148, 1},
    		{0x014A, 0x017E, 1},
    		{0x0180, 0x01C3, 1},
    		{0x01CD, 0x01F0, 1},
    		{0x01F4, 0x01F5, 1},
    		{0x01FA, 0x0217, 1},
    		{0x0250, 0x02A8, 1},
    		{0x02BB, 0x02C1, 1},
    		{0x0386, 0x0386, 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    	// verbs apply to the extracted value too.
    	{"%s", reflect.ValueOf("hello"), "hello"},
    	{"%q", reflect.ValueOf("hello"), `"hello"`},
    	{"%#04x", reflect.ValueOf(256), "0x0100"},
    
    	// invalid reflect.Value doesn't crash.
    	{"%v", reflect.Value{}, "<invalid reflect.Value>"},
    	{"%v", &reflect.Value{}, "<invalid Value>"},
    	{"%v", SI{reflect.Value{}}, "{<invalid Value>}"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/cache/cache_test.go

    					MilliCPU: 200,
    					Memory:   500,
    				},
    				&framework.Resource{
    					MilliCPU: 200,
    					Memory:   500,
    				},
    				[]*v1.Pod{updatedPod.DeepCopy()},
    				newHostPortInfoBuilder().add("TCP", "0.0.0.0", 90).build(),
    				make(map[string]*framework.ImageStateSummary),
    			),
    		},
    	}
    
    	logger, ctx := ktesting.NewTestContext(t)
    	ctx, cancel := context.WithCancel(ctx)
    	defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    const (
    	EV_RXCHAR  = 0x0001
    	EV_RXFLAG  = 0x0002
    	EV_TXEMPTY = 0x0004
    	EV_CTS     = 0x0008
    	EV_DSR     = 0x0010
    	EV_RLSD    = 0x0020
    	EV_BREAK   = 0x0040
    	EV_ERR     = 0x0080
    	EV_RING    = 0x0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic priority="60">
          <match value="pe\000\000" type="string" offset="128">
             <match value="0x01c0" type="little16" offset="132"/>
          </match>
          <match value="pe\000\000" type="string" offset="240">
             <match value="0x01c0" type="little16" offset="244"/>
          </match>
        </magic>
      </mime-type>
      <mime-type type="application/x-msdownload;format=pe-arm7">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top