Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 185 for handle1_ (0.13 sec)

  1. pkg/kubelet/kuberuntime/helpers.go

    			Status:  c.Status,
    			Reason:  c.Reason,
    			Message: c.Message,
    		})
    	}
    	retHandlers := make([]kubecontainer.RuntimeHandler, len(handlers))
    	for i, h := range handlers {
    		supportsRRO := false
    		supportsUserns := false
    		if h.Features != nil {
    			supportsRRO = h.Features.RecursiveReadOnlyMounts
    			supportsUserns = h.Features.UserNamespaces
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/pod.go

    	return nil
    }
    
    // notifyWorkloadHandlers fire workloadInstance handlers for pod
    func (pc *PodCache) notifyWorkloadHandlers(pod *v1.Pod, ev model.Event) {
    	// if no workload handler registered, skip building WorkloadInstance
    	if len(pc.c.handlers.GetWorkloadHandlers()) == 0 {
    		return
    	}
    	// fire instance handles for workload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    func NewEmptyDelegateWithCustomHandler(handler http.Handler) DelegationTarget {
    	return emptyDelegate{handler}
    }
    
    func (s emptyDelegate) UnprotectedHandler() http.Handler {
    	return s.handler
    }
    func (s emptyDelegate) PostStartHooks() map[string]postStartHookEntry {
    	return map[string]postStartHookEntry{}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    	tapGrpcHandler, err := NewTapGrpcHandler(p)
    	if err != nil {
    		log.Errorf("failed to start Tap XDS Proxy: %v", err)
    	}
    
    	httpMux := http.NewServeMux()
    	handler := p.makeTapHandler()
    	httpMux.HandleFunc("/debug/", handler)
    	httpMux.HandleFunc("/debug", handler) // For 1.10 Istiod which uses istio.io/debug
    
    	mixedHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        const elem = document.getElementById('node' + n);
        if (!elem) return false;
    
        // Handle table row highlighting.
        if (elem.nodeName == 'TR') {
          elem.classList.toggle('hilite', set);
          return true;
        }
    
        // Handle svg element highlighting.
        const p = findPolygon(elem);
        if (p != null) {
          if (set) {
            origFill.set(p, p.style.fill);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller.go

    func (c *Controller) AppendServiceHandler(f model.ServiceHandler) {
    	c.handlers.AppendServiceHandler(f)
    }
    
    // AppendWorkloadHandler implements a service catalog operation
    func (c *Controller) AppendWorkloadHandler(f func(*model.WorkloadInstance, model.Event)) {
    	c.handlers.AppendWorkloadHandler(f)
    }
    
    // AppendNamespaceDiscoveryHandlers register handlers on namespace selected/deselected by discovery selectors change.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package handlers
    
    import (
    	"context"
    	"fmt"
    	"math/rand"
    	"net/http"
    	"net/url"
    	"strings"
    	"time"
    
    	"go.opentelemetry.io/otel/attribute"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/runtime/signal_unix.go

    	if handler == _SIG_IGN || (handler == _SIG_DFL && flags&_SigIgn != 0) {
    		return
    	}
    
    	// Reset the signal handler and raise the signal.
    	// We are currently running inside a signal handler, so the
    	// signal is blocked. We need to unblock it before raising the
    	// signal, or the signal we raise will be ignored until we return
    	// from the signal handler. We know that the signal was unblocked
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            if (workPlan.empty) {
                return;
            }
            state.transition(State.TaskSchedule, State.ReadyToRun, () -> {
                for (Consumer<LocalTaskNode> handler : workPlan.handlers) {
                    workPlan.plan.onComplete(handler);
                }
                workPlan.finalizedPlan = workPreparer.finalizeWorkGraph(gradle, workPlan.plan);
            });
        }
    
        @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/html/template/js.go

    	// that are prefix operators not handled above.
    	case '!', '~':
    		return jsCtxRegexp
    	// Matches all the punctuators from section 7.7 of the language spec
    	// that are open brackets not handled above.
    	case '(', '[':
    		return jsCtxRegexp
    	// Matches all the punctuators from section 7.7 of the language spec
    	// that precede expression starts.
    	case ':', ';', '{':
    		return jsCtxRegexp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top