Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 119 for 0_80 (0.04 sec)

  1. staging/src/k8s.io/api/coordination/v1beta1/generated.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1alpha1/generated.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apidiscovery/v2/generated.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    	}
    	if bytes[0] == 0 && bytes[1]&0x80 == 0 || bytes[0] == 0xff && bytes[1]&0x80 == 0x80 {
    		// Value is not minimally encoded.
    		return false
    	}
    	return true
    }
    
    var bigOne = big.NewInt(1)
    
    func (s *String) readASN1BigInt(out *big.Int) bool {
    	var bytes String
    	if !s.ReadASN1(&bytes, asn1.INTEGER) || !checkASN1Integer(bytes) {
    		return false
    	}
    	if bytes[0]&0x80 == 0x80 {
    		// Negative number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/node/v1alpha1/generated.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storagemigration/v1alpha1/generated.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go

    	O_FSYNC                          = 0x4010
    	O_LARGEFILE                      = 0x2000
    	O_NDELAY                         = 0x80
    	O_NOATIME                        = 0x40000
    	O_NOCTTY                         = 0x800
    	O_NOFOLLOW                       = 0x20000
    	O_NONBLOCK                       = 0x80
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x4010
    	O_SYNC                           = 0x4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go

    	O_FSYNC                          = 0x4010
    	O_LARGEFILE                      = 0x0
    	O_NDELAY                         = 0x80
    	O_NOATIME                        = 0x40000
    	O_NOCTTY                         = 0x800
    	O_NOFOLLOW                       = 0x20000
    	O_NONBLOCK                       = 0x80
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x4010
    	O_SYNC                           = 0x4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  9. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowApi
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go

    	O_FSYNC                          = 0x4010
    	O_LARGEFILE                      = 0x2000
    	O_NDELAY                         = 0x80
    	O_NOATIME                        = 0x40000
    	O_NOCTTY                         = 0x800
    	O_NOFOLLOW                       = 0x20000
    	O_NONBLOCK                       = 0x80
    	O_PATH                           = 0x200000
    	O_RSYNC                          = 0x4010
    	O_SYNC                           = 0x4010
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.7K bytes
    - Viewed (0)
Back to top