Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for badlen (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    }
    
    func AdjustTokenGroups(token Token, resetToDefault bool, newstate *Tokengroups, buflen uint32, prevstate *Tokengroups, returnlen *uint32) (err error) {
    	var _p0 uint32
    	if resetToDefault {
    		_p0 = 1
    	}
    	r1, _, e1 := syscall.Syscall6(procAdjustTokenGroups.Addr(), 6, uintptr(token), uintptr(_p0), uintptr(unsafe.Pointer(newstate)), uintptr(buflen), uintptr(unsafe.Pointer(prevstate)), uintptr(unsafe.Pointer(returnlen)))
    	if r1 == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	PADDL ·chacha20Constants<>(SB), A0; PADDL state1Store, B0
    
    	// Clamp and store the key
    	PAND ·polyClampMask<>(SB), A0
    	MOVO A0, rStore; MOVO B0, sStore
    
    	// Hash AAD
    	MOVQ ad_len+80(FP), itr2
    	CALL polyHashADInternal<>(SB)
    
    openSSEMainLoop:
    	CMPQ inl, $256
    	JB   openSSEMainLoopDone
    
    	// Load state, increment counter blocks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	tests := []struct {
    		bytes  []byte
    		bitLen int
    	}{
    		{nil, 0},
    		{[]byte{0x00}, 0},
    		{[]byte{0x00, 0x00}, 0},
    		{[]byte{0xf0}, 4},
    		{[]byte{0x88}, 5},
    		{[]byte{0xff}, 8},
    		{[]byte{0xff, 0x80}, 9},
    		{[]byte{0xff, 0x81}, 16},
    	}
    
    	for i, test := range tests {
    		if got := asn1BitLength(test.bytes); got != test.bitLen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"baby_chick":                           "\U0001f424",
    	"baby_symbol":                          "\U0001f6bc",
    	"back":                                 "\U0001f519",
    	"bacon":                                "\U0001f953",
    	"badger":                               "\U0001f9a1",
    	"badminton":                            "\U0001f3f8",
    	"bagel":                                "\U0001f96f",
    	"baggage_claim":                        "\U0001f6c4",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    b-data.io
    
    // backplane : https://www.backplane.io
    // Submitted by Anthony Voutas <******@****.***>
    backplaneapp.io
    
    // Balena : https://www.balena.io
    // Submitted by Petros Angelatos <petrosagg@balena.io>
    balena-devices.com
    
    // University of Banja Luka : https://unibl.org
    // Domains for Republic of Srpska administrative entity.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    all think me at home!  Why, I wouldn't say anything about it,
    even if I fell off the top of the house!' (Which was very likely
    true.)
    
      Down, down, down.  Would the fall NEVER come to an end!  `I
    wonder how many miles I've fallen by this time?' she said aloud.
    `I must be getting somewhere near the centre of the earth.  Let
    me see:  that would be four thousand miles down, I think--' (for,
    you see, Alice had learnt several things of this sort in her
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			errors: []string{"failed rule"},
    		},
    		{name: "matchExpressions - invalid label value",
    			obj: map[string]interface{}{
    				"matchExpressions": []interface{}{
    					map[string]interface{}{
    						"key":      "badkey!",
    						"operator": "Exists",
    						"values":   []interface{}{},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
Back to top