Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for 0x0100 (0.15 sec)

  1. src/vendor/golang.org/x/net/idna/tables12.0.0.go

    	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080,
    	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080,
    	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008,
    	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 273.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go

    	0x61: 0xa000, 0x62: 0xa000, 0x63: 0xa000,
    	0x64: 0xa000, 0x65: 0xa000, 0x66: 0xa000, 0x67: 0xa000, 0x68: 0xa000, 0x69: 0xa000,
    	0x6a: 0xa000, 0x6b: 0xa000, 0x6c: 0xa000, 0x6d: 0xa000, 0x6e: 0xa000, 0x6f: 0xa000,
    	0x70: 0xa000, 0x72: 0xa000, 0x73: 0xa000, 0x74: 0xa000, 0x75: 0xa000,
    	0x76: 0xa000, 0x77: 0xa000, 0x78: 0xa000, 0x79: 0xa000, 0x7a: 0xa000,
    	// Block 0x2, offset 0x80
    	// Block 0x3, offset 0xc0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 385.8K bytes
    - Viewed (0)
  3. okhttp-idna-mapping-table/src/test/kotlin/okhttp3/internal/idn/MappingTablesTest.kt

            ),
          ),
        ).containsExactly(
          Mapping(0x0000, 0x002e, TYPE_VALID, ByteString.EMPTY),
        )
      }
    
      @Test fun withSectionStartsSplits() {
        assertThat(
          withoutSectionSpans(
            listOf(
              Mapping(0x40000, 0x40180, TYPE_DISALLOWED, ByteString.EMPTY),
            ),
          ),
        ).containsExactly(
          Mapping(0x40000, 0x4007f, TYPE_DISALLOWED, ByteString.EMPTY),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/derived_attrs.mlir

        // CHECK: Tdense = [i64]
        // CHECK-SAME: dense_shapes = [#corert.shape<>]
        { device = "/device:CPU:0", num_sparse = 0 : i64, dense_shapes = [#tf_type.shape<>], resultSegmentSizes = array<i32: 0, 0, 0, 1, 0, 0>}
          : (tensor<?x!tf_type.string>, tensor<0x!tf_type.string>, tensor<0x!tf_type.string>, tensor<1x!tf_type.string>, tensor<0x!tf_type.string>, tensor<0xi64>)
          -> tensor<?xi64>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 959 bytes
    - Viewed (0)
  5. src/runtime/testdata/testwinsignal/main.go

    	hwnd, _, err := getConsoleWindow.Call()
    	if hwnd == 0 {
    		log.Fatal("no associated console: ", err)
    	}
    
    	// Send message to close the console window.
    	const _WM_CLOSE = 0x0010
    	user32 := syscall.NewLazyDLL("user32.dll")
    	postMessage := user32.NewProc("PostMessageW")
    	ok, _, err := postMessage.Call(hwnd, _WM_CLOSE, 0, 0)
    	if ok == 0 {
    		log.Fatal("post message failed: ", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/validation/vld.go

    package validation
    
    import (
    	"encoding/binary"
    	"unsafe"
    )
    
    var nativeByteOrder binary.ByteOrder
    
    func init() {
    	var x uint16 = 0x0102
    	lowerByte := *(*byte)(unsafe.Pointer(&x))
    	switch lowerByte {
    	case 0x01:
    		nativeByteOrder = binary.BigEndian
    	case 0x02:
    		nativeByteOrder = binary.LittleEndian
    	default:
    		panic("Could not determine native byte order.")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 03 17:28:06 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbComQueryInformationResponse.java

     */
    
    package jcifs.smb1.smb1;
    
    import java.util.Date;
    
    import jcifs.smb1.util.Hexdump;
    
    class SmbComQueryInformationResponse extends ServerMessageBlock implements Info {
    
        private int fileAttributes = 0x0000;
        private long lastWriteTime = 0L;
        private long serverTimeZoneOffset;
        private int fileSize = 0;
    
        SmbComQueryInformationResponse( long serverTimeZoneOffset ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm_test.go

    				`0x20034 131124\s\(.*\)\tJMP\t0`},
    			[]string{``,
    				`0x0000 00000\s\(.*\)\tBC\t\$4,\sCR0EQ,\s8`,
    				`0x0004 00004\s\(.*\)\tJMP\t131128`},
    		},
    		{"BNE",
    			[]string{``,
    				`0x20030 131120\s\(.*\)\tBC\t\$12,\sCR0EQ,\s131128`,
    				`0x20034 131124\s\(.*\)\tJMP\t0`},
    			[]string{``,
    				`0x0000 00000\s\(.*\)\tBC\t\$12,\sCR0EQ,\s8`,
    				`0x0004 00004\s\(.*\)\tJMP\t131128`}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    
    /**
     * 
     */
    public class SmbComQueryInformationResponse extends ServerMessageBlock implements SmbBasicFileInfo {
    
        private int fileAttributes = 0x0000;
        private long lastWriteTime = 0L;
        private long serverTimeZoneOffset;
        private int fileSize = 0;
    
    
        /**
         * 
         * @param config
         * @param serverTimeZoneOffset
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/condition_code.go

    	NoBorrow CCMask = Carry
    )
    
    // Inverse returns the complement of the condition code mask.
    func (c CCMask) Inverse() CCMask {
    	return c ^ Always
    }
    
    // ReverseComparison swaps the bits at 0b0100 and 0b0010 in the mask,
    // reversing the behavior of greater than and less than conditions.
    func (c CCMask) ReverseComparison() CCMask {
    	r := c & EqualOrUnordered
    	if c&Less != 0 {
    		r |= Greater
    	}
    	if c&Greater != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 3.2K bytes
    - Viewed (0)
Back to top