Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 148 for worst (0.07 sec)

  1. src/cmd/compile/internal/walk/order.go

    		// We're assuming here that all the keys in the map literal are distinct.
    		// If any are equal, this will be an overcount. Probably not worth accounting
    		// for that, as equal keys in map literals are rare, and at worst we waste
    		// a bit of space.
    		n.Len += int64(len(dynamics))
    
    		return m
    	}
    
    	// No return - type-assertions above. Each case must return for itself.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
       *   <li>This is only called when a waiting thread times out or is interrupted. Both of which
       *       should be rare.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          }
        }
      }
    
      /**
       * Marks the given node as 'deleted' (null waiter) and then scans the list to unlink all deleted
       * nodes. This is an O(n) operation in the common case (and O(n^2) in the worst), but we are saved
       * by two things.
       *
       * <ul>
       *   <li>This is only called when a waiting thread times out or is interrupted. Both of which
       *       should be rare.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. src/crypto/x509/verify_test.go

    	if testing.Short() {
    		t.Skip("skipping generation of a long chain of certificates in short mode")
    	}
    
    	// Build a chain where all intermediates share the same subject, to hit the
    	// path building worst behavior.
    	roots, intermediates := NewCertPool(), NewCertPool()
    
    	parent, parentKey, err := generateCert("Root CA", true, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	roots.AddCert(parent)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top