Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for negatives (0.22 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinAnnotationsResolver.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * A service to match declarations with their annotations and vice versa.
     *
     * N.B. This service can produce both false positives and false negatives from time to time, since it might not be allowed to use
     * full-blown resolve to understand the true FqName of used annotation.
     *
     * The next statement should be `true` for any `annotation`:
     * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentUtils.java

         * If the returned value is {@code true} then the argument is definitely a java agent application.
         * However, only the name of the agent jar is checked, so it is possible to have false positives and false negatives.
         *
         * @param jvmArg the argument to check
         * @return {@code true} if the argument looks like a switch, {@code false} otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/vet/README

    adding to the suite everyone runs daily.
    
    Precision:
    
    Most of vet's checks are heuristic and can generate both false positives (flagging
    correct programs) and false negatives (not flagging incorrect ones). The rate of
    both these failures must be very small. A check that is too noisy will be ignored
    by the programmer overwhelmed by the output; a check that misses too many of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 04:15:59 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  4. test/chan/select3.go

    		if signal == never {
    			// Wait a long time to make sure that we don't miss our window by accident on a slow machine.
    			time.Sleep(10 * time.Second)
    		} else {
    			// Wait as short a time as we can without false negatives.
    			// 10ms should be long enough to catch most failures.
    			time.Sleep(10 * time.Millisecond)
    		}
    		c <- always // f blocked always
    	}()
    	if <-c != signal {
    		panic(signal + " block")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 08 02:10:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  5. src/runtime/race/race_test.go

    	// 1. Some tests rely on particular execution order.
    	//    If the order is different, race does not happen at all.
    	// 2. Ironically, ThreadSanitizer runtime contains a logical race condition
    	//    that can lead to false negatives if racy accesses happen literally at the same time.
    	// Tests used to work reliably in the good old days of GOMAXPROCS=1.
    	// So let's set it for now. A more reliable solution is to explicitly annotate tests
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/types.go

    		// considering it, we must avoid infinite recursion.
    		//
    		// There are some pathological cases where returning true here is
    		// incorrect, for example `type R struct { F []R }`, but these are
    		// acceptable false negatives.
    		return true
    	}
    	m.seen[typ] = true
    
    	switch typ := typ.(type) {
    	case *types.Signature:
    		return m.t == argPointer
    
    	case *types.Map:
    		if m.t == argPointer {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. releasenotes/notes/endpoints-false-negative.yaml

    dwq <******@****.***> 1702923949 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 18:25:49 UTC 2023
    - 176 bytes
    - Viewed (0)
  8. src/net/testdata/negative-ndots-resolv.conf

    Dan Peterson <******@****.***> 1468427735 -0600
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 15:20:24 UTC 2016
    - 16 bytes
    - Viewed (0)
  9. src/os/user/lookup_unix_test.go

    struid2:x:30:badgid:struid2name:/home/struid:/usr/sbin/nologin
    `
    
    var userIdTests = []struct {
    	in   string
    	uid  string
    	name string
    }{
    	{testUserFile, "-5", "negative"},
    	{testUserFile, "2", "bin"},
    	{testUserFile, "100", ""}, // not in the file
    	{testUserFile, "8", ""},   // plus sign, glibc doesn't find it
    	{testUserFile, "9", ""},   // minus sign, glibc doesn't find it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  10. test/fixedbugs/issue13365.go

    func main() {
    	_ = []int{-1: 0}    // ERROR "index must be non\-negative integer constant|index expression is negative|must not be negative"
    	_ = [10]int{-1: 0}  // ERROR "index must be non\-negative integer constant|index expression is negative|must not be negative"
    	_ = [...]int{-1: 0} // ERROR "index must be non\-negative integer constant|index expression is negative|must not be negative"
    
    	_ = []int{100: 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 17:21:15 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top