Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 191 for worst (1.9 sec)

  1. src/runtime/mgcmark.go

    		// Try to keep work available on the global queue. We used to
    		// check if there were waiting workers, but it's better to
    		// just keep work available than to make workers wait. In the
    		// worst case, we'll do O(log(_WorkbufSize)) unnecessary
    		// balances.
    		if work.full == 0 {
    			gcw.balance()
    		}
    
    		b := gcw.tryGetFast()
    		if b == 0 {
    			b = gcw.tryGet()
    			if b == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    		// scavenging throughput.
    		//
    		// The current value is chosen assuming a cost of ~10µs/physical page
    		// (this is somewhat pessimistic), which implies a worst-case latency of
    		// about 160µs for 4 KiB physical pages. The current value is biased
    		// toward latency over throughput.
    		const scavengeQuantum = 64 << 10
    
    		// Accumulate the amount of time spent scavenging.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/de/stopwords.txt

    uns
    unse
    unsem
    unsen
    unser
    unses
    unter
    viel
    vom
    von
    vor
    während
    war
    waren
    warst
    was
    weg
    weil
    weiter
    welche
    welchem
    welchen
    welcher
    welches
    wenn
    werde
    werden
    wie
    wieder
    will
    wir
    wird
    wirst
    wo
    wollen
    wollte
    würde
    würden
    zu
    zum
    zur
    zwar
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    // resolveQueries returns with changed=false.
    func (r *resolver) resolveQueries(ctx context.Context, queries []*query) (changed bool) {
    	defer base.ExitIfErrors()
    
    	// Note: this is O(N²) with the number of pathSets in the worst case.
    	//
    	// We could perhaps get it down to O(N) if we were to index the pathSets
    	// by module path, so that we only revisit a given pathSet when the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/vet/testdata/buildtag/buildtag4.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    //go:build !(bad || worse)
    // +build !bad
    // +build !worse
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 292 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/HashFunction.java

       *
       * @since 12.0
       */
      HashCode hashInt(int input);
    
      /**
       * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the given
       * {@code long} value, interpreted in little-endian byte order. The implementation <i>might</i>
       * perform better than its longhand equivalent, but should not perform worse.
       */
      HashCode hashLong(long input);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/HashFunction.java

       *
       * @since 12.0
       */
      HashCode hashInt(int input);
    
      /**
       * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the given
       * {@code long} value, interpreted in little-endian byte order. The implementation <i>might</i>
       * perform better than its longhand equivalent, but should not perform worse.
       */
      HashCode hashLong(long input);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.30.md

    - Previously, the scheduling queue didn't notice any extenders' failures, potentially resulting in missed cluster events and Pods rejected by Extenders being stuck in the unschedulable pod pool for up to 5 minutes in the worst-case scenario. Now, the scheduling queue notices extenders' failures and requeues Pods rejected by Extenders appropriately.
       ([#122022](https://github.com/kubernetes/kubernetes/pull/122022), [@sanposhiho](https://github.com/sanposhiho))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultComponentSelectionTest.groovy

            selection.rejectionReason == "bad"
        }
    
        def "last rejection wins"() {
            when:
            selection.reject("bad")
            selection.reject("worse")
    
            then:
            selection.rejected
            selection.rejectionReason == "worse"
        }
    
        def 'delegates to metadata provider for metadata access'() {
            given:
            metadataProvider.usable >> true
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. test/fixedbugs/bug200.go

    // license that can be found in the LICENSE file.
    
    package main
    
    func main() {
    	// 6g used to compile these as two different
    	// hash codes so it missed the duplication
    	// and worse, compiled the wrong code
    	// for one of them.
    	var x interface{};
    	switch x.(type) {
    	case func(int):
    	case func(f int):	// ERROR "duplicate"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 454 bytes
    - Viewed (0)
Back to top