Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 42e0 (0.03 sec)

  1. src/crypto/tls/handshake_messages.go

    	}
    	if m.scts {
    		// RFC 6962, Section 3.3.1
    		exts.AddUint16(extensionSCT)
    		exts.AddUint16(0) // empty extension_data
    	}
    	if m.earlyData {
    		// RFC 8446, Section 4.2.10
    		exts.AddUint16(extensionEarlyData)
    		exts.AddUint16(0) // empty extension_data
    	}
    	if m.quicTransportParameters != nil { // marshal zero-length parameters when present
    		// RFC 9001, Section 8.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. kotlin-js-store/yarn.lock

    graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
      version "4.2.10"
      resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
      integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==
    
    graceful-fs@^4.2.10:
      version "4.2.11"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    )
    
    const (
    	reconcilerLoopPeriod          = 10 * time.Millisecond
    	syncLoopPeriod                = 100 * time.Minute
    	maxWaitForUnmountDuration     = 50 * time.Millisecond
    	maxLongWaitForUnmountDuration = 4200 * time.Second
    	volumeAttachedCheckTimeout    = 5 * time.Second
    )
    
    var registerMetrics sync.Once
    
    // Calls Run()
    // Verifies there are no calls to attach or detach.
    func Test_Run_Positive_DoNothing(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  4. src/bytes/bytes_test.go

    			}
    		})
    	}
    }
    
    func TestClone(t *testing.T) {
    	var cloneTests = [][]byte{
    		[]byte(nil),
    		[]byte{},
    		Clone([]byte{}),
    		[]byte(strings.Repeat("a", 42))[:0],
    		[]byte(strings.Repeat("a", 42))[:0:0],
    		[]byte("short"),
    		[]byte(strings.Repeat("a", 42)),
    	}
    	for _, input := range cloneTests {
    		clone := Clone(input)
    		if !Equal(clone, input) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    	{AMOVW, C_REG, C_NONE, C_FCREG, 41, 4, 0, 0, 0},
    	{AMOVV, C_REG, C_NONE, C_FCREG, 41, 4, 0, sys.MIPS64, 0},
    	{AMOVW, C_FCREG, C_NONE, C_REG, 42, 4, 0, 0, 0},
    	{AMOVV, C_FCREG, C_NONE, C_REG, 42, 4, 0, sys.MIPS64, 0},
    
    	{ATEQ, C_SCON, C_REG, C_REG, 15, 4, 0, 0, 0},
    	{ATEQ, C_SCON, C_NONE, C_REG, 15, 4, 0, 0, 0},
    	{ACMOVT, C_REG, C_NONE, C_REG, 17, 4, 0, 0, 0},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
Back to top