Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 232 for RESIZE (0.09 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-smuggle-resize.mlir

    // RUN: odml_to_stablehlo %s -skip-resize -smuggle-disallowed-ops -o - | FileCheck %s
    // RUN: odml-to-stablehlo-opt %s --smuggle-disallowed-ops-pass | FileCheck %s --check-prefix=CHECK-OPT
    
    // CHECK-LABEL: @main
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/tf-tfl-translate-serialize-stablehlo-resize-bilinear.mlir

    Zichuan Wei <******@****.***> 1677736843 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 06:04:37 UTC 2023
    - 455 bytes
    - Viewed (0)
  3. pkg/volume/util/resize_util.go

    	// Its value will be set by the external-resizer when it deems that filesystem resize is required after resizing volume.
    	// Its value will be used by pv_controller to determine pvc's status capacity when binding pvc and pv.
    	AnnPreResizeCapacity = "volume.alpha.kubernetes.io/pre-resize-capacity"
    )
    
    type resizeProcessStatus struct {
    	condition v1.PersistentVolumeClaimCondition
    	processed bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/expander-defaults.go

    	return newSize, nil
    }
    
    // the defaults for NodeExpand return a generic resize indicator that will trigger the operation executor to go ahead with
    // generic filesystem resize
    func (e *expanderDefaults) NodeExpand(rsOpt volume.NodeResizeOptions) (bool, error) {
    	klog.Warning(logPrefix(e.plugin), "using default filesystem resize for volume ", rsOpt.VolumeSpec.Name(), ", at ", rsOpt.DevicePath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/allocators.go

    			typ:      "[]*Value",
    			capacity: "cap(%s)",
    			mak:      "make([]*Value, %s)",
    			resize:   "%s[:%s]",
    			clear:    "for i := range %[1]s {\n%[1]s[i] = nil\n}",
    			minLog:   5,
    			maxLog:   32,
    		},
    		{
    			name:     "Int64Slice",
    			typ:      "[]int64",
    			capacity: "cap(%s)",
    			mak:      "make([]int64, %s)",
    			resize:   "%s[:%s]",
    			clear:    "for i := range %[1]s {\n%[1]s[i] = 0\n}",
    			minLog:   5,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/node_expander.go

    // testResponseData is merely used for doing sanity checks in unit tests
    type testResponseData struct {
    	// indicates that resize operation was called on underlying volume driver
    	// mainly useful for testing.
    	resizeCalledOnPlugin bool
    
    	// Indicates whether kubelet should assume resize operation as finished.
    	// For kubelet - resize operation could be assumed as finished even if
    	// actual resizing is *not* finished. This can happen, because certain prechecks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 19:30:35 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. plugin/pkg/admission/storage/persistentvolume/resize/admission_test.go

    			"the storageclass that provisions the pvc must support resize")
    	}
    	tests := []struct {
    		name        string
    		resource    schema.GroupVersionResource
    		subresource string
    		oldObj      runtime.Object
    		newObj      runtime.Object
    
    		checkError func(error) bool
    	}{
    		{
    			name:     "pvc-resize, update, no error",
    			resource: api.SchemeGroupVersion.WithResource("persistentvolumeclaims"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/main/webapp/js/suggestor.js

                  }
                );
    
                this.resize();
                suggestor = this;
                $(window).resize(function() {
                  suggestor.resize();
                });
    
                $("body").append($boxElement);
              },
    
              suggest: function() {
                suggestingSts = true;
    
                this.resize();
    
                var suggestor = this;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  9. pkg/volume/util/resize_util_test.go

    		expectedPVC *v1.PersistentVolumeClaim
    		testFunc    func(*v1.PersistentVolumeClaim, clientset.Interface, resource.Quantity) (*v1.PersistentVolumeClaim, error)
    	}{
    		{
    			name:        "mark fs resize, with no other conditions",
    			pvc:         basePVC.get(),
    			expectedPVC: basePVC.withStorageResourceStatus(v1.PersistentVolumeClaimNodeResizePending).get(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tfrt_fallback/batch_function_fallback_benchmark_test.cc

      auto exec_ctx = tfd::CreateFallbackTestExecutionContext(host, &resource_ctx);
    
      std::vector<tfrt::RCReference<tfrt::AsyncValue>> results;
      results.resize(func->result_types().size());
      std::vector<tfrt::RCReference<tfrt::AsyncValue>> result_tensors;
      result_tensors.resize(func->result_types().size() - 1);
    
      func->Execute(exec_ctx, arguments.values(), results);
      host->Await(results);
    
      for (auto& result : results) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 08 08:08:48 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top