Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for 0x01010000 (0.11 sec)

  1. src/main/java/jcifs/smb/NtlmUtil.java

            Encdec.enc_uint32le(0x00000000, temp, 4); // Reserved
            Encdec.enc_uint64le(nanos1601, temp, 8);
            System.arraycopy(clientChallenge, 0, temp, 16, 8);
            Encdec.enc_uint32le(0x00000000, temp, 24); // Unknown
            if ( avPairs != null )
                System.arraycopy(avPairs, 0, temp, 28, avPairsLength);
            Encdec.enc_uint32le(0x00000000, temp, 28 + avPairsLength); // mystery bytes!
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/outbuf_test.go

    		writePos        int64
    		addressInHeap   bool
    	}{
    		{100, 0, 0, 100, 0, 0, false},
    		{100, 100, 0, 100, 100, 0, true},
    		{10, 10, 0, 100, 100, 0, true},
    		{10, 20, 10, 100, 110, 10, true},
    		{0, 0, 0, 100, 100, 0, true},
    	}
    
    	for i, test := range tests {
    		ob := &OutBuf{
    			buf:  make([]byte, test.bufLen),
    			off:  test.off,
    			heap: make([]byte, test.heapLen),
    		}
    		pos, buf := ob.writeLoc(test.lenToWrite)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 08 20:03:01 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  3. src/math/hypot_386.s

    	JEQ     is_inf
    	MOVL    $0x7ff80000, ret_hi+20(FP)  // return NaN = 0x7FF8000000000001
    	MOVL    $0x00000001, ret_lo+16(FP)
    	RET
    is_inf:
    	MOVL    AX, ret_hi+20(FP)  // return +Inf = 0x7FF0000000000000
    	MOVL    $0x00000000, ret_lo+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/collect/MapsMemoryBenchmark.java

      /** Map pre-created before experiment starts to only measure iteration cost during experiment. */
      Map<Element, Element> map;
    
      CollectionBenchmarkSampleData elems;
    
      @Param({"0", "1", "100", "10000"})
      int elements;
    
      @BeforeExperiment
      public void prepareContents() throws Exception {
        mapsImpl = mapEnums.get(implName);
        elems = new CollectionBenchmarkSampleData(elements);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 20 15:07:46 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	FILE_NAMED_STREAMS                = 0x00040000
    	FILE_PERSISTENT_ACLS              = 0x00000008
    	FILE_READ_ONLY_VOLUME             = 0x00080000
    	FILE_SEQUENTIAL_WRITE_ONCE        = 0x00100000
    	FILE_SUPPORTS_ENCRYPTION          = 0x00020000
    	FILE_SUPPORTS_EXTENDED_ATTRIBUTES = 0x00800000
    	FILE_SUPPORTS_HARD_LINKS          = 0x00400000
    	FILE_SUPPORTS_OBJECT_IDS          = 0x00010000
    	FILE_SUPPORTS_OPEN_BY_FILE_ID     = 0x01000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv12-X25519-ECDHE

    00000060  c0 14 00 9c 00 9d 00 2f  00 35 c0 12 00 0a c0 23  |......./.5.....#|
    00000070  c0 27 00 3c c0 07 c0 11  00 05 13 03 13 01 13 02  |.'.<............|
    00000080  01 00 00 79 00 0b 00 02  01 00 ff 01 00 01 00 00  |...y............|
    00000090  17 00 00 00 12 00 00 00  05 00 05 01 00 00 00 00  |................|
    000000a0  00 0a 00 04 00 02 00 1d  00 0d 00 1a 00 18 08 04  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. src/debug/pe/section.go

    const (
    	IMAGE_SCN_CNT_CODE               = 0x00000020
    	IMAGE_SCN_CNT_INITIALIZED_DATA   = 0x00000040
    	IMAGE_SCN_CNT_UNINITIALIZED_DATA = 0x00000080
    	IMAGE_SCN_LNK_COMDAT             = 0x00001000
    	IMAGE_SCN_MEM_DISCARDABLE        = 0x02000000
    	IMAGE_SCN_MEM_EXECUTE            = 0x20000000
    	IMAGE_SCN_MEM_READ               = 0x40000000
    	IMAGE_SCN_MEM_WRITE              = 0x80000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite_test.go

    		input    int64
    		expected bool
    	}{
    		{0x00000001, true},
    		{0x80000001, true},
    		{0x80010001, false},
    		{0xFFFFFFFA, false},
    		{0xF0F0F0F0, false},
    		{0xFFFFFFFD, true},
    		{0x80000000, true},
    		{0x00000000, false},
    		{0xFFFFFFFF, true},
    		{0x0000FFFF, true},
    		{0xFF0000FF, true},
    		{0x00FFFF00, true},
    	}
    
    	for _, v := range tests {
    		if v.expected != isPPC64WordRotateMask(v.input) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 21:57:02 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  9. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                localRepository.get().file("org/gradle/${baseName.get()}/maven-metadata.xml").asFile.apply {
                    writeText(readText().replace("\\Q<lastUpdated>\\E\\d+\\Q</lastUpdated>\\E".toRegex(), "<lastUpdated>${Year.now().value}0101000000</lastUpdated>"))
                }
                localRepository.get().asFileTree.matching { include("**/*.module") }.forEach {
                    val content = it.readText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/debug/macho/macho.go

    	FlagRootSafe              uint32 = 0x40000
    	FlagSetuidSafe            uint32 = 0x80000
    	FlagNoReexportedDylibs    uint32 = 0x100000
    	FlagPIE                   uint32 = 0x200000
    	FlagDeadStrippableDylib   uint32 = 0x400000
    	FlagHasTLVDescriptors     uint32 = 0x800000
    	FlagNoHeapExecution       uint32 = 0x1000000
    	FlagAppExtensionSafe      uint32 = 0x2000000
    )
    
    // A Section32 is a 32-bit Mach-O section header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 00:56:52 UTC 2021
    - 7.6K bytes
    - Viewed (0)
Back to top