Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 264 for handle1_ (0.12 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServerTest.groovy

                handle.release("a")
                handle.waitForAllPendingCalls()
                handle.release(1)
                handle.waitForAllPendingCalls()
                handle.releaseAll()
                handle.waitForAllPendingCalls()
                handle.releaseAll()
                handle.waitForAllPendingCalls()
            }
            server.stop()
    
            then:
            noExceptionThrown()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        }
        if (changed) {
          rewriter.finalizeOpModification(f);
          return success();
        } else {
          rewriter.cancelOpModification(f);
          return failure();
        }
      }
    };
    
    class HandleIf : public OpRewritePattern<TF::IfOp> {
      // Optional-agnostic pattern that propagates types across the program.
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult adjustBranch(TF::IfOp ifop, func::FuncOp branch,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/endpoints/handlers/finisher"
    	requestmetrics "k8s.io/apiserver/pkg/endpoints/handlers/metrics"
    	"k8s.io/apiserver/pkg/endpoints/handlers/negotiation"
    	"k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/registry/rest"
    	"k8s.io/apiserver/pkg/util/dryrun"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/log/log.go

    		})
    	}
    }
    
    // Print calls l.Output to print to the logger.
    // Arguments are handled in the manner of [fmt.Print].
    func (l *Logger) Print(v ...any) {
    	l.output(0, 2, func(b []byte) []byte {
    		return fmt.Append(b, v...)
    	})
    }
    
    // Printf calls l.Output to print to the logger.
    // Arguments are handled in the manner of [fmt.Printf].
    func (l *Logger) Printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/certificate/bootstrap/bootstrap_test.go

    func newClientset(opts fakeClient) *fake.Clientset {
    	f := fake.NewSimpleClientset()
    	switch opts.failureType {
    	case createError:
    		f.PrependReactor("create", "certificatesigningrequests", func(action clienttesting.Action) (handled bool, ret runtime.Object, err error) {
    			switch action.GetResource().Version {
    			case "v1":
    				return true, nil, fmt.Errorf("create error")
    			default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  10. 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)
Back to top