Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for checkMin (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      auto shape_ic =
          [&](shape_inference::InferenceContext* c) -> absl::StatusOr<mlir::Type> {
        // TODO(b/200093974): Post triage, consider following
        // GraphConstructor::ValidateShape in checking _output_shapes always.
        if (specs_.unconditionally_use_set_output_shapes) {
          if (const AttrValue* attr = node.attrs().Find(kOutputShapesAttrName)) {
            auto& list = attr->list();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    	if len(remainingVirtualServers) != 4 {
    		t.Errorf("Expected number of remaining IPVS services after cleanup to be %v. Got %v", 4, len(remainingVirtualServers))
    	}
    	for _, vs := range remainingVirtualServers {
    		// Checking that ipvs4 and ipvs5 were removed.
    		if vs.Port == 57 {
    			t.Errorf("Expected ipvs4 to be removed after cleanup. It still remains")
    		}
    		if vs.Port == 58 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    			// once on the last pass before checking runnext because stealing
    			// from the other P's runnext should be the last resort, so if there
    			// are timers to steal do that first.
    			//
    			// We only check timers on one of the stealing iterations because
    			// the time stored in now doesn't change in this loop and checking
    			// the timers for each P more than once with the same value of now
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    	fe.expSatisfied()
    	return fe.satisfied
    }
    
    // TestSyncJobExpectations tests that a pod cannot sneak in between counting active pods
    // and checking expectations.
    func TestSyncJobExpectations(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		go func() {
    			defer wg.Done()
    			defer func() { <-gate }()
    			res, err := c.Get(ts.URL)
    			if err != nil {
    				// We see ECONNRESET from the connection occasionally,
    				// and that's OK: this test is checking that the server does not panic.
    				t.Log(err)
    				return
    			}
    			defer res.Body.Close()
    			io.Copy(io.Discard, res.Body)
    		}()
    	}
    	wg.Wait()
    }
    
    // Issue 9162
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      invocationBounds.emplace_back(InvocationBounds::getUnknown());
    }
    
    bool WhileRegionOp::areTypesCompatible(Type t1, Type t2) {
      // For now, we don't enforce type checking across control-flow edges.
      return true;
    }
    
    //===----------------------------------------------------------------------===//
    // WhileRegionOp canonicalization
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Translator class.
    // TODO(hinsu): Now that translation is done by making a single pass over the
    // MLIR module, consider inlining these validation checks at the place where
    // these invariants are assumed instead of checking upfront.
    static bool IsValidTFLiteMlirModule(ModuleOp module) {
      MLIRContext* context = module.getContext();
    
      // Verify that module has a function named main.
      FuncOp main_fn = module.lookupSymbol<FuncOp>("main");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	fmt.Fprintf(h, "vet %q\n", b.toolID("vet"))
    
    	vetFlags := VetFlags
    
    	// In GOROOT, we enable all the vet tests during 'go test',
    	// not just the high-confidence subset. This gets us extra
    	// checking for the standard library (at some compliance cost)
    	// and helps us gain experience about how well the checks
    	// work, to help decide which should be turned on by default.
    	// The command-line still wins.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data.go

    			continue
    		}
    
    		st := state.symType(s)
    
    		if st <= sym.STEXT || st >= sym.SXREF {
    			continue
    		}
    		state.data[st] = append(state.data[st], s)
    
    		// Similarly with checking the onlist attr.
    		if ldr.AttrOnList(s) {
    			log.Fatalf("symbol %s listed multiple times", ldr.SymName(s))
    		}
    		ldr.SetAttrOnList(s, true)
    	}
    
    	// Now that we have the data symbols, but before we start
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  10. src/net/http/server.go

    	srv.mu.Lock()
    
    	for c := range srv.activeConn {
    		c.rwc.Close()
    		delete(srv.activeConn, c)
    	}
    	return err
    }
    
    // shutdownPollIntervalMax is the max polling interval when checking
    // quiescence during Server.Shutdown. Polling starts with a small
    // interval and backs off to the max.
    // Ideally we could find a solution that doesn't involve polling,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top