Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 149 for worst (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/collect/CompactHashMap.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
    - 39.7K bytes
    - Viewed (0)
  7. src/debug/dwarf/entry.go

    // is not covered by any unit, SeekPC returns [ErrUnknownPC] and the
    // position of the reader is undefined.
    //
    // Because compilation units can describe multiple regions of the
    // executable, in the worst case SeekPC must search through all the
    // ranges in all the compilation units. Each call to SeekPC starts the
    // search at the compilation unit of the last call, so in general
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    			// Current setting is 16 bytes, which relates to 2x worst case memory
    			// wastage (when all but one subobjects are unreachable).
    			// 8 bytes would result in no wastage at all, but provides less
    			// opportunities for combining.
    			// 32 bytes provides more opportunities for combining,
    			// but can lead to 4x worst case wastage.
    			// The best case winning is 8x regardless of block size.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/CompactHashMap.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
    - 35.8K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    // also sweep pages (e.g., for a large allocation), it can pass a
    // non-zero callerSweepPages to leave that many pages unswept.
    //
    // deductSweepCredit makes a worst-case assumption that all spanBytes
    // bytes of the ultimately allocated span will be available for object
    // allocation.
    //
    // deductSweepCredit is the core of the "proportional sweep" system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top