Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for vfunc (0.22 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          return %cluster : tensor<i32>
        }
        ```
    
        will be transformed into:
    
        ```mlir
        func @computation(%arg0: tensor<i32>) -> tensor<i32> {
          %cluster = "tf_device.cluster_func"(%arg0) {func = @_func} : (tensor<i32>) -> tensor<i32>
          return %cluster : tensor<i32>
        }
    
        func @_func(%arg0: tensor<i32>) -> tensor<i32> {
          %identity = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    	},
    	{struct {
    		x struct {
    			f func(args ...int)
    		}
    	}{},
    		"struct { f func(...int) }",
    	},
    	{struct {
    		x (interface {
    			a(func(func(int) int) func(func(int)) int)
    			b()
    		})
    	}{},
    		"interface { reflect_test.a(func(func(int) int) func(func(int)) int); reflect_test.b() }",
    	},
    	{struct {
    		x struct {
    			int32
    			int64
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. pkg/apis/core/zz_generated.deepcopy.go

    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopy() *AWSElasticBlockStoreVolumeSource {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *AWSElasticBlockStoreVolumeSource) DeepCopyInto(out *AWSElasticBlockStoreVolumeSource) {
    	*out = *in
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AWSElasticBlockStoreVolumeSource.
    func (in *AWSElasticBlockStoreVolumeSource) DeepCopy() *AWSElasticBlockStoreVolumeSource {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    }
    
    var atomicRowsCloseHook atomic.Value // of func(*Rows, *error)
    
    func init() {
    	rowsCloseHook = func() func(*Rows, *error) {
    		fn, _ := atomicRowsCloseHook.Load().(func(*Rows, *error))
    		return fn
    	}
    }
    
    func setRowsCloseHook(fn func(*Rows, *error)) {
    	if fn == nil {
    		// Can't change an atomic.Value back to nil, so set it to this
    		// no-op func instead.
    		fn = func(*Rows, *error) {}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    var _ error = Validation{}
    
    // WrapError turns an error into a Validation
    func WrapError(e error) Validation {
    	return Validation{Err: e}
    }
    
    // ValidateFunc defines a validation func for an API proto.
    type ValidateFunc func(config config.Config) (Warning, error)
    
    // IsValidateFunc indicates whether there is a validation function with the given name.
    func IsValidateFunc(name string) bool {
    	return GetValidateFunc(name) != nil
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    							Name: ""}}}}}},
    		},
    	}
    	VisitPodConfigmapNames(emptyPod, func(name string) bool {
    		t.Fatalf("expected no empty names collected, got %q", name)
    		return false
    	}, AllContainers)
    }
    
    func TestDropFSGroupFields(t *testing.T) {
    	nofsGroupPod := func() *api.Pod {
    		return &api.Pod{
    			Spec: api.PodSpec{
    				Containers: []api.Container{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	allowCreateOnUpdate      bool
    	allowUnconditionalUpdate bool
    }
    
    func (t *testRESTStrategy) NamespaceScoped() bool          { return t.namespaceScoped }
    func (t *testRESTStrategy) AllowCreateOnUpdate() bool      { return t.allowCreateOnUpdate }
    func (t *testRESTStrategy) AllowUnconditionalUpdate() bool { return t.allowUnconditionalUpdate }
    
    func (t *testRESTStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      symbol_table_.getSymbolTable(module);
    }
    
    ArrayRef<Operation*> ShapeInference::GetCallers(func::FuncOp fn) {
      return symbol_users_.getUsers(fn);
    }
    
    void ShapeInference::EnqueueCallers(func::FuncOp fn) {
      for (auto user : GetCallers(fn)) {
        auto func = user->getParentOfType<func::FuncOp>();
        if (func) enqueue(func);
      }
    }
    
    bool ShapeInference::UpdateTypeAndInsertIncompatibleUseCasts(Type new_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	kubelet.rootDirectory = t.TempDir()
    	kubelet.podLogsDirectory = t.TempDir()
    	kubelet.sourcesReady = config.NewSourcesReady(func(_ sets.Set[string]) bool { return true })
    	kubelet.serviceLister = testServiceLister{}
    	kubelet.serviceHasSynced = func() bool { return true }
    	kubelet.nodeHasSynced = func() bool { return true }
    	kubelet.nodeLister = testNodeLister{
    		nodes: []*v1.Node{
    			{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top