Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for correctness (0.57 sec)

  1. cmd/server_test.go

    	bucketName := getRandomBucketName()
    	// Block 1: Testing for racy access
    	// The assertion is removed from this block since the purpose of this block is to find races
    	// The purpose this block is not to check for correctness of functionality
    	// Run the test with -race flag to utilize this
    	var wg sync.WaitGroup
    	for i := 0; i < testConcurrencyLevel; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // For ops in the main graph, we omit the "@function_name" (which, would be
        // just "@" since function_name would be empty) because some code seems to
        // depend on the name being this way for correctness.
        std::string debug_info_key = (name + "@" + function_name).str();
        std::string name_for_name_loc =
            function_name.empty() ? name.str() : debug_info_key;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	warnFieldValidation   = "?fieldValidation=Warn"
    	ignoreFieldValidation = "?fieldValidation=Ignore"
    )
    
    // TestFieldValidation tests the create, update, and patch handlers for correctness when faced with field validation errors.
    func TestFieldValidation(t *testing.T) {
    	var (
    		strictDecodingErr          = `strict decoding error: duplicate field \"other\", unknown field \"unknown\"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Later passes (deadstore, elim unread auto) will remove the A -> B move, if possible.
    // This happens most commonly when B is an autotmp inserted earlier
    // during compilation to ensure correctness.
    // Take care that overlapping moves are preserved.
    // Restrict this optimization to the stack, to avoid duplicating loads from the heap;
    // see CL 145208 for discussion.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	// file.
    	wasSpinning := mp.spinning
    	if mp.spinning {
    		mp.spinning = false
    		if sched.nmspinning.Add(-1) < 0 {
    			throw("findrunnable: negative nmspinning")
    		}
    
    		// Note the for correctness, only the last M transitioning from
    		// spinning to non-spinning must perform these rechecks to
    		// ensure no missed work. However, the runtime has some cases
    		// of transient increments of nmspinning that are decremented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top