Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for longlong (0.2 sec)

  1. src/cmd/cgo/doc.go

    The standard C numeric types are available under the names
    C.char, C.schar (signed char), C.uchar (unsigned char),
    C.short, C.ushort (unsigned short), C.int, C.uint (unsigned int),
    C.long, C.ulong (unsigned long), C.longlong (long long),
    C.ulonglong (unsigned long long), C.float, C.double,
    C.complexfloat (complex float), and C.complexdouble (complex double).
    The C type void* is represented by Go's unsafe.Pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    	"short int":              "short",
    	"long long int":          "longlong",
    	"long long unsigned int": "ulonglong",
    	"signed char":            "schar",
    	"unsigned char":          "uchar",
    	"unsigned long":          "ulong",     // Used by Clang 14; issue 53013.
    	"unsigned long long":     "ulonglong", // Used by Clang 14; issue 53013.
    }
    
    const signedDelta = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. lib/time/zoneinfo.zip

    Europe/Tirane Europe/Tiraspol Europe/Ulyanovsk Europe/Uzhgorod Europe/Vaduz Europe/Vatican Europe/Vienna Europe/Vilnius Europe/Volgograd Europe/Warsaw Europe/Zagreb Europe/Zaporozhye Europe/Zurich Factory GB GB-Eire GMT GMT+0 GMT-0 GMT0 Greenwich HST Hongkong Iceland Indian/Antananarivo Indian/Chagos Indian/Christmas Indian/Cocos Indian/Comoro Indian/Kerguelen Indian/Mahe Indian/Maldives Indian/Mauritius Indian/Mayotte Indian/Reunion Iran Israel Jamaica Japan Kwajalein Libya MET MST MST7MDT Mexico/BajaNorte...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    		}
    	*/
    	return nil
    }
    
    func (tw *Writer) writeGNUHeader(hdr *Header) error {
    	// Use long-link files if Name or Linkname exceeds the field size.
    	const longName = "././@LongLink"
    	if len(hdr.Name) > nameSize {
    		data := hdr.Name + "\x00"
    		if err := tw.writeRawFile(longName, data, TypeGNULongName, FormatGNU); err != nil {
    			return err
    		}
    	}
    	if len(hdr.Linkname) > nameSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun httpWithExcessiveHeaders() {
        val longLine = "HTTP/1.1 200 " + stringFill('O', 256 * 1024) + "K"
        server.protocols = listOf(Protocol.HTTP_1_1)
        server.enqueue(
          MockResponse.Builder()
            .status(longLine)
            .body("I'm not even supposed to be here today.")
            .build(),
        )
        executeSynchronously("/")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation_test.go

    		`Europe/Warsaw`,
    		`Europe/Zagreb`,
    		`Europe/Zaporozhye`,
    		`Europe/Zurich`,
    		`Factory`,
    		`GB`,
    		`GB-Eire`,
    		`GMT`,
    		`GMT+0`,
    		`GMT-0`,
    		`GMT0`,
    		`Greenwich`,
    		`Hongkong`,
    		`HST`,
    		`Iceland`,
    		`Indian/Antananarivo`,
    		`Indian/Chagos`,
    		`Indian/Christmas`,
    		`Indian/Cocos`,
    		`Indian/Comoro`,
    		`Indian/Kerguelen`,
    		`Indian/Mahe`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"simple":   0x6f,
    	"solba":    0x66,
    	"sotav":    0x4e,
    	"spanglis": 0x4f,
    	"surmiran": 0x50,
    	"sursilv":  0x51,
    	"sutsilv":  0x52,
    	"synnejyl": 0x53,
    	"tarask":   0x54,
    	"tongyong": 0x55,
    	"tunumiit": 0x56,
    	"uccor":    0x57,
    	"ucrcor":   0x58,
    	"ulster":   0x59,
    	"unifon":   0x5a,
    	"vaidika":  0x5b,
    	"valencia": 0x5c,
    	"vallader": 0x5d,
    	"vecdruka": 0x5e,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top