Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for GetLabel (0.13 sec)

  1. tensorflow/c/eager/c_api_test.cc

      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TF_DeleteStatus(status);
    }
    BENCHMARK(BM_InitOp);
    
    void BM_Execute(::testing::benchmark::State& state) {
      const int async = state.range(0);
      state.SetLabel(async ? "ExecuteAsync" : "Execute");
      TF_Status* status = TF_NewStatus();
      TFE_ContextOptions* opts = TFE_NewContextOptions();
      TFE_ContextOptionsSetAsync(opts, static_cast<unsigned char>(async));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/reconciler.go

    	labels, err := h.getOwnerLabels(componentName)
    	if err != nil {
    		return err
    	}
    
    	for k, v := range labels {
    		err := util.SetLabel(obj, k, v)
    		if err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    // getCRName returns the name of the CR associated with h.
    func (h *HelmReconciler) getCRName() (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		})
    	}
    
    	p, pbase, m, mbase, save, err := grabSourcesAndBases(sources, bases, o.Fetch, o.Obj, o.UI, o.HTTPTransport)
    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    		if s.DiffBase {
    			pbase.SetLabel("pprof::base", []string{"true"})
    		}
    		if s.Normalize {
    			err := p.Normalize(pbase)
    			if err != nil {
    				return nil, err
    			}
    		}
    		pbase.Scale(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top