Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for longlong (0.11 sec)

  1. pkg/test/loadbalancersim/lb_test.go

    	numClients := 1
    	clientRPS := 1500
    	clientRequests := 1500
    	activeRequestBias := 1.0
    	sameZone := locality.Parse("us-east/ny")
    	sameRegion := locality.Parse("us-east/boston")
    	otherRegion := locality.Parse("asia-east/hongkong")
    	priorityWeights := map[uint32]uint32{
    		0: 30,
    		1: 20,
    		2: 1,
    	}
    	networkLatencies := map[mesh.RouteKey]time.Duration{
    		{
    			Src:  sameZone,
    			Dest: sameZone,
    		}: 1 * time.Millisecond,
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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