Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 195 for groupSet (0.31 sec)

  1. pkg/kubelet/container/runtime.go

    	// Status returns the status of the runtime. An error is returned if the Status
    	// function itself fails, nil otherwise.
    	Status(ctx context.Context) (*RuntimeStatus, error)
    	// GetPods returns a list of containers grouped by pods. The boolean parameter
    	// specifies whether the runtime returns all containers including those already
    	// exited and dead containers (used for garbage collection).
    	GetPods(ctx context.Context, all bool) ([]*Pod, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/decl.go

    	}()
    
    	// Keep track of bounds for later validation.
    	var bound Type
    	for i, f := range list {
    		// Optimization: Re-use the previous type bound if it hasn't changed.
    		// This also preserves the grouped output of type parameter lists
    		// when printing type strings.
    		if i == 0 || f.Type != list[i-1].Type {
    			bound = check.bound(f.Type)
    			if isTypeParam(bound) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    The separate link:https://plugins.jenkins.io/flaky-test-handler[Flaky Test Handler Jenkins plugin] can be used in addition to the JUnit Jenkins plugin to have such “flaky failures” also be visualized.
    
    Tests are grouped and merged based on their reported name.
    When using any kind of test parameterization that affects the reported test name,
    or any other kind of mechanism that produces a potentially dynamic test name,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

            when:
            groupedOutput.task(':doesNotExist')
    
            then:
            def t = thrown(AssertionError)
            t.message.startsWith("The grouped output for task ':doesNotExist' could not be found.")
        }
    
        def "handles output right before end of failed build"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// listKind is the serialized kind of the list for this resource. Defaults to "`kind`List".
    	// +optional
    	ListKind string `json:"listKind,omitempty" protobuf:"bytes,5,opt,name=listKind"`
    	// categories is a list of grouped resources this custom resource belongs to (e.g. 'all').
    	// This is published in API discovery documents, and used by clients to support invocations like
    	// `kubectl get all`.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/pcln.go

    	ldr := ctxt.loader
    	its := ldr.CreateExtSym("", 0)
    	inlTreeSym := ldr.MakeSymbolUpdater(its)
    	// Note: the generated symbol is given a type of sym.SGOFUNC, as a
    	// signal to the symtab() phase that it needs to be grouped in with
    	// other similar symbols (gcdata, etc); the dodata() phase will
    	// eventually switch the type back to SRODATA.
    	inlTreeSym.SetType(sym.SGOFUNC)
    	ldr.SetAttrReachable(its, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    func (x stackProfile) Stack(i int) []uintptr { return x[i] }
    func (x stackProfile) Label(i int) *labelMap { return nil }
    
    // A countProfile is a set of stack traces to be printed as counts
    // grouped by stack trace. There are multiple implementations:
    // all that matters is that we can find out how many traces there are
    // and obtain each trace in turn.
    type countProfile interface {
    	Len() int
    	Stack(i int) []uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// listKind is the serialized kind of the list for this resource. Defaults to "`kind`List".
    	// +optional
    	ListKind string `json:"listKind,omitempty" protobuf:"bytes,5,opt,name=listKind"`
    	// categories is a list of grouped resources this custom resource belongs to (e.g. 'all').
    	// This is published in API discovery documents, and used by clients to support invocations like
    	// `kubectl get all`.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "description": "APIResource specifies the name of a resource and whether it is namespaced.",
            "properties": {
              "categories": {
                "description": "categories is a list of the grouped resources this resource belongs to (e.g. 'all')",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Details can be found in the linked HTML report:
    
    image::configuration-cache/problems-report.png[]
    
    The report displays the set of problems twice.
    First grouped by problem message, then grouped by task.
    The former allows you to quickly see what classes of problems your build is facing.
    The latter allows you to quickly see which tasks are problematic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
Back to top