Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,233 for indication (0.28 sec)

  1. pkg/registry/flowcontrol/rest/storage_flowcontrol.go

    	go func() {
    		defer cancel()
    
    		select {
    		case <-stopCh:
    		case <-time.After(maxWait):
    
    		// the caller can explicitly cancel the context which is an
    		// indication to us to exit the goroutine immediately.
    		// Note that we are calling cancel more than once when we are here,
    		// CancelFunc is idempotent and we expect no ripple effects here.
    		case <-ctx.Done():
    		}
    	}()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  2. pkg/registry/core/serviceaccount/storage/token.go

    					}
    					switch {
    					case errors.IsNotFound(err):
    						// if the referenced Node object does not exist, we still embed just the pod name into the
    						// claims so that clients still have some indication of what node a pod is assigned to when
    						// inspecting a token (even if the UID is not present).
    						klog.V(4).ErrorS(err, "failed fetching node for pod", "pod", klog.KObj(pod), "podUID", pod.UID, "nodeName", nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pkg/apis/authorization/types.go

    	// may not be true if Allowed is true.
    	Denied bool
    	// Reason is optional.  It indicates why a request was allowed or denied.
    	Reason string
    	// EvaluationError is an indication that some error occurred during the authorization check.
    	// It is entirely possible to get an error and be able to continue determine authorization status in spite of it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 10K bytes
    - Viewed (0)
  4. cmd/xl-storage-meta-inline.go

    		}
    	}
    	return keys, nil
    }
    
    // serialize will serialize the provided keys and values.
    // The function will panic if keys/value slices aren't of equal length.
    // Payload size can give an indication of expected payload size.
    // If plSize is <= 0 it will be calculated.
    func (x *xlMetaInlineData) serialize(plSize int, keys [][]byte, vals [][]byte) {
    	if len(keys) != len(vals) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. src/go/types/typestring.go

    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. docs/em/docs/deployment/https.md

        * ðŸ“Ī **⚗** 👉, 👐.
    * ðŸ“Ī **↔** **ðŸĪ** 🛠ïļ (1ïļâƒĢ 🚚 🔐 ðŸ•ļ 🎚, ⏭ 🇚ðŸ‡ļ🔍) ðŸĪ™ **<a href="https://en.wikipedia.org/wiki/Server_Name_Indication" class="external-link" target="_blank"><abbr title="Server Name Indication">ðŸ‘ē</abbr></a>**.
        * 👉 ðŸ‘ē ↔ ✔ 1ïļâƒĢ 👁 ðŸ’― (âŪïļ **👁 ðŸ“Ē ðŸ“Ē**) ✔ïļ **📚 🇚ðŸ‡ļ🔍 📄** &amp; ðŸĶ **💗 🇚ðŸ‡ļ🔍 🆔/ðŸˆļ**.
        * 👉 👷, **👁** ðŸĶē (📋) 🏃 🔛 ðŸ’―, 👂 🔛 **ðŸ“Ē ðŸ“Ē ðŸ“Ē**, 🔜 ✔ïļ **🌐 🇚ðŸ‡ļ🔍 📄** ðŸ’―.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/grpcgen/lds.go

    						ApiListener: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    							HttpFilters: filters,
    							RouteSpecifier: &hcm.HttpConnectionManager_Rds{
    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/typestring.go

    			// (say int), point out where it is declared to avoid confusing
    			// error messages. This doesn't need to be super-elegant; we just
    			// need a clear indication that this is not a predeclared name.
    			if w.ctxt == nil && Universe.Lookup(t.obj.name) != nil {
    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"reason":          "Reason is optional.  It indicates why a request was allowed or denied.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"reason":          "Reason is optional.  It indicates why a request was allowed or denied.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top