Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,111 for negatives (0.15 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    	// in any of the imports. This guarantees there are no false positives
    	// because the example needs to use the object so it must be defined
    	// in the package or one if its imports. On the other hand, false
    	// negatives are possible, but should be rare.
    	for _, imp := range pkg.Imports() {
    		if obj := imp.Scope().Lookup(name); obj != nil {
    			ret = append(ret, obj)
    		}
    	}
    	return ret
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse_test.go

    	{`(?i)\W`, `cc{0x0-0x2f 0x3a-0x40 0x5b-0x5e 0x60 0x7b-0x17e 0x180-0x2129 0x212b-0x10ffff}`},
    	{`[^\\]`, `cc{0x0-0x5b 0x5d-0x10ffff}`},
    	//	{ `\C`, `byte{}` },  // probably never
    
    	// Unicode, negatives, and a double negative.
    	{`\p{Braille}`, `cc{0x2800-0x28ff}`},
    	{`\P{Braille}`, `cc{0x0-0x27ff 0x2900-0x10ffff}`},
    	{`\p{^Braille}`, `cc{0x0-0x27ff 0x2900-0x10ffff}`},
    	{`\P{^Braille}`, `cc{0x2800-0x28ff}`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

         * Returns `true` if adding [classToImport] import to the [file] might alter or break the
         * resolve of existing references in the file.
         *
         * N.B.: At the moment it might have both false positives and false negatives, since it does not
         * check all possible references.
         */
        private fun importBreaksExistingReferences(classToImport: ClassId, importAllInParent: Boolean): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/out.go

    // we will be hiding races. But when using TSAN on mixed Go C/C++ code
    // it is more important to avoid false positives, which reduce confidence
    // in the tool, than to avoid false negatives.
    const yesTsanProlog = `
    #line 1 "cgo-tsan-prolog"
    #define CGO_NO_SANITIZE_THREAD __attribute__ ((no_sanitize_thread))
    
    long long _cgo_sync __attribute__ ((common));
    
    extern void __tsan_acquire(void*);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	// Parallel, but in general we don't know whether the parent goroutine is the
    	// top-level test function or some other goroutine it has spawned.
    	// To avoid confusing false-negatives, we leave the parent in the running map
    	// even though in the typical case it is blocked.
    
    	if !<-t.signal {
    		// At this point, it is likely that FailNow was called on one of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. CHANGELOG/CHANGELOG-1.7.md

    
      * Bug fixes
    
        * Fix some false negatives in detection of meaningful conflicts during strategic merge patch with maps and lists. ([#43469](https://github.com/kubernetes/kubernetes/pull/43469), [@enisoc](https://github.com/enisoc))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K 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