Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 0b0190 (0.33 sec)

  1. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    	// executed.
    	//
    	// | condition code value |  mask bit  |
    	// +----------------------+------------+
    	// | 0 (equal)            | 0b1000 (8) |
    	// | 1 (less than)        | 0b0100 (4) |
    	// | 2 (greater than)     | 0b0010 (2) |
    	// | 3 (unordered)        | 0b0001 (1) |
    	//
    	// Note: that compare-and-branch instructions must not have bit 3 (0b0001) set.
    	var S390Xblocks = []blockData{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top