Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,010 for negatives (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue4232.go

    // issue 7200
    
    package p
    
    func f() {
    	var a [10]int
    	_ = a[-1]  // ERROR "invalid array index -1|index out of bounds|must not be negative"
    	_ = a[-1:] // ERROR "invalid slice index -1|index out of bounds|must not be negative"
    	_ = a[:-1] // ERROR "invalid slice index -1|index out of bounds|must not be negative"
    	_ = a[10]  // ERROR "invalid array index 10|index .*out of bounds"
    	_ = a[9:10]
    	_ = a[10:10]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options_test.go

    				JSONPatchMaxCopyBytes:       10 * 1024 * 1024,
    				MaxRequestBodyBytes:         10 * 1024 * 1024,
    			},
    			expectErr: "--max-requests-inflight can not be negative value",
    		},
    		{
    			name: "Test when MaxMutatingRequestsInFlight is negative value",
    			testOptions: &ServerRunOptions{
    				AdvertiseAddress:            netutils.ParseIPSloppy("192.168.10.10"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  10. internal/bucket/lifecycle/rule_test.go

    		},
    		{ // Rule with negative values for ObjectSizeGreaterThan
    			inputXML: `<Rule>
    				<ID>negative-obj-size-greater-than</ID>
    				<Filter><ObjectSizeGreaterThan>-1</ObjectSizeGreaterThan></Filter>
    				<Expiration>
    					<Days>365</Days>
    				</Expiration>
                                <Status>Enabled</Status>
    	                    </Rule>`,
    			expectedErr: errXMLNotWellFormed,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:11:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top