Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for Percentage (0.16 sec)

  1. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    message RollingUpdateDeployment {
      // The maximum number of pods that can be unavailable during the update.
      // Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
      // Absolute number is calculated from percentage by rounding down.
      // This can not be 0 if MaxSurge is 0.
      // Defaults to 25%.
      // Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		if inl != "" {
    			inl = " " + inl
    		}
    		flatSum += item.Flat
    		fmt.Fprintf(w, "%10s %s %s %10s %s  %s%s\n",
    			item.FlatFormat, measurement.Percentage(item.Flat, rpt.total),
    			measurement.Percentage(flatSum, rpt.total),
    			item.CumFormat, measurement.Percentage(item.Cum, rpt.total),
    			item.Name, inl)
    	}
    	return nil
    }
    
    // printTraces prints all traces from a profile.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/types.go

    	// TODO: We might wanna make this a substruct like Debugging componentbaseconfig.DebuggingConfiguration
    	componentbaseconfig.DebuggingConfiguration
    
    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    	// for running a pod, the scheduler stops its search for more feasible nodes in
    	// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    package noderesources
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    // Details:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/testing/newcover.go

    		panic("unexpected")
    	}
    	if errmsg, err := cover2.tearDown(*coverProfile, *gocoverdir); err != nil {
    		fmt.Fprintf(os.Stderr, "%s: %v\n", errmsg, err)
    		os.Exit(2)
    	}
    }
    
    // coverage2 returns a rough "coverage percentage so far"
    // number to support the testing.Coverage() function.
    func coverage2() float64 {
    	if cover2.mode == "" {
    		return 0.0
    	}
    	return cover2.snapshotcov()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2beta1/types.go

    	// the requested value of the resource for the pods.
    	// +optional
    	TargetAverageUtilization *int32 `json:"targetAverageUtilization,omitempty" protobuf:"varint,2,opt,name=targetAverageUtilization"`
    	// targetAverageValue is the target value of the average of the
    	// resource metric across all relevant pods, as a raw value (instead of as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 26.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1/generated.proto

    message RollingUpdateDaemonSet {
      // The maximum number of DaemonSet pods that can be unavailable during the
      // update. Value can be an absolute number (ex: 5) or a percentage of total
      // number of DaemonSet pods at the start of the update (ex: 10%). Absolute
      // number is calculated from percentage by rounding up.
      // This cannot be 0 if MaxSurge is 0
      // Default value is 1.
      // Example: when this is set to 30%, at most 30% of the total number of nodes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  8. pkg/apis/apps/types.go

    	Partition int32
    	// The maximum number of pods that can be unavailable during the update.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    	// Absolute number is calculated from percentage by rounding up. This can not be 0.
    	// Defaults to 1. This field is alpha-level and is only honored by servers that enable the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:09:29 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/generated.proto

    message RollingUpdateDaemonSet {
      // The maximum number of DaemonSet pods that can be unavailable during the
      // update. Value can be an absolute number (ex: 5) or a percentage of total
      // number of DaemonSet pods at the start of the update (ex: 10%). Absolute
      // number is calculated from percentage by rounding up.
      // This cannot be 0 if MaxSurge is 0
      // Default value is 1.
      // Example: when this is set to 30%, at most 30% of the total number of nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    	sv := strings.TrimSuffix(fmt.Sprintf("%.2f", v), ".00")
    	if sv == "0" || sv == "-0" {
    		return "0"
    	}
    	return sv + u
    }
    
    // Percentage computes the percentage of total of a value, and encodes
    // it as a string. At least two digits of precision are printed.
    func Percentage(value, total int64) string {
    	var ratio float64
    	if total != 0 {
    		ratio = math.Abs(float64(value)/float64(total)) * 100
    	}
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top