Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for RESIZE (0.1 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				if len(vols) > 0 {
    					t.Errorf("No resize request for any volumes, but found resize required volumes in ASW: %v", vols)
    				}
    			},
    			volumeMode: v1.PersistentVolumeFilesystem,
    		},
    
    		{
    			// Make volume used as ReadOnly, so volume shouldn't be marked as fsResizeRequired
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	if restartCPULim || restartCPUReq || restartMemLim {
    		// resize policy requires this container to restart
    		changes.ContainersToKill[kubeContainerStatus.ID] = containerToKillInfo{
    			name:      kubeContainerStatus.Name,
    			container: &pod.Spec.Containers[containerIdx],
    			message:   fmt.Sprintf("Container %s resize requires restart", container.Name),
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    	return f.execFunc(containerID, cmd, stdin, stdout, stderr, tty, resize)
    }
    
    func (f *fakeRuntime) Attach(_ context.Context, containerID string, stdin io.Reader, stdout, stderr io.WriteCloser, tty bool, resize <-chan remotecommand.TerminalSize) error {
    	return f.attachFunc(containerID, stdin, stdout, stderr, tty, resize)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      int num_extra_results = num_new_results - num_old_results;
    
      SmallVector<Type, 4> new_result_types;
      SmallVector<Value, 4> new_while_operands;
      new_result_types.resize(num_extra_results);
      new_while_operands.resize(num_extra_results);
    
      for (auto& it : hoister.GetResources()) {
        if (!it.second.is_written) continue;
        int index = it.second.result_index - num_old_results;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/defaults_test.go

    			}
    		})
    	}
    }
    
    func TestSetDefaultResizePolicy(t *testing.T) {
    	// verify we default to NotRequired restart policy for resize when resources are specified
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.InPlacePodVerticalScaling, true)
    
    	for desc, tc := range map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/adminlte.min.js.map

    sName.COLLAPSED)) {\n        this.collapse()\n      } else {\n        this.expand()\n      }\n    }\n\n    autoCollapse(resize = false) {\n      if (this._options.autoCollapseSize) {\n        if ($(window).width() <= this._options.autoCollapseSize) {\n          if (!$(Selector.BODY).hasClass(ClassName.OPEN)) {\n            this.collapse()\n          }\n        } else if (resize == true) {\n          if ($(Selector.BODY).hasClass(ClassName.OPEN)) {\n            $(Selector.BODY).removeClass(ClassName.OPEN)\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    								},
    							},
    						},
    					},
    				}
    				return &pa
    			},
    		},
    	} {
    		pod, kps := makeBasePodAndStatus()
    		for idx := range pod.Spec.Containers {
    			// default resize policy when pod resize feature is enabled
    			pod.Spec.Containers[idx].ResizePolicy = []v1.ContainerResizePolicy{cpuPolicyRestartNotRequired, memPolicyRestartNotRequired}
    		}
    		if test.podResizePolicyFn != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

      // CHECK: [[VAL6:%.+]] = "tf.Reshape"([[VAL5]], [[VAL1]])
      // CHECK: return [[VAL6]]
      %resize = "tf.ResizeNearestNeighbor"(%arg0, %shape) {align_corners = false, device = "", half_pixel_centers = false} : (tensor<1x7x7x1xi32>, tensor<2xi32>) -> tensor<1x3x3x1xi32>
      func.return %resize: tensor<1x3x3x1xi32>
    }
    
    // CHECK-LABEL: func @imag_resize_nearest_dyn_img
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    static DenseIntElementsAttr GetI64ElementsAttrForSeq(int start, int end,
                                                         Builder *builder) {
      int size = end - start;
    
      SmallVector<int64_t, 4> vals;
      vals.resize(size);
      std::iota(vals.begin(), vals.end(), start);
    
      TensorType ty =
          tensorflow::GetTypeFromTFTensorShape({size}, builder->getIntegerType(64));
      return DenseIntElementsAttr::get(ty, vals);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.json

                "requestsKey": "0"
              },
              "claims": [
                {
                  "name": "nameValue"
                }
              ]
            }
          }
        ],
        "resize": "resizeValue",
        "resourceClaimStatuses": [
          {
            "name": "nameValue",
            "resourceClaimName": "resourceClaimNameValue"
          }
        ]
      }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top