Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for FormatValue (0.35 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.yaml

        uid: uidValue
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
      uid: uidValue
    spec:
      additionalPrinterColumns:
      - JSONPath: JSONPathValue
        description: descriptionValue
        format: formatValue
        name: nameValue
        priority: 5
        type: typeValue
      conversion:
        conversionReviewVersions:
        - conversionReviewVersionsValue
        strategy: strategyValue
        webhookClientConfig:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

          "openAPIV3Schema": {
            "id": "idValue",
            "$schema": "$schemaValue",
            "$ref": "$refValue",
            "description": "descriptionValue",
            "type": "typeValue",
            "format": "formatValue",
            "title": "titleValue",
            "default": "defaultValue",
            "maximum": 9.5,
            "exclusiveMaximum": true,
            "minimum": 11.5,
            "exclusiveMinimum": true,
            "maxLength": 13,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Amount.java

                    BigDecimal scaled = units.scaleTo(value, candidate);
                    return formatValue(scaled) + " " + candidate.format(scaled);
                }
            }
            return formatValue(value) + " " + units.format(value);
        }
    
        private static String formatValue(BigDecimal value) {
            synchronized (DECIMAL_FORMAT) {
                return DECIMAL_FORMAT.format(value);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

        shortNames:
        - shortNamesValue
        singular: singularValue
      preserveUnknownFields: true
      scope: scopeValue
      versions:
      - additionalPrinterColumns:
        - description: descriptionValue
          format: formatValue
          jsonPath: jsonPathValue
          name: nameValue
          priority: 5
          type: typeValue
        deprecated: true
        deprecationWarning: deprecationWarningValue
        name: nameValue
        schema:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "id": "idValue",
                "$schema": "$schemaValue",
                "$ref": "$refValue",
                "description": "descriptionValue",
                "type": "typeValue",
                "format": "formatValue",
                "title": "titleValue",
                "default": "defaultValue",
                "maximum": 9.5,
                "exclusiveMaximum": true,
                "minimum": 11.5,
                "exclusiveMinimum": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	}
    
    	label = append(label, fmt.Sprintf("Showing nodes accounting for %s, %s of %s total", rpt.formatValue(flatSum), strings.TrimSpace(measurement.Percentage(flatSum, rpt.total)), rpt.formatValue(rpt.total)))
    
    	if rpt.total != 0 {
    		if droppedNodes > 0 {
    			label = append(label, genLabel(droppedNodes, "node", "cum",
    				rpt.formatValue(abs64(int64(float64(rpt.total)*nodeFraction)))))
    		}
    		if droppedEdges > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    type DotConfig struct {
    	Title     string   // The title of the DOT graph
    	LegendURL string   // The URL to link to from the legend.
    	Labels    []string // The labels for the DOT's legend
    
    	FormatValue func(int64) string // A formatting function for values
    	Total       int64              // The total weight of the graph, used to compute percentages
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    			fnodes, _, err := getSourceFromFile(filename, reader, fns, 0, 0)
    			fmt.Fprintf(w, "ROUTINE ======================== %s in %s\n", name, filename)
    			fmt.Fprintf(w, "%10s %10s (flat, cum) %s of Total\n",
    				rpt.formatValue(flatSum), rpt.formatValue(cumSum),
    				measurement.Percentage(cumSum, rpt.total))
    
    			if err != nil {
    				fmt.Fprintf(w, " Error: %v\n", err)
    				continue
    			}
    
    			for _, fn := range fnodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top