Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getHttp (0.32 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    					uint32(tt.destRule.TrafficPolicy.GetConnectionPool().GetHttp().MaxRequestsPerConnection) {
    					t.Errorf("Unexpected max_requests_per_connection found")
    				}
    			}
    
    			if tt.destRule.GetTrafficPolicy().GetConnectionPool().GetHttp().GetMaxConcurrentStreams() > 0 {
    				if ec.httpProtocolOptions == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    						errs = AppendValidation(errs, errors.New(msg))
    					}
    				}
    			}
    			for _, http := range virtualService.GetHttp() {
    				for _, m := range http.GetMatch() {
    					validateJWTClaimRoute(m.GetHeaders())
    					validateJWTClaimRoute(m.GetWithoutHeaders())
    				}
    			}
    		}
    
    		allHostsValid := true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. fastapi/routing.py

                    "/"
                ), "A path prefix must not end with '/', as the routes will start with '/'"
            else:
                for r in router.routes:
                    path = getattr(r, "path")  # noqa: B009
                    name = getattr(r, "name", "unknown")
                    if path is not None and not path:
                        raise FastAPIError(
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      if (padding == tensorflow::Padding::EXPLICIT) {
        ArrayRef<Attribute> explicit_padding;
        ArrayAttr explicit_pad = mlir::dyn_cast_or_null<::mlir::ArrayAttr>(
            op->getAttr("explicit_paddings"));
        if (!explicit_pad) {
          explicit_pad = ::mlir::Builder(op->getContext()).getI64ArrayAttr({});
        }
        explicit_padding = explicit_pad.getValue();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        // folding), but we can still derive the shape of a constant tensor for
        // its attribute type.
        auto tensor_attr = mlir::cast<mlir::TypedAttr>(inst->getAttr("value"));
        llvm::ArrayRef<int64_t> shape_ref =
            mlir::cast<TensorType>(tensor_attr.getType()).getShape();
        if (mlir::failed(check_shape(shape_ref))) return std::nullopt;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.scala.ScalaDocOptions.getHeader()> does not have raw return type assignable to org.gradle.api.provider.Property in (ScalaDocOptions.java:0)
    Method <org.gradle.api.tasks.scala.ScalaDocOptions.getTop()> does not have raw return type assignable to org.gradle.api.provider.Property in (ScalaDocOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    template <typename CallOpClass>
    static LogicalResult VerifyPartitionedCall(CallOpClass op,
                                               SymbolTableCollection &symbolTable) {
      SymbolRefAttr func = op->getAttr("f").template cast<SymbolRefAttr>();
      auto function = symbolTable.lookupNearestSymbolFrom<func::FuncOp>(op, func);
      if (!function) {
        return op.emitError("'f' attribute refers to an undefined function: ")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	tests := []struct {
    		name string
    		req  *Request
    		want bool
    	}{
    		{
    			name: "GET",
    			req:  &Request{Method: "GET"},
    			want: true,
    		},
    		{
    			name: "GET_http.NoBody",
    			req:  &Request{Method: "GET", Body: NoBody},
    			want: true,
    		},
    		{
    			name: "GET_body",
    			req:  &Request{Method: "GET", Body: someBody},
    			want: false,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top