Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for afterward (0.15 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "allOf": [
                    {
                      "$ref": "#/components/schemas/io.k8s.api.core.v1.PodSchedulingGate"
                    }
                  ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	// If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the
    	// scheduler will not attempt to schedule the pod.
    	//
    	// SchedulingGates can only be set at pod creation time, and be removed only afterwards.
    	//
    	// +optional
    	SchedulingGates []PodSchedulingGate
    	// ResourceClaims defines which ResourceClaims must be allocated
    	// and reserved before the Pod is allowed to start. The resources
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"resourceClaims":                "ResourceClaims defines which ResourceClaims must be allocated and reserved before the Pod is allowed to start. The resources will be made available to those containers which consume them by name.\n\nThis...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // scheduler will not attempt to schedule the pod.
      //
      // SchedulingGates can only be set at pod creation time, and be removed only afterwards.
      //
      // +patchMergeKey=name
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=name
      // +optional
      repeated PodSchedulingGate schedulingGates = 38;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <code>Slice</code>. If <code>len</code> is zero, the result is the empty string <code>""</code>.
    Since Go strings are immutable, the bytes passed to <code>String</code> must not be modified afterwards.
    [<a href="#Go_1.20">Go 1.20</a>]
    </p>
    
    <p>
    The function <code>StringData</code> returns a pointer to the underlying bytes of the <code>str</code> argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the
    	// scheduler will not attempt to schedule the pod.
    	//
    	// SchedulingGates can only be set at pod creation time, and be removed only afterwards.
    	//
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=name
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    This means that now, if you set a value in a context variable before `yield`, the value would still be available after `yield` (as you would intuitively expect). And it also means that you can reset the context variable with a token afterwards.
    
    For example, this works correctly now:
    
    ```Python
    from contextvars import ContextVar
    from typing import Any, Dict, Optional
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top