Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for groupSet (0.15 sec)

  1. docs/fr/docs/async.md

    ### Fonctions de chemin
    
    Quand vous déclarez une *fonction de chemin* avec un `def` normal et non `async def`, elle est exécutée dans un groupe de threads (threadpool) externe qui est ensuite attendu, plutôt que d'être appelée directement (car cela bloquerait le serveur).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// schema like api.Status, api.DeleteOptions, and metav1.ListOptions. Other implementors may
    	// define a version "v1beta1" but want to use the Kubernetes "v1" internal objects.
    	// If nil, defaults to groupMeta.GroupVersion.
    	// TODO: Remove this when https://github.com/kubernetes/kubernetes/issues/19018 is fixed.
    	OptionsExternalVersion *schema.GroupVersion
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top