Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for uniqify (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/timeout.go

    	if longRunning == nil {
    		return handler
    	}
    	timeoutFunc := func(req *http.Request) (*http.Request, bool, func(), *apierrors.StatusError) {
    		// TODO unify this with apiserver.MaxInFlightLimit
    		ctx := req.Context()
    
    		requestInfo, ok := apirequest.RequestInfoFrom(ctx)
    		if !ok {
    			// if this happens, the handler chain isn't setup correctly because there is no request info
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/convert.go

    		transportSocket := &TransportSocket{
    			Name:        wellknown.TransportSocketTLS,
    			TypedConfig: tlsContextStruct,
    		}
    		return convertToJSON(transportSocket), nil
    	}
    }
    
    // TODO(ramaraochavali): Unify this code with cluster upstream TLS settings logic.
    func tlsContextConvert(tls *networkingAPI.ClientTLSSettings, sniName string, metadata *model.BootstrapNodeMetadata) *auth.UpstreamTlsContext {
    	tlsContext := &auth.UpstreamTlsContext{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 00:35:05 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         */
        I sourceResult;
        try {
          sourceResult = getDone(localInputFuture);
        } catch (CancellationException e) {
          // TODO(user): verify future behavior - unify logic with getFutureValue in AbstractFuture. This
          // code should be unreachable with correctly implemented Futures.
          // Cancel this future and return.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. pkg/volume/downwardapi/downwardapi.go

    		fPath := filepath.Clean(fileInfo.Path)
    		if fileInfo.Mode != nil {
    			fileProjection.Mode = *fileInfo.Mode
    		} else {
    			fileProjection.Mode = *defaultMode
    		}
    		if fileInfo.FieldRef != nil {
    			// TODO: unify with Kubelet.podFieldSelectorRuntimeValue
    			if values, err := fieldpath.ExtractFieldPathAsString(pod, fileInfo.FieldRef.FieldPath); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/mime/multipart/formdata.go

    )
    
    // ErrMessageTooLarge is returned by ReadForm if the message form
    // data is too large to be processed.
    var ErrMessageTooLarge = errors.New("multipart: message too large")
    
    // TODO(adg,bradfitz): find a way to unify the DoS-prevention strategy here
    // with that of the http package's ParseForm.
    
    // ReadForm parses an entire multipart message whose parts have
    // a Content-Disposition of "form-data".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/handler.go

    	}
    
    	// if we didn't find a match, then we just skip gorestful altogether
    	klog.V(5).Infof("%v: %v %q satisfied by nonGoRestful", d.name, req.Method, path)
    	d.nonGoRestfulMux.ServeHTTP(w, req)
    }
    
    // TODO: Unify with RecoverPanics?
    func logStackOnRecover(s runtime.NegotiatedSerializer, panicReason interface{}, w http.ResponseWriter) {
    	var buffer bytes.Buffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 14 17:10:00 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         */
        I sourceResult;
        try {
          sourceResult = getDone(localInputFuture);
        } catch (CancellationException e) {
          // TODO(user): verify future behavior - unify logic with getFutureValue in AbstractFuture. This
          // code should be unreachable with correctly implemented Futures.
          // Cancel this future and return.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

        this.sortedDelegate = Collections.unmodifiableSortedSet(sortedDelegate);
      }
    
      public Comparator<? super E> comparator() {
        return sortedDelegate.comparator();
      }
    
      @Override // needed to unify SortedIterable and Collection iterator() methods
      public UnmodifiableIterator<E> iterator() {
        return super.iterator();
      }
    
      @Override
      public Object[] toArray() {
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      builder.setInsertionPoint(terminator);
      builder.create<func::ReturnOp>(terminator->getLoc(), return_values);
      terminator->erase();
    
      outlined_func.setPrivate();
    
      // Uniquify the function name, and insert into module.
      symbol_table.getSymbolTable(module).insert(outlined_func,
                                                 module.getBody()->begin());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. src/net/http/transfer.go

    		return suppressedHeadersNoBody
    	}
    	return nil
    }
    
    // msg is *Request or *Response.
    func readTransfer(msg any, r *bufio.Reader) (err error) {
    	t := &transferReader{RequestMethod: "GET"}
    
    	// Unify input
    	isResponse := false
    	switch rr := msg.(type) {
    	case *Response:
    		t.Header = rr.Header
    		t.StatusCode = rr.StatusCode
    		t.ProtoMajor = rr.ProtoMajor
    		t.ProtoMinor = rr.ProtoMinor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top