Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for Percentage (0.15 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

            Preconditions.checkArgument(minFreeMemoryPercentage >= 0, "Free memory percentage must be >= 0");
            Preconditions.checkArgument(minFreeMemoryPercentage <= 1, "Free memory percentage must be <= 1");
            this.minFreeMemoryPercentage = minFreeMemoryPercentage;
            this.osMemoryInfo = osMemoryInfo;
            this.jvmMemoryInfo = jvmMemoryInfo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_test_pkgselect.txt

    [short] skip
    
    # Hard-wire new coverage for this test.
    env GOEXPERIMENT=coverageredesign
    
    # Baseline run.
    go test -cover example/foo
    stdout 'coverage: 50.0% of statements$'
    
    # Coverage percentage output should mention -coverpkg selection.
    go test -coverpkg=example/foo example/foo
    stdout 'coverage: 50.0% of statements in example/foo'
    
    # Try to ask for coverage of a package that doesn't exist.
    go test -coverpkg nonexistent example/bar
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/hooks.go

    // emitCounterData as exit hooks. In the normal case (e.g. regular "go
    // test -cover" run) the testmain.go boilerplate will run at the end
    // of the test, write out the coverage percentage, and then invoke
    // MarkProfileEmitted to indicate that no more work needs to be
    // done. If however that call is never made, this is a sign that the
    // test binary is being used as a replacement binary for the tool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 02:32:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top