Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 191 for worst (0.04 sec)

  1. src/crypto/ecdsa/ecdsa.go

    func hashToNat[Point nistPoint[Point]](c *nistCurve[Point], e *bigmod.Nat, hash []byte) {
    	// ECDSA asks us to take the left-most log2(N) bits of hash, and use them as
    	// an integer modulo N. This is the absolute worst of all worlds: we still
    	// have to reduce, because the result might still overflow N, but to take
    	// the left-most bits for P-521 we have to do a right shift.
    	if size := c.N.Size(); len(hash) >= size {
    		hash = hash[:size]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashSet.java

       *       simply switch over to use the JDK implementation wholesale if probable hash flooding is
       *       detected, sacrificing the compactness guarantee in very rare cases in exchange for much
       *       more reliable worst-case behavior.
       *   <li>null, if no entries have yet been added to the map
       * </ul>
       */
      @CheckForNull private transient Object table;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

        checkNotNull(seq);
    
        // length to truncate the sequence to, not including the truncation indicator
        int truncationLength = maxLength - truncationIndicator.length();
    
        // in this worst case, this allows a maxLength equal to the length of the truncationIndicator,
        // meaning that a string will be truncated to just the truncation indicator itself
        checkArgument(
            truncationLength >= 0,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  4. src/text/template/parse/parse.go

    	// Are there declarations or assignments?
    decls:
    	if v := t.peekNonSpace(); v.typ == itemVariable {
    		t.next()
    		// Since space is a token, we need 3-token look-ahead here in the worst case:
    		// in "$x foo" we need to read "foo" (as opposed to ":=") to know that $x is an
    		// argument variable rather than a declaration. So remember the token
    		// adjacent to the variable so we can push it back if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	}
    
    	// Pods that uses a PVC that is being deleted must not be started.
    	//
    	// In case an old kubelet is running without this check or some kubelets
    	// have this feature disabled, the worst that can happen is that such
    	// pod is scheduled. This was the default behavior in 1.8 and earlier
    	// and users should not be that surprised.
    	// It should happen only in very rare case when scheduler schedules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Ascii.java

        checkNotNull(seq);
    
        // length to truncate the sequence to, not including the truncation indicator
        int truncationLength = maxLength - truncationIndicator.length();
    
        // in this worst case, this allows a maxLength equal to the length of the truncationIndicator,
        // meaning that a string will be truncated to just the truncation indicator itself
        checkArgument(
            truncationLength >= 0,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    func (s *String) ReadASN1ObjectIdentifier(out *encoding_asn1.ObjectIdentifier) bool {
    	var bytes String
    	if !s.ReadASN1(&bytes, asn1.OBJECT_IDENTIFIER) || len(bytes) == 0 {
    		return false
    	}
    
    	// In the worst case, we get two elements from the first byte (which is
    	// encoded differently) and then every varint is a single byte long.
    	components := make([]int, len(bytes)+1)
    
    	// The first varint is 40*value1 + value2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/debug/dwarf/line.go

    // returns [ErrUnknownPC]. In this case, *entry and the final seek
    // position are unspecified.
    //
    // Note that DWARF line tables only permit sequential, forward scans.
    // Hence, in the worst case, this takes time linear in the size of the
    // line table. If the caller wishes to do repeated fast PC lookups, it
    // should build an appropriate index of the line table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  9. src/net/url/url_test.go

    		&URL{
    			Scheme: "mysql",
    			Host:   "a,b,c",
    			Path:   "/bar",
    		},
    		"",
    	},
    	// worst case host, still round trips
    	{
    		"scheme://!$&'()*+,;=hello!:1/path",
    		&URL{
    			Scheme: "scheme",
    			Host:   "!$&'()*+,;=hello!:1",
    			Path:   "/path",
    		},
    		"",
    	},
    	// worst case path, still round trips
    	{
    		"http://host/!$&'()*+,;=:@[hello]",
    		&URL{
    			Scheme:  "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  10. src/encoding/asn1/asn1.go

    // that are assigned in a hierarchy.
    func parseObjectIdentifier(bytes []byte) (s ObjectIdentifier, err error) {
    	if len(bytes) == 0 {
    		err = SyntaxError{"zero length OBJECT IDENTIFIER"}
    		return
    	}
    
    	// In the worst case, we get two elements from the first byte (which is
    	// encoded differently) and then every varint is a single byte long.
    	s = make([]int, len(bytes)+1)
    
    	// The first varint is 40*value1 + value2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top