Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for gretty (0.19 sec)

  1. pkg/scheduler/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: SchedulerSubsystem,
    			Name:      "preemption_victims",
    			Help:      "Number of selected preemption victims",
    			// we think #victims>64 is pretty rare, therefore [64, +Inf) is considered a single bucket.
    			Buckets:        metrics.ExponentialBuckets(1, 2, 7),
    			StabilityLevel: metrics.STABLE,
    		})
    	PreemptionAttempts = metrics.NewCounter(
    		&metrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. hack/make-rules/test-e2e-node.sh

        echo 'Running on AWS, not asking for sudo credentials'
      elif sudo --non-interactive "$(which bash)" -c true 2> /dev/null; then
        # if we can run bash without a password, it's a pretty safe bet that either
        # we can run any command without a password, or that sudo credentials
        # are already cached - and they've just been re-cached
        echo 'No need to refresh sudo credentials'
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder.go

    	}
    	route := b.ws.Method(httpMethod).
    		Path(root+path).
    		To(func(req *restful.Request, res *restful.Response) {}).
    		Doc(b.descriptionFor(path, operationVerb)).
    		Param(b.ws.QueryParameter("pretty", "If 'true', then the output is pretty printed. Defaults to 'false' unless the user-agent indicates a browser or command-line HTTP tool (curl and wget).")).
    		Operation(operationVerb+namespaced+b.kind+strings.Title(subresource(path))).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. security/pkg/k8s/chiron/utils_test.go

    				if csr.Status.Certificate != nil {
    					log.Debugf("test signer skip, already signed: %v", csr.Name)
    					continue
    				}
    				if approved(csr) {
    					// This is a pretty terrible hack, but client-go fake doesn't properly support list+watch,
    					// so any updates in between the list and watch would be missed. So give some time for the watch to start
    					time.Sleep(time.Millisecond * 25)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/bugreport/bugreport.go

    // limitations under the License.
    
    package bugreport
    
    import (
    	"context"
    	"fmt"
    	"os"
    	"path"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/kr/pretty"
    	"github.com/spf13/cobra"
    
    	label2 "istio.io/api/label"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/util/ambient"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  6. pilot/pkg/xds/debug.go

      padding-bottom: 12px;
      text-align: left;
      background-color: black;
      color: white;
    }
    </style>
    <body>
    <br/>
    <p style = "font-family:Arial,Helvetica,sans-serif;">
    Note: Use <b>pretty</b> in query string (like <b>debug/configz?pretty</b>) to format the output.
    </p>
    <table id="endpoints">
    <tr><th>Endpoint</th><th>Description</th></tr>
    {{range .}}
    	<tr>
    	<td><a href='{{.Href}}'>{{.Name}}</a></td><td>{{.Help}}</td>
    	</tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

            val actualPretty = data.pointersForPrettyRendering.renderDeclarations()
            testServices.assertions.assertEqualsToTestDataFileSibling(actualPretty, extension = ".pretty.txt")
        }
    
        private fun List<PointerWithRenderedSymbol>.renderDeclarations(): String =
            mapNotNull { it.rendered.takeIf { _ -> it.shouldBeRendered } }.renderAsDeclarations()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. hack/tools/go.mod

    	github.com/mitchellh/go-homedir v1.1.0 // indirect
    	github.com/mitchellh/mapstructure v1.5.0 // indirect
    	github.com/moricho/tparallel v0.3.1 // indirect
    	github.com/nakabonne/nestif v0.3.1 // indirect
    	github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
    	github.com/nishanths/exhaustive v0.12.0 // indirect
    	github.com/nishanths/predeclared v0.2.2 // indirect
    	github.com/nunnatsa/ginkgolinter v0.15.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. pkg/apis/flowcontrol/validation/validation.go

    	allErrs = append(allErrs, ValidateFlowSchemaSpec(fs.Name, &fs.Spec, specPath)...)
    	if mand, ok := internalbootstrap.MandatoryFlowSchemas[fs.Name]; ok {
    		// Check for almost exact equality.  This is a pretty
    		// strict test, and it is OK in this context because both
    		// sides of this comparison are intended to ultimately
    		// come from the same code.
    		if !apiequality.Semantic.DeepEqual(fs.Spec, mand.Spec) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    	}
    	if path := lockPath(pass.Pkg, typ, nil); path != nil {
    		pass.Reportf(e.Pos(), "range var %s copies lock: %v", analysisutil.Format(pass.Fset, e), path)
    	}
    }
    
    type typePath []string
    
    // String pretty-prints a typePath.
    func (path typePath) String() string {
    	n := len(path)
    	var buf bytes.Buffer
    	for i := range path {
    		if i > 0 {
    			fmt.Fprint(&buf, " contains ")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top