Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for batch_func (0.11 sec)

  1. pilot/pkg/config/file/store.go

    }
    
    func (s *KubeSource) UpdateStatus(config config.Config) (newRevision string, err error) {
    	return s.inner.UpdateStatus(config)
    }
    
    func (s *KubeSource) Patch(orig config.Config, patchFn config.PatchFunc) (string, error) {
    	return s.inner.Patch(orig, patchFn)
    }
    
    func (s *KubeSource) Delete(typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/config/schema/kubeclient/resources.gen.go

    				ListFunc: func(options metav1.ListOptions) (runtime.Object, error) {
    					options.FieldSelector = opts.FieldSelector
    					options.LabelSelector = opts.LabelSelector
    					return l(options)
    				},
    				WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) {
    					options.FieldSelector = opts.FieldSelector
    					options.LabelSelector = opts.LabelSelector
    					return w(options)
    				},
    			},
    			gvrToObject(g),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

        auto branch_func = symbol_table.lookupNearestSymbolFrom<func::FuncOp>(
            op, mlir::cast<SymbolRefAttr>(branch.value()));
        if (!branch_func)
          return op->emitOpError()
                 << "expects " << branch_name(branch.index()) << " ("
                 << branch.value() << ") to point to a defined function";
    
        FunctionType branch_type = branch_func.getFunctionType();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
Back to top