Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,884 for incorrectly (0.25 sec)

  1. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				t.Errorf("case %d: incorrectly restricted %s", i, attr)
    			}
    		}
    
    		for _, attr := range tt.shouldFail {
    			if decision, _, _ := a.Authorize(context.Background(), attr); decision == authorizer.DecisionAllow {
    				t.Errorf("case %d: incorrectly passed %s", i, attr)
    			}
    		}
    	}
    }
    
    func TestRuleMatches(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       *
       * This can be invoked more than 1 time for a single [Call]. For example, if the response to the
       * [Call.request] is a redirect to a different address.
       *
       * Prior to OkHttp 4.3 this was incorrectly invoked when the client was ready to read headers.
       * This was misleading for tracing because it was too early.
       */
      open fun responseHeadersStart(call: Call) {
      }
    
      /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java

       *
       * <p>This bug is this: if you create an iterator from a TreeSet and call next() on that iterator
       * when hasNext() is false, so that next() throws a NoSuchElementException, then subsequent calls
       * to remove() will incorrectly throw an IllegalStateException, instead of removing the last
       * element returned.
       *
       * <p>See <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6529795">Sun bug 6529795</a>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/go/build/build_test.go

    	p, err := ImportDir("testdata/doc", 0)
    	if err != nil {
    		t.Fatalf("could not import testdata: %v", err)
    	}
    
    	if p.Doc != "Correct" {
    		t.Fatalf("incorrectly set .Doc to %q", p.Doc)
    	}
    }
    
    // TestIssue56509 tests that go/build does not add non-go files to InvalidGoFiles
    // when they have unparsable comments.
    func TestIssue56509(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  5. src/time/format_test.go

    				case len(s) > 12 && s[12] == ':':
    					t.Skipf("ParseAny(%q) incorrectly allows single-digit hour fields", s)
    				case len(s) > 19 && s[19] == ',':
    					t.Skipf("ParseAny(%q) incorrectly allows comma as sub-second separator", s)
    				case !strings.HasSuffix(s, "Z") && len(s) > 4 && (num2(s[len(s)-5:]) >= 24 || num2(s[len(s)-2:]) >= 60):
    					t.Skipf("ParseAny(%q) incorrectly allows out-of-range zone offset", s)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  6. src/net/http/sniff.go

    	// Archive types
    	&exactSig{[]byte("\x1F\x8B\x08"), "application/x-gzip"},
    	&exactSig{[]byte("PK\x03\x04"), "application/zip"},
    	// RAR's signatures are incorrectly defined by the MIME spec as per
    	//    https://github.com/whatwg/mimesniff/issues/63
    	// However, RAR Labs correctly defines it at:
    	//    https://www.rarlab.com/technote.htm#rarsign
    	// so we use the definition from RAR Labs.
    	// TODO: do whatever the spec ends up doing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  7. test/live.go

    // similarly, select{} does not fall through.
    // this used to have a spurious "live at entry to f12: ~r0".
    
    func f12() *int {
    	if b {
    		select {}
    	} else {
    		return nil
    	}
    }
    
    // incorrectly placed VARDEF annotations can cause missing liveness annotations.
    // this used to be missing the fact that s is live during the call to g13 (because it is
    // needed for the call to h13).
    
    func f13() {
    	s := g14()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/sync/rwmutex.go

    // events in order to provide the more precise model above to the race
    // detector.
    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    // acquire-release semantics, which would incorrectly synchronize racing
    // readers, thus potentially missing races.
    
    // RLock locks rw for reading.
    //
    // It should not be used for recursive read locking; a blocked Lock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. ci/official/README.md

    #   re-running tests. However, note that:
    #
    #    - New environments like new CUDA versions, changes to manylinux,
    #      compilers, etc. can cause undefined behavior such as build failures
    #      or tests passing incorrectly.
    #    - Automatic LLVM updates are known to extend build time even with
    #      the cache; this is unavoidable.
    export TFCI=py311,linux_x86,public_cache,disk_cache
    
    # Recommended: Configure Docker. (Linux only)
    #
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    		if line != "" {
    			// Found non-comment non-blank line.
    			// Ends space for valid //go:build comments,
    			// but also ends the fraction of the file we can
    			// reliably parse. From this point on we might
    			// incorrectly flag "comments" inside multiline
    			// string constants or anything else (this might
    			// not even be a Go program). So stop.
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top