Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for qParams (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // END
                }});
    
                // GENERATE public Object invokeMethod(String name, Object params) { return getAsDynamicObject().invokeMethod(name, (Object[])params); }
                addGetter("invokeMethod", OBJECT_TYPE, RETURN_OBJECT_FROM_STRING_OBJECT, getter -> new MethodVisitorScope(getter) {{
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/validation/validation_test.go

    				MatchConditions: []admissionregistration.MatchCondition{{
    					Name:       "hasParams",
    					Expression: `params.foo == "okay"`,
    				}},
    				Validations: []admissionregistration.Validation{{
    					Expression: "object.x < 100",
    				}},
    			},
    		},
    		expectedError: `undeclared reference to 'params'`,
    	}, {
    		name: "variable composition empty name",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  3. fastapi/applications.py

    from fastapi.logger import logger
    from fastapi.openapi.docs import (
        get_redoc_html,
        get_swagger_ui_html,
        get_swagger_ui_oauth2_redirect_html,
    )
    from fastapi.openapi.utils import get_openapi
    from fastapi.params import Depends
    from fastapi.types import DecoratedCallable, IncEx
    from fastapi.utils import generate_unique_id
    from starlette.applications import Starlette
    from starlette.datastructures import State
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_TensorOf<[I16, I32, I64]>:$indices,
        I32Attr:$axis,
        DefaultValuedOptionalAttr<I32Attr, "0">:$batch_dims
      );
    
      let builders =
      [
        OpBuilder<(ins "Value":$params, "Value":$indices, "IntegerAttr":$axis, "IntegerAttr":$batch_dims),
        [{ BuildGatherOp(&$_builder, $_state, params, indices, axis, batch_dims); }]>
      ];
    
      let results = (outs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

      ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  6. src/crypto/x509/x509_test.go

    			Algorithm:  hashOID,
    			Parameters: asn1.NullRawValue,
    		}
    
    		var err error
    		params.MGF.Parameters.FullBytes, err = asn1.Marshal(mgf1Params)
    		if err != nil {
    			t.Fatalf("failed to marshal MGF parameters: %s", err)
    		}
    
    		serialized, err := asn1.Marshal(params)
    		if err != nil {
    			t.Fatalf("failed to marshal parameters: %s", err)
    		}
    
    		return serialized
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      return {};
    }
    
    ValuePort ComputeInputComponentFor(GatherV2Op op, ArrayRef<unsigned int> port) {
      if (port.size() != 2) return {};
      assert(port[0] == 0);
    
      auto params = op.getParams();
      auto params_ty = mlir::dyn_cast<RankedTensorType>(params.getType());
      if (!params_ty || !params_ty.hasStaticShape() || params_ty.getRank() != 1 ||
          op.getBatchDims() != 0) {
        return {};
      }
    
      DenseIntElementsAttr axis;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

      ...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      }
      return false;
    }
    
    class ConvertGatherOp : public OpConversionPattern<mhlo::GatherOp> {
     public:
      using OpConversionPattern::OpConversionPattern;
    
      // Helper params for representing the transpose params for the "canonicalized"
      // output to the real output.
      struct TransposeParams {
        std::vector<int64_t> permutation;
        // The following are the "canonicalized" output shape with offset dims.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "rollingUpdate": {
              "$ref": "#/definitions/io.k8s.api.apps.v1.RollingUpdateDeployment",
              "description": "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate."
            },
            "type": {
              "description": "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top