Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for expiring (0.26 sec)

  1. pkg/apis/core/annotation_key_constants.go

    	// AnnotationTopologyMode can be used to enable or disable Topology Aware
    	// Routing for a Service. Well known values are "Auto" and "Disabled".
    	// Implementations may choose to develop new topology approaches, exposing
    	// them with domain-prefixed values. For example, "example.com/lowest-rtt"
    	// could be a valid implementation-specific value for this annotation. These
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    image::performance/build-scan-performance-page.png[title="Build scan performance page"]
    
    In the above build scan, configuration takes over 13 seconds.
    Click on the _"Configuration"_ tab to break this stage into component parts,
    exposing the cause of the slowness.
    
    image::performance/build-scan-configuration-breakdown.png[title="Build scan configuration breakdown"]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    	"k8s.io/apimachinery/pkg/util/validation"
    	apiservercel "k8s.io/apiserver/pkg/cel"
    	"k8s.io/kube-openapi/pkg/validation/strfmt"
    )
    
    // Format provides a CEL library exposing common named Kubernetes string
    // validations. Can be used in CRD ValidationRules messageExpression.
    //
    //  Example:
    //
    //    rule:              format.dns1123label.validate(object.metadata.name).hasValue()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/model/adaptor.go

    // an equivalent structural schema instance.
    //
    // This lets us avoid needing a separate adaptor for the nested value
    // validations, and doesn't cost too much since since we are usually exploring the
    // entire schema anyway.
    func nestedValueValidationToStructural(nvv *schema.NestedValueValidation) *Structural {
    	var newItems *schema.Structural
    	if nvv.Items != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. pkg/kubemark/hollow_kubelet.go

    		KubeletFlags:         *hk.KubeletFlags,
    		KubeletConfiguration: *hk.KubeletConfiguration,
    	}, hk.KubeletDeps, false); err != nil {
    		klog.Fatalf("Failed to run HollowKubelet: %v. Exiting.", err)
    	}
    	select {}
    }
    
    // HollowKubeletOptions contains settable parameters for hollow kubelet.
    type HollowKubeletOptions struct {
    	NodeName            string
    	KubeletPort         int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/test/echo/server/forwarder/http.go

    	// Extract the output string.
    	return outBuffer.String(), err
    }
    
    func processHTTPResponse(requestID int, httpResp *http.Response, outBuffer *bytes.Buffer) error {
    	// Make sure we close the body before exiting.
    	defer func() {
    		if err := httpResp.Body.Close(); err != nil {
    			echo.WriteError(outBuffer, requestID, err)
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// AnnotationTopologyMode can be used to enable or disable Topology Aware
    	// Routing for a Service. Well known values are "Auto" and "Disabled".
    	// Implementations may choose to develop new topology approaches, exposing
    	// them with domain-prefixed values. For example, "example.com/lowest-rtt"
    	// could be a valid implementation-specific value for this annotation. These
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion.go

    	if features.EnableMCSServiceDiscovery {
    		// MCS spec does not allow export of external name services.
    		// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-multicluster/1645-multi-cluster-services-api#exporting-services.
    		discoverabilityPolicy = model.DiscoverableFromSameCluster
    	}
    	for _, portEntry := range svc.Ports {
    		out = append(out, &model.IstioEndpoint{
    			Address:               svc.Attributes.ExternalName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/events.md

        await do_stuff()
    ```
    
    When you create a context manager or an async context manager like above, what it does is that, before entering the `with` block, it will execute the code before the `yield`, and after exiting the `with` block, it will execute the code after the `yield`.
    
    In our code example above, we don't use it directly, but we pass it to FastAPI for it to use it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/runtime/coro.go

    // formerly blocked in c starts running.
    // These switches continue until a call to coroexit(c),
    // which ends the use of the coro by releasing the blocked
    // goroutine in c and exiting the current goroutine.
    //
    // Coros are heap allocated and garbage collected, so that user code
    // can hold a pointer to a coro without causing potential dangling
    // pointer errors.
    type coro struct {
    	gp guintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top