Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for worst (0.04 sec)

  1. src/cmd/compile/internal/base/base.go

    	// that expands the goal to a huge value, and that this will lead to
    	// out-of-memory.  This doesn't seem to happen; in experiments on a variety
    	// of machines with a variety of extra loads to disrupt scheduling, the
    	// worst overshoot observed was 50% past requestedHeapGoal.
    
    	metrics.Read(sample)
    	for _, s := range sample {
    		if s.Value.Kind() == metrics.KindBad {
    			// Just return, a slightly slower compilation is a tolerable outcome.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/runtime/mksizeclasses.go

    // pages into objects of the given size wastes at most 12.5% (1.125x)
    // of the memory. It is not necessary that the cutoff here be
    // the same as above.
    //
    // The two sources of waste multiply, so the worst possible case
    // for the above constraints would be that allocations of some
    // size might have a 26.6% (1.266x) overhead.
    // In practice, only one of the wastes comes into play for a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray.go

    	// a non-empty literal prefix is used to determine possible
    	// match start indices with Lookup
    	prefix, complete := r.LiteralPrefix()
    	lit := []byte(prefix)
    
    	// worst-case scenario: no literal prefix
    	if prefix == "" {
    		return r.FindAllIndex(x.data, n)
    	}
    
    	// if regexp is a literal just use Lookup and convert its
    	// result into match pairs
    	if complete {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. 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)
  8. src/cmd/vet/testdata/buildtag/buildtag5.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)
    
    package testdata
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 314 bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/nl/stopwords.txt

    nu
    ge
    geen
    omdat
    iets
    worden
    toch
    al
    waren
    veel
    meer
    doen
    toen
    moet
    ben
    zonder
    kan
    hun
    dus
    alles
    onder
    ja
    eens
    hier
    wie
    werd
    altijd
    doch
    wordt
    wezen
    kunnen
    ons
    zelf
    tegen
    na
    reeds
    wil
    kon
    niets
    uw
    iemand
    geweest
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 592 bytes
    - Viewed (0)
  10. test/fixedbugs/issue15747.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15747: liveness analysis was marking heap-escaped params live too much,
    // and worse was using the wrong bitmap bits to do so.
    
    package p
    
    var global *[]byte
    
    type Q struct{}
    
    type T struct{ M string }
    
    var b bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top