Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 658 for incorrectly (0.13 sec)

  1. src/runtime/mfinal_test.go

    		{func(x *int) any { return (*Tint)(x) }, func(v Tinter) { finalize((*int)(v.(*Tint))) }},
    		// Test case for argument spill slot.
    		// If the spill slot was not counted for the frame size, it will (incorrectly) choose
    		// call32 as the result has (exactly) 32 bytes. When the argument actually spills,
    		// it clobbers the caller's frame (likely the return PC).
    		{func(x *int) any { return x }, func(v any) [4]int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. pkg/apis/rbac/helpers_test.go

    // used to create the bootstrap RBAC policy which is used during reconciliation.  If they produced objects
    // that did not match, reconciliation would incorrectly add duplicate data to the cluster's RBAC policy.
    func TestHelpersRoundTrip(t *testing.T) {
    	rb := rbac.NewRoleBinding("role", "ns").Groups("g").SAs("ns", "sa").Users("u").BindingOrDie()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/go/ast/walk_test.go

    package ast_test
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"testing"
    )
    
    func TestPreorderBreak(t *testing.T) {
    	// This test checks that Preorder correctly handles a break statement while
    	// in the middle of walking a node. Previously, incorrect handling of the
    	// boolean returned by the yield function resulted in the iterator calling
    	// yield for sibling nodes even after yield had returned false. With that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 916 bytes
    - Viewed (0)
  8. pkg/util/oom/oom_linux_test.go

    		} else if numCalls > len(pidListSequence) {
    			return pidListSequence[len(pidListSequence)-1], nil
    		}
    		return pidListSequence[numCalls-1], nil
    	}
    }
    
    // Tests that applyOOMScoreAdjContainer correctly applies OOM scores to relevant processes, or
    // returns the right error.
    func applyOOMScoreAdjContainerTester(pidListSequence [][]int, maxTries int, appliedPids []int, expectedError bool, t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  9. cmd/bootstrap-peer-server.go

    					if !isNetworkError(err) {
    						bootLogOnceIf(context.Background(), fmt.Errorf("%s has incorrect configuration: %w", clnt, err), "incorrect_"+clnt.String())
    						incorrectConfigs = append(incorrectConfigs, fmt.Errorf("%s has incorrect configuration: %w", clnt, err))
    					} else {
    						offlineEndpoints = append(offlineEndpoints, fmt.Errorf("%s is unreachable: %w", clnt, err))
    					}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/testdata/incorrect-port-name-external-name-service-type.yaml

    eliavem <******@****.***> 1639010764 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 09 00:46:04 UTC 2021
    - 641 bytes
    - Viewed (0)
Back to top