Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 236 for respSize (0.19 sec)

  1. src/os/removeall_at.go

    		return &PathError{Op: "unlinkat", Path: base, Err: err}
    	}
    	uErr := err
    
    	// Remove the directory's entries.
    	var recurseErr error
    	for {
    		const reqSize = 1024
    		var respSize int
    
    		// Open the directory to recurse into
    		file, err := openDirAt(parentFd, base)
    		if err != nil {
    			if IsNotExist(err) {
    				return nil
    			}
    			if err == syscall.ENOTDIR || err == unix.NoFollowErrno {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    func MonitorRequest(req *http.Request, verb, group, version, resource, subresource, scope, component string, deprecated bool, removedRelease string, httpCode, respSize int, elapsed time.Duration) {
    	requestInfo, ok := request.RequestInfoFrom(req.Context())
    	if !ok || requestInfo == nil {
    		requestInfo = &request.RequestInfo{Verb: req.Method, Path: req.URL.Path}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top