Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for overflows (0.16 sec)

  1. src/syscall/zerrors_linux_loong64.go

    	ENOTSOCK        = Errno(0x58)
    	ENOTSUP         = Errno(0x5f)
    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x4c)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x5f)
    	EOVERFLOW       = Errno(0x4b)
    	EOWNERDEAD      = Errno(0x82)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x60)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x5d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 82.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{Quantity{d: maxAllowed, Format: DecimalSI}, math.MaxInt64},
    		{Quantity{d: maxAllowed, Format: BinarySI}, math.MaxInt64},
    		{decQuantity(12, 18, DecimalSI), 1.2e19},
    
    		// infinities caused due to float64 overflow
    		{decQuantity(12, 500, DecimalSI), math.Inf(0)},
    		{decQuantity(-12, 500, DecimalSI), math.Inf(-1)},
    	}
    
    	for _, item := range table {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		counter:                     counter,
    		seatDemandIntegratorSubject: seatDemandIntegratorSubject,
    	}.exercise(t)
    }
    
    // TestSeatSecondsRollover checks that there is not a problem with SeatSeconds overflow.
    func TestSeatSecondsRollover(t *testing.T) {
    	metrics.Register()
    	now := time.Now()
    
    	const Quarter = 91 * 24 * time.Hour
    
    	clk, counter := testeventclock.NewFake(now, 0, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    	//
    	// If that will result in a negative 12 bit number, add 1 to
    	// our upper bits to adjust for the borrow.
    	//
    	// It is not possible for this increment to overflow. To
    	// overflow, the 20 top bits would be 1, and the sign bit for
    	// the low 12 bits would be set, in which case the entire 32
    	// bit pattern fits in a 12 bit signed value.
    	if imm&(1<<11) != 0 {
    		high++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    	}
    	return 0, io.ErrUnexpectedEOF
    }
    
    var (
    	ErrInvalidLengthGenerated        = fmt.Errorf("proto: negative length found during unmarshaling")
    	ErrIntOverflowGenerated          = fmt.Errorf("proto: integer overflow")
    	ErrUnexpectedEndOfGroupGenerated = fmt.Errorf("proto: unexpected end of group")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    	l := st.l
    	if l.extStart != 0 {
    		panic("addSym called after external symbol is created")
    	}
    	i := Sym(len(l.objSyms))
    	if int(i) != len(l.objSyms) { // overflow
    		panic("too many symbols")
    	}
    	addToGlobal := func() {
    		l.objSyms = append(l.objSyms, objSym{r.objidx, li})
    	}
    	if name == "" && kind != hashed64Def && kind != hashedDef {
    		addToGlobal()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    		payloadBytes-- // encrypted ContentType
    	}
    
    	// Allow packet growth in arithmetic progression up to max.
    	pkt := c.packetsSent
    	c.packetsSent++
    	if pkt > 1000 {
    		return maxPlaintext // avoid overflow in multiply below
    	}
    
    	n := payloadBytes * int(pkt+1)
    	if n > maxPlaintext {
    		n = maxPlaintext
    	}
    	return n
    }
    
    func (c *Conn) write(data []byte) (int, error) {
    	if c.buffering {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/syscall/syscall_windows.go

    	err := getQueuedCompletionStatus(cphandle, qty, pukey, overlapped, timeout)
    	if key != nil {
    		*key = uint32(ukey)
    		if uintptr(*key) != ukey && err == nil {
    			err = errorspkg.New("GetQueuedCompletionStatus returned key overflow")
    		}
    	}
    	return err
    }
    
    // Deprecated: PostQueuedCompletionStatus has the wrong function signature. Use x/sys/windows.PostQueuedCompletionStatus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top