Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 213 for 0_22 (0.13 sec)

  1. src/debug/dwarf/const.go

    	AttrCompDir        Attr = 0x1B
    	AttrConstValue     Attr = 0x1C
    	AttrContainingType Attr = 0x1D
    	AttrDefaultValue   Attr = 0x1E
    	AttrInline         Attr = 0x20
    	AttrIsOptional     Attr = 0x21
    	AttrLowerBound     Attr = 0x22
    	AttrProducer       Attr = 0x25
    	AttrPrototyped     Attr = 0x27
    	AttrReturnAddr     Attr = 0x2A
    	AttrStartScope     Attr = 0x2C
    	AttrStrideSize     Attr = 0x2E
    	AttrUpperBound     Attr = 0x2F
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. src/image/png/testdata/pngsuite/basn3p08.sng

        ( 68,  0,  0)     # rgb = (0x44,0x00,0x00)
        (136,136,  0)     # rgb = (0x88,0x88,0x00)
        (255,228,203)     # rgb = (0xff,0xe4,0xcb)
        (186, 91,  0)     # rgb = (0xba,0x5b,0x00)
        ( 34,255, 34)     # rgb = (0x22,0xff,0x22)
        (102, 50,  0)     # rgb = (0x66,0x32,0x00)
        (255,255,153)     # rgb = (0xff,0xff,0x99)
        (170,170,255)     # rgb = (0xaa,0xaa,0xff)
        ( 85,  0,  0)     # rgb = (0x55,0x00,0x00)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 13.9K bytes
    - Viewed (0)
  3. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_TAG_module                   = 0x1e
    	DW_TAG_ptr_to_member_type       = 0x1f
    	DW_TAG_set_type                 = 0x20
    	DW_TAG_subrange_type            = 0x21
    	DW_TAG_with_stmt                = 0x22
    	DW_TAG_access_declaration       = 0x23
    	DW_TAG_base_type                = 0x24
    	DW_TAG_catch_block              = 0x25
    	DW_TAG_const_type               = 0x26
    	DW_TAG_constant                 = 0x27
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  4. src/syscall/zerrors_linux_mips.go

    	F_RDLCK                          = 0x0
    	F_SETFD                          = 0x2
    	F_SETFL                          = 0x4
    	F_SETLEASE                       = 0x400
    	F_SETLK                          = 0x22
    	F_SETLK64                        = 0x22
    	F_SETLKW                         = 0x23
    	F_SETLKW64                       = 0x23
    	F_SETOWN                         = 0x18
    	F_SETOWN_EX                      = 0xf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_mipsle.go

    	F_RDLCK                          = 0x0
    	F_SETFD                          = 0x2
    	F_SETFL                          = 0x4
    	F_SETLEASE                       = 0x400
    	F_SETLK                          = 0x22
    	F_SETLK64                        = 0x22
    	F_SETLKW                         = 0x23
    	F_SETLKW64                       = 0x23
    	F_SETOWN                         = 0x18
    	F_SETOWN_EX                      = 0xf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 69.2K bytes
    - Viewed (0)
  6. src/math/bits/example_math_test.go

    	hi, lo := bits.Mul32(n1[1], n2[1])
    	nsum := []uint32{hi, lo}
    	fmt.Printf("%v * %v = %v\n", n1[1], n2[1], nsum)
    
    	// First number is 0<<32 + 2147483648
    	n1 = []uint32{0, 0x80000000}
    	// Second number is 0<<32 + 2
    	n2 = []uint32{0, 2}
    	// Multiply them together producing overflow.
    	hi, lo = bits.Mul32(n1[1], n2[1])
    	nsum = []uint32{hi, lo}
    	fmt.Printf("%v * %v = %v\n", n1[1], n2[1], nsum)
    	// Output:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 11 21:27:05 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CHelloWorldApp.groovy

    #include "gradle_cunit_register.h"
    
    int init_test(void) {
        return 0;
    }
    
    int clean_test(void) {
        return 0;
    }
    
    void test_sum(void) {
      CU_ASSERT(sum(0, 2) == 2);
    #ifndef ONE_TEST
      CU_ASSERT(sum(0, -2) == -2);
      CU_ASSERT(sum(2, 2) == 4);
    #endif
    }
    
    void gradle_cunit_register() {
        CU_pSuite pSuiteMath = CU_add_suite("hello test", init_test, clean_test);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_386.go

    	AF_INET                          = 0x2
    	AF_INET6                         = 0xa
    	AF_IPX                           = 0x4
    	AF_IRDA                          = 0x17
    	AF_ISDN                          = 0x22
    	AF_IUCV                          = 0x20
    	AF_KEY                           = 0xf
    	AF_LLC                           = 0x1a
    	AF_LOCAL                         = 0x1
    	AF_MAX                           = 0x27
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

              value: "\n\t\n\007Const:0\022\007foo.txt"
            }
          }
        }
      }
      collection_def {
        key: "trainable_variables"
        value {
          bytes_list {
            value: "\n\003a:0\022\010a/Assign\032\010a/read:0"
            value: "\n\003b:0\022\010b/Assign\032\010b/read:0"
            value: "\n\003c:0\022\010c/Assign\032\010c/read:0"
          }
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  10. requirements-docs.txt

    jieba==0.42.1
    # For image processing by Material for MkDocs
    pillow==10.3.0
    # For image processing by Material for MkDocs
    cairosvg==2.7.0
    mkdocstrings[python]==0.24.3
    griffe-typingdoc==0.2.2
    # For griffe, it formats with black
    black==24.3.0
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Apr 28 00:27:34 UTC 2024
    - 465 bytes
    - Viewed (0)
Back to top