Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for 0x0100 (0.15 sec)

  1. tensorflow/cc/saved_model/testdata/StaticHashTableModule/variables/variables.data-00000-of-00001

    Brian Zhao <******@****.***> 1600836345 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 88 bytes
    - Viewed (0)
  2. tensorflow/cc/saved_model/testdata/chunked_saved_model/non_chunked_model/variables/variables.data-00000-of-00001

    Adam Cogdell <******@****.***> 1684357973 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 120 bytes
    - Viewed (0)
  3. tensorflow/cc/saved_model/testdata/half_plus_two_v2/00000123/variables/variables.data-00000-of-00001

    Katherine Wu <******@****.***> 1543456517 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 29 01:58:54 UTC 2018
    - 12 bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/x_plus_y_v2_debuginfo/variables/variables.data-00000-of-00001

    Sean Silva <******@****.***> 1570641721 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 09 18:10:32 UTC 2019
    - 25 bytes
    - Viewed (0)
  5. src/image/color/ycbcr.go

    }
    
    // CMYKToRGB converts a [CMYK] quadruple to an RGB triple.
    func CMYKToRGB(c, m, y, k uint8) (uint8, uint8, uint8) {
    	w := 0xffff - uint32(k)*0x101
    	r := (0xffff - uint32(c)*0x101) * w / 0xffff
    	g := (0xffff - uint32(m)*0x101) * w / 0xffff
    	b := (0xffff - uint32(y)*0x101) * w / 0xffff
    	return uint8(r >> 8), uint8(g >> 8), uint8(b >> 8)
    }
    
    // CMYK represents a fully opaque CMYK color, having 8 bits for each of cyan,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

        @JvmField val TLS_RSA_WITH_NULL_MD5 = init("SSL_RSA_WITH_NULL_MD5", 0x0001)
    
        @JvmField val TLS_RSA_WITH_NULL_SHA = init("SSL_RSA_WITH_NULL_SHA", 0x0002)
    
        @JvmField val TLS_RSA_EXPORT_WITH_RC4_40_MD5 = init("SSL_RSA_EXPORT_WITH_RC4_40_MD5", 0x0003)
    
        @JvmField val TLS_RSA_WITH_RC4_128_MD5 = init("SSL_RSA_WITH_RC4_128_MD5", 0x0004)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  7. src/internal/syscall/windows/registry/key.go

    	// for details.
    	ALL_ACCESS         = 0xf003f
    	CREATE_LINK        = 0x00020
    	CREATE_SUB_KEY     = 0x00004
    	ENUMERATE_SUB_KEYS = 0x00008
    	EXECUTE            = 0x20019
    	NOTIFY             = 0x00010
    	QUERY_VALUE        = 0x00001
    	READ               = 0x20019
    	SET_VALUE          = 0x00002
    	WOW64_32KEY        = 0x00200
    	WOW64_64KEY        = 0x00100
    	WRITE              = 0x20006
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            compare("1_0", "1-0") == 0
            compare("1-0", "1+0") == 0
            compare("1.a.2", "1a2") == 0 // number-word and word-number boundaries are considered separators
        }
    
        def "leading zeros in numeric parts are ignored"() {
            expect:
            compare("01.0", "1.0") == 0
            compare("1.0", "01.0") == 0
            compare("001.2.003", "0001.02.3") == 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm_test.go

    	}{
    		{
    			name: "8-byte alignment",
    			code: "TEXT ·foo(SB),$0-0\nMOVQ $0, AX\nPCALIGN $8\nMOVQ $1, BX\nRET\n",
    			out:  `0x0008\s00008\s\(.*\)\tMOVQ\t\$1,\sBX`,
    		},
    		{
    			name: "16-byte alignment",
    			code: "TEXT ·foo(SB),$0-0\nMOVQ $0, AX\nPCALIGN $16\nMOVQ $2, CX\nRET\n",
    			out:  `0x0010\s00016\s\(.*\)\tMOVQ\t\$2,\sCX`,
    		},
    	}
    
    	for _, test := range testCases {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 19:39:51 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_LANG_Ada83       = 0x0003
    	DW_LANG_C_plus_plus = 0x0004
    	DW_LANG_Cobol74     = 0x0005
    	DW_LANG_Cobol85     = 0x0006
    	DW_LANG_Fortran77   = 0x0007
    	DW_LANG_Fortran90   = 0x0008
    	DW_LANG_Pascal83    = 0x0009
    	DW_LANG_Modula2     = 0x000a
    	// Dwarf3
    	DW_LANG_Java           = 0x000b
    	DW_LANG_C99            = 0x000c
    	DW_LANG_Ada95          = 0x000d
    	DW_LANG_Fortran95      = 0x000e
    	DW_LANG_PLI            = 0x000f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
Back to top