Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for reportProgress (0.18 sec)

  1. operator/pkg/util/progress/progress_test.go

    	cnbo := name.UserFacingComponentName(cnb)
    	foo := p.NewComponent(string(cnp))
    	foo.ReportProgress()
    	expect(`- Processing resources for ` + cnpo + `.`)
    
    	bar := p.NewComponent(string(cnb))
    	bar.ReportProgress()
    	// string buffer won't rewrite, so we append
    	expect(`- Processing resources for ` + cnbo + `, ` + cnpo + `.`)
    	bar.ReportProgress()
    	bar.ReportProgress()
    
    	bar.ReportWaiting([]string{"deployment"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. operator/pkg/util/progress/progress.go

    	}
    	bar.Start()
    	// if we aren't a terminal, we will return a new line for each new message
    	if !bar.GetBool(pb.Terminal) {
    		bar.Set(pb.ReturnSymbol, "\n")
    	}
    	return bar
    }
    
    // reportProgress will report an update for a given component
    // Because the bar library does not support multiple lines/bars at once, we need to aggregate current
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. cmd/admin-heal-ops.go

    // server.
    type healSequence struct {
    	// bucket, and object on which heal seq. was initiated
    	bucket, object string
    
    	// Report healing progress
    	reportProgress bool
    
    	// time at which heal sequence was started
    	startTime time.Time
    
    	// time at which heal sequence has ended
    	endTime time.Time
    
    	// Heal client info
    	clientToken, clientAddress string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 18:04:41 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. operator/pkg/helmreconciler/apply.go

    				return result, err
    			}
    			if err := h.ApplyObject(obj.UnstructuredObject()); err != nil {
    				plog.ReportError(err.Error())
    				return result, err
    			}
    			plog.ReportProgress()
    			metrics.AddResource(obj.FullName(), obj.GroupVersionKind().GroupKind())
    			result.processedObjects = append(result.processedObjects, obj)
    			// Update the cache with the latest object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. cmd/global-heal.go

    		settings: hs,
    		currentStatus: healSequenceStatus{
    			Summary:      healNotStartedStatus,
    			HealSettings: hs,
    		},
    		cancelCtx:          cancelCtx,
    		ctx:                ctx,
    		reportProgress:     false,
    		scannedItemsMap:    make(map[madmin.HealItemType]int64),
    		healedItemsMap:     make(map[madmin.HealItemType]int64),
    		healFailedItemsMap: make(map[madmin.HealItemType]int64),
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top